Prerequisites to obtain E-invoice Clear Tax environments

  Clear Tax GST GSP has 2 environments: Sandbox Environment Production Environment 1. Sandbox Environment For testing, it is recommended to always use the sandbox environment. To create an account, contact clear tax sales representative with the following information: Company Name Company Address Company Website address Authorized Signatory Name Contact Email ID Contact Mobile No… Continue reading Prerequisites to obtain E-invoice Clear Tax environments

Published
Categorized as Clear Tax

Display Lot number (Serial Number) in the pdf print using Advanced PDF

We can add Lot No from the inventory details to the pdf print of the records. The following screen shot; Lot No is displayed as a separate line in the table. After the item details are defined, this code will be written. The number of <td>s depends on how many columns are in the table.… Continue reading Display Lot number (Serial Number) in the pdf print using Advanced PDF

How we can Provide a custom field as a key value to find a line item

You can map integrator.io to use a custom or standard field to find an existing line. The custom field called eTail order Line ID, which is unique for all the lines in that record. You can use this field to find a matching line with the field value: For the mapping to eTail order Line ID, click… Continue reading How we can Provide a custom field as a key value to find a line item

Published
Categorized as Celigo

Working of a cancel button using Suite Script

Cancel button is using the NetSuite for back to the record. We set the confirm messages using the Suitelet script. Most of the confirm messages has 2 options. One for accept the confirm message other for cancel . If we cancel the message ,the flow goes back to record

E-invoice using Clear tax integration

E-Invoicing   E-Invoicing is mandatory to all businesses whose aggregate turnover has exceeded the Rs.20 crore limit w.e.f 1st April 2022. If a business’ turnover exceeds the prescribed limit in a financial year, it would be required to generate e-invoices from the beginning of the next financial year. For example, if the threshold turnover was exceeded… Continue reading E-invoice using Clear tax integration

Published
Categorized as Clear Tax

How we can fix the amount up to two decimal point in Advanced pdf

<#function toCurrency value showSymbol=false> <#if value?is_number> <#local retval = 0> <#local retval = value?string[“#,##0.00”]> <#return retval> <#else> <#return value> Write this code before the style definition in the advanced pdf and use this function where we need to fix the ampunt For Example : <td colspan=”1″ align=”center” border=”.1″ style=”vertical-align: middle;border-top:1px;”>${toCurrency(item.quantity)}</td>

Convert date into specific format

Using this function, we can convert to date into defined format. Define the function in the script. function generateDateString(dateObj) {             //convert date to specific format             var date = dateObj;             log.debug(“date”, date)             var d = date.getDate();             log.debug(“d”, d);             var m = date.getMonth() + 1;             log.debug(“Month: “, m)             var… Continue reading Convert date into specific format

Function to check the variable has value or not

     Define the below mentioned function for check the variable has value or not. If variable has value, the function will return true. Otherwise, it will return false. function checkForParameter(parameter) {   if (parameter! == “” && parameter! == null && parameter! == undefined && parameter! == false && parameter! == “null” && parameter! == “undefined”… Continue reading Function to check the variable has value or not

End points used for clear tax direct integration

There are mainly two important concepts for integrate with clear tax 1 E invoice integration 2. E way bill integration E invoice integration Below mentioned end points are used for integration Generate E invoice Generate IRN – ClearTax Docs Cancel E  invoice Cancel IRN – ClearTax Docs Download E invoice Get E-Invoice PDF – ClearTax… Continue reading End points used for clear tax direct integration

Published
Categorized as Clear Tax