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