Re: different receipt for quote than work order/sales etc.
Hi Devon,
You will need to edit the xml file. There are not enough configuration options from SO Manager.
The tricky part about these receipt templates is to get it correct for all different types of receipts. I have modified xml files extensively to fit lot's of different purposes on our receipts. For example, RMS uses the same template for quote and a quote converted to invoice. Same concept applies to work order. The same receipt template is used for work orders as a work order converted to invoice. There need to be 'if conditions' to evaluate what type of receipt is being printed at the moment.
I'm not sure exactly which total you need displayed, there's some different totals because of taxes but I suppose you will need to edit your xml to some of the following. NOTE: Notepad++ shows '<>' as <> You might need to replace those with <>
<IF>
<CONDITION> Transaction.TotalPurchased <> 0 </CONDITION>
<THEN>
<ROW> "Total|" Transaction.TotalPurchased </ROW>
</THEN>
<ELSE>
<ROW> "XXXXX" </ROW>
</ELSE>
</IF>
Or do you mean the line totals. Let me know if you need anything clarified...
Thank you. TimB