Home Page link  

Problem with Tax variables on receipt

 

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

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
Problem with Tax variables on receipt Raymond Bakker 01-16-2009
Posted by Raymond Bakker on January 16, 2009, 3:46 am
Please log in for more thread options
Hello,

I have 2 questions about the full page receipt.

Is it possible to

- display the tax % or tax code per line (item) on a receipt?
And which variables I have to use.

And

- I want on the bottom the totals per tax %: Total without tax, Total tax,
Total with tax

Hope somebody can help me with this, because I get it working.
--
Kind regards,

Raymond Bakker
ReBuS b.v.
The Netherlands

Posted by Raymond Bakker on January 16, 2009, 4:02 am
Please log in for more thread options
Hello,

Finaly the first question works :)

I used entry.taxcode, but this doesn't work.
But entry.taxrate (only for internal use is saw) works fine!

Now I have only one problem left, hope somebody can help me with this.

Thanks in advance
--
Kind regards,

Raymond Bakker
ReBuS b.v.
The Netherlands


"Raymond Bakker" wrote:

> Hello,
>
> I have 2 questions about the full page receipt.
>
> Is it possible to
>
> - display the tax % or tax code per line (item) on a receipt?
> And which variables I have to use.
>
> And
>
> - I want on the bottom the totals per tax %: Total without tax, Total tax,
> Total with tax
>
> Hope somebody can help me with this, because I get it working.
> --
> Kind regards,
>
> Raymond Bakker
> ReBuS b.v.
> The Netherlands

Posted by Matt Hurst on January 16, 2009, 1:35 pm
Please log in for more thread options
The receipt format has code that looks like this:
<IF>
<CONDITION> ShowTaxDetails </CONDITION>
<THEN>
<FOR each="SalesTaxes">
<IF>
<CONDITION> Transaction.SalesTaxes.ShowOnReceipt &
Transaction.SalesTaxes.IsTransactionMember </CONDITION>
<THEN>
<ROW> Transaction.SalesTaxes.Description "|"
Transaction.SalesTaxes.Total </ROW>
</THEN>
</IF>
</FOR>
</THEN>
<ELSE>
<ROW> "Sales Tax|" Transaction.SalesTax </ROW>
</ELSE>
</IF>

you could change it to look like this:

<!--
<IF>
<CONDITION> ShowTaxDetails </CONDITION>
<THEN>
-->
<FOR each="SalesTaxes">
<IF>
<CONDITION> Transaction.SalesTaxes.ShowOnReceipt &
Transaction.SalesTaxes.IsTransactionMember </CONDITION>
<THEN>
<ROW> Transaction.SalesTaxes.Description "|"
Transaction.SalesTaxes.Total </ROW>
</THEN>
</IF>
</FOR>
<!--
</THEN>
<ELSE>
-->
<ROW> "Sales Tax Sub-Total|" Transaction.SalesTax </ROW>
<!--
</ELSE>
</IF>
-->

"Raymond Bakker" wrote:

> Hello,
>
> I have 2 questions about the full page receipt.
>
> Is it possible to
>
> - display the tax % or tax code per line (item) on a receipt?
> And which variables I have to use.
>
> And
>
> - I want on the bottom the totals per tax %: Total without tax, Total tax,
> Total with tax
>
> Hope somebody can help me with this, because I get it working.
> --
> Kind regards,
>
> Raymond Bakker
> ReBuS b.v.
> The Netherlands

Posted by Raymond Bakker on January 26, 2009, 6:32 am
Please log in for more thread options
Hi Matt,

Correct me if i'm wrong, but there is no calculation in this?
It's for an customer in Belgium.

What he needs is a line per tax with the following info on the bottom:

Total without tax Tax
Total with Tax
Tax 0% 28,95 0
28,95
Tax 6% 9,38 0,56
9,95
Tax 21% 54,46 11,44
65,90

Total 92,79 12,00
104,79

Is this possible in R.M.S.?

Hope jou can help me..
--
Kind regards,

Raymond Bakker
ReBuS b.v.
The Netherlands


"Matt Hurst" wrote:

