|
Posted by jaguarsd1ú6 ¹ªìwWb±Ë¬²*'²hœ®‹( on September 21, 2005, 4:30 am
Please log in for more thread options Thank you, ozzie.
"ozzie" wrote:
> I just had a fiddle with this - we call it GST here. You need to edit the
> receipt.xml file and find where it prints VAT and change it to GCT (or GST in
> my case). I'll go one better and post up the code I had to change (you'll
> just need to find where it fits):
>
> </COLUMNHEADER>
> <ROW>
> </ROW>
> <ROW>
> </ROW>
> <ROW> "_____________________________" </ROW>
> <ROW> "GST Analysis" </ROW>
> <ROW>
> </ROW>
> </TABLE>
> </THEN>
> </IF>
> <TABLE>
> <BORDER> tbNone </BORDER>
> <COLUMNHEADER>
> <ALIGNMENT> "<~" </ALIGNMENT>
> <WIDTH> PageWidth </WIDTH>
> <TEXT> "GST Number: " Store.VATRegistrationNumber
> </TEXT>
> </COLUMNHEADER>
> </TABLE>
> <IF>
> <CONDITION> ShowFullVAT </CONDITION>
> <THEN>
> <TABLE>
> <BORDER> tbTop </BORDER>
> <FONT> "Small" </FONT>
> <COLUMNHEADER>
> <ALIGNMENT> "<~" </ALIGNMENT>
> <WIDTH> PageWidth * 0.16 </WIDTH>
> <TEXT> "Rate" </TEXT>
> </COLUMNHEADER>
> <COLUMNHEADER>
> <ALIGNMENT> ">~" </ALIGNMENT>
> <WIDTH> PageWidth * 0.28 </WIDTH>
> <TEXT> "Exclusive" </TEXT>
> </COLUMNHEADER>
> <COLUMNHEADER>
> <ALIGNMENT> ">~" </ALIGNMENT>
> <WIDTH> PageWidth * 0.28 </WIDTH>
> <TEXT> "Tax" </TEXT>
> </COLUMNHEADER>
> <COLUMNHEADER>
> <ALIGNMENT> ">~" </ALIGNMENT>
> <WIDTH> PageWidth * 0.28 </WIDTH>
> <TEXT> "Price" </TEXT>
> </COLUMNHEADER>
> <FOR each="entry">
> <IF>
> <CONDITION> Entry.QuantityPurchased </CONDITION>
> <THEN>
> <ROW> Entry.TaxRate "|"
> Entry.ExtendedExclsvPricePurchased "|" Entry.Tax "|"
> Entry.ExtendedPricePurchased </ROW>
> </THEN>
> </IF>
> </FOR>
> <ROW>
> </ROW>
> <ROW>
> </ROW>
> <ROW> "Total|" Transaction.TotalExclsvPurchased "|"
> Transaction.SalesTaxPurchased "|" Transaction.TotalPurchased </ROW>
> <ROW>
> </ROW>
> </TABLE>
> </THEN>
> <ELSE>
> <TABLE>
> <BORDER> tbNone </BORDER>
> <COLUMNHEADER>
> <ALIGNMENT> ">~" </ALIGNMENT>
> <WIDTH> PageWidth </WIDTH>
> <TEXT> "GST Total: "
> Transaction.SalesTaxPurchased </TEXT>
>
> "jaguarsd1" wrote:
>
> > In my country the VAT is called GCT. How do identify my tax number on the
> > receipt as a GCT Registration No. instead of a VAT Registration No.?
|