Hi
I have modified the OrderScript.pl so that Actinic issues order numbers that match our existing order management system.
The number format (as shown in Actinic, the onscreen confirmation and the customer email) is now 036/xxxxx
(where x is our incrementing number, currently around 23100)
The Perl edit for the new numbering format is:
$::s_sOrderNumber = "036/" . substr("00000" . $nCounter, -5);
which works fine.
The only problem is that the order number appears as 036/xx-xxx on the Data Entry Report which is very annoying..
I NEED to remove the pointless dash from the Data Entry Report and use the correct order number (as shown everywhere else) as it's confusing the staff..
I have modified the OrderScript.pl so that Actinic issues order numbers that match our existing order management system.
The number format (as shown in Actinic, the onscreen confirmation and the customer email) is now 036/xxxxx
(where x is our incrementing number, currently around 23100)
The Perl edit for the new numbering format is:
$::s_sOrderNumber = "036/" . substr("00000" . $nCounter, -5);
which works fine.
The only problem is that the order number appears as 036/xx-xxx on the Data Entry Report which is very annoying..
I NEED to remove the pointless dash from the Data Entry Report and use the correct order number (as shown everywhere else) as it's confusing the staff..
Comment