> The receipt format has code that looks like this:
> <IF>
> <CONDITION> ShowTaxDetails </CONDITION>
> <THEN>
> <FOR each="SalesTaxes">
> <IF>
> <CONDITION> Transaction.SalesTaxes.ShowOnReceipt &
> Transaction.SalesTaxes.IsTransactionMember </CONDITION>
> <THEN>
> <ROW> Transaction.SalesTaxes.Description "|"
> Transaction.SalesTaxes.Total </ROW>
> </THEN>
> </IF>
> </FOR>
> </THEN>
> <ELSE>
> <ROW> "Sales Tax|" Transaction.SalesTax </ROW>
> </ELSE>
> </IF>
>
> you could change it to look like this:
>
> <!--
> <IF>
> <CONDITION> ShowTaxDetails </CONDITION>
> <THEN>
> -->
> <FOR each="SalesTaxes">
> <IF>
> <CONDITION> Transaction.SalesTaxes.ShowOnReceipt &
> Transaction.SalesTaxes.IsTransactionMember </CONDITION>
> <THEN>
> <ROW> Transaction.SalesTaxes.Description "|"
> Transaction.SalesTaxes.Total </ROW>
> </THEN>
> </IF>
> </FOR>
> <!--
> </THEN>
> <ELSE>
> -->
> <ROW> "Sales Tax Sub-Total|" Transaction.SalesTax </ROW>
> <!--
> </ELSE>
> </IF>
> -->
>
> "Raymond Bakker" wrote:
>
> > Hello,
> >
> > I have 2 questions about the full page receipt.
> >
> > Is it possible to
> >
> > - display the tax % or tax code per line (item) on a receipt?
> > And which variables I have to use.
> >
> > And
> >
> > - I want on the bottom the totals per tax %: Total without tax, Total tax,
> > Total with tax
> >
> > Hope somebody can help me with this, because I get it working.
> > --
> > Kind regards,
> >
> > Raymond Bakker
> > ReBuS b.v.
> > The Netherlands

Posted by Matt Hurst on January 26, 2009, 9:57 am
Please log in for more thread options
the code in the default receipt format gives either detail tax information
-or- sumary tax total. If you modify the code as shown in previous post it
will show both.

"Raymond Bakker" wrote:

> Hi Matt,
>
> Correct me if i'm wrong, but there is no calculation in this?
> It's for an customer in Belgium.
>
> What he needs is a line per tax with the following info on the bottom:
>
> Total without tax Tax
> Total with Tax
> Tax 0% 28,95 0
> 28,95
> Tax 6% 9,38 0,56
> 9,95
> Tax 21% 54,46 11,44
> 65,90
>
> Total 92,79 12,00
> 104,79
>
> Is this possible in R.M.S.?
>
> Hope jou can help me..
> --
> Kind regards,
>
> Raymond Bakker
> ReBuS b.v.
> The Netherlands
>
>
> "Matt Hurst" wrote:
>
> > The receipt format has code that looks like this:
> > <IF>
> > <CONDITION> ShowTaxDetails </CONDITION>
> > <THEN>
> > <FOR each="SalesTaxes">
> > <IF>
> > <CONDITION> Transaction.SalesTaxes.ShowOnReceipt &
> > Transaction.SalesTaxes.IsTransactionMember </CONDITION>
> > <THEN>
> > <ROW> Transaction.SalesTaxes.Description "|"
> > Transaction.SalesTaxes.Total </ROW>
> > </THEN>
> > </IF>
> > </FOR>
> > </THEN>
> > <ELSE>
> > <ROW> "Sales Tax|" Transaction.SalesTax </ROW>
> > </ELSE>
> > </IF>
> >
> > you could change it to look like this:
> >
> > <!--
> > <IF>
> > <CONDITION> ShowTaxDetails </CONDITION>
> > <THEN>
> > -->
> > <FOR each="SalesTaxes">
> > <IF>
> > <CONDITION> Transaction.SalesTaxes.ShowOnReceipt &
> > Transaction.SalesTaxes.IsTransactionMember </CONDITION>
> > <THEN>
> > <ROW> Transaction.SalesTaxes.Description "|"
> > Transaction.SalesTaxes.Total </ROW>
> > </THEN>
> > </IF>
> > </FOR>
> > <!--
> > </THEN>
> > <ELSE>
> > -->
> > <ROW> "Sales Tax Sub-Total|" Transaction.SalesTax </ROW>
> > <!--
> > </ELSE>
> > </IF>
> > -->
> >
> > "Raymond Bakker" wrote:
> >
> > > Hello,
> > >
> > > I have 2 questions about the full page receipt.
> > >
> > > Is it possible to
> > >
> > > - display the tax % or tax code per line (item) on a receipt?
> > > And which variables I have to use.
> > >
> > > And
> > >
> > > - I want on the bottom the totals per tax %: Total without tax, Total tax,
> > > Total with tax
> > >
> > > Hope somebody can help me with this, because I get it working.
> > > --
> > > Kind regards,
> > >
> > > Raymond Bakker
> > > ReBuS b.v.
> > > The Netherlands

Similar ThreadsPosted
receipt variables & xml variables November 12, 2008, 10:58 am
Receipt variables May 28, 2007, 2:24 pm
RE: List of receipt variables for the POS June 28, 2007, 8:22 pm
Receipt template variables September 6, 2007, 1:26 pm
Re: List of receipt variables for the POS February 23, 2008, 2:19 pm
How to manipulate the receipt variables? November 28, 2008, 8:46 am
Receipt Problem. April 3, 2006, 7:01 am
Problem in printing receipt January 7, 2007, 6:32 pm
Problem with weight on receipt August 27, 2007, 5:30 pm
Receipt modification Problem March 13, 2008, 8:52 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