Allow Invoice Number Override
v - 7.0.149
I am using the jiwa File watcher plugin to import new sales orders .
I can get this one done however - there are couple of important things I cannot yet work out.
I have set the AllowInvoiceNumberOverride but cannot get jiwa to override invoice number using my plugin code
also :
I need to override the item description that too does not work -
I have the system settings flag set correctly ( allowAlternateDescriptons = editable )
on both cases I can edit by hand on screen - but not with the plugin.
with the same coding set I am trying to add data to UserDefinedFloat1 and 2 but that too is not good.
an early tip is appreciated.
I am using the jiwa File watcher plugin to import new sales orders .
I can get this one done however - there are couple of important things I cannot yet work out.
I have set the AllowInvoiceNumberOverride but cannot get jiwa to override invoice number using my plugin code
- Code: Select all
salesOrder.InvoiceNo = csvFields(2) '--- using manual numbering
also :
I need to override the item description that too does not work -
I have the system settings flag set correctly ( allowAlternateDescriptons = editable )
- Code: Select all
salesOrder.SalesOrderLines(newKey).Description = csvFields(5)
on both cases I can edit by hand on screen - but not with the plugin.
with the same coding set I am trying to add data to UserDefinedFloat1 and 2 but that too is not good.
- Code: Select all
salesOrder.SalesOrderLines(newKey).UserDefinedFloat2 = csvFields(7)
an early tip is appreciated.