Home Page link  

VAT ID customized to country

 

Point-Of-Sale Software - - MS Point Of Sale software discussed here

 Post an article  get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content  add this group's latest topics to your Google content  YahooMyWeb Yahoo!  Google Google  Windows Live Favorites Windows Live  del.icio.us del.icio.us  digg digg  Add to Netscape Netscape
Subject Author Date
VAT ID customized to country jaguarsd1ú6 ¹ªìwWb±Ë¬²*'²hœ®‹( 09-20-2005
  `--> RE: VAT ID customized to country jaguarsd1ú6 ¹ªìwWb±Ë¬²*'²hœ®‹(09-21-2005
Posted by jaguarsd1ú6 ¹ªìwWb±Ë¬²*'²hœ®‹( on September 20, 2005, 12:23 am
Please log in for more thread options
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.?


Posted by ozzie on September 20, 2005, 11:23 pm
Please log in for more thread options
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.?


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.?


Similar ThreadsPosted
stores in more then one country August 7, 2007, 1:50 am
New Store in other country July 12, 2008, 4:57 am
Country not showing up on POS screen September 28, 2006, 11:52 am
Multi Country Setup October 9, 2006, 6:40 am
customized receipts August 29, 2005, 8:31 am
Customized Z Report March 18, 2007, 5:55 pm
customized reports April 4, 2007, 1:46 pm
Need for Someone to help me in Customized Custom Button October 22, 2006, 12:30 pm
Customized Taskpad in SO Manager December 17, 2006, 1:49 am
Customized receipt formats May 12, 2007, 6:43 pm

Contact Us | Privacy Policy
This site is not affiliated with Intuit - makers of Quickbooks and Quicken software
This site is not affiliated with Sage Software - makers of Peachtree accounting software
XML SitemapXML Sitemap