Title: @1 Invoice Me: Frequently-asked questions Please check this section before you email us for technical help.
How do I increase the number of Customer ID from the default 6 digits to 8 digits or higher to increase the system security?
Open invoice.cgi and listinvoice.cgi and search for the word "digits". You will find the following codes in several spots. Replace all the red "6"s below in both scripts to any figure you wish:
if ($Customer_IDcheck ne 6){
$problem="The <b>Customer ID</b> should be <font color=red>6</font> digits.";
&security;}
How do I use CRONTAB to automate Auto-Newsletter and Auto-Reminder?
See Help Document Center >> General Help >> Crontab - How do I set a cron job?
I want to add 7% to the subtotal BEFORE adding the "Tax" and deducting the "Discount".
Locate the following line in the scripts and forms:
answer += what.elements['Amount' + i].value - 0;
and change it to:
answer += what.elements['Amount' + i].value * 1.07;
If the subtotal is $200.00, the "Tax" is $10.00 and the "Discount" is $10.00, the grand total would be:
($200.00 x 1.07) + $10.00 - $10.00 = $214.00
Powered by Document Publisher |