Has anyone come across an integration that integra...
# suitescript
l
Has anyone come across an integration that integrates two transaction records: (1) Sales Orders and (2) Invoices of those Sales Orders, with the possibility of having multiple invoices on a sales order. I'm aware of the trigger Transform Sales Order to Invoice, but from what I gather it works by invoicing the remaining of a Sales Order. So unless one was to change the invoice quantities, by default it would invoice the sales order in full. Are there any other tools? For instance calling a Next Bill function that invoices based on the invoice schedule?
b
pay attention to the query parameters of the url that the next bill button navigates to
they are default values that can be used to initialize the invoice
l
Thanks for the heads up. The invoice trigger will be from SalesForce. However in many cases we do not want to invoice the Sales Order in full. It needs to follow the SalesForce invoice
b
then you will have to put in the effort of setting fields to make the invoice match the salesforce one
l
@battk Do you mean that upon creation of the invoice we would then need to override the invoice fields with the quantities we want? Is there a way for it to automatically follow a billing schedule?
b
automatically following a billing schedule is the transform with default values
but in general, you can modify the invoice before you save it
l
I see, interesting! Thank you!