Home Page link  

How to configure 2 lines in 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
How to configure 2 lines in receipt Rene 05-13-2007
Posted by Rene on May 13, 2007, 12:19 am
Please log in for more thread options
I'm new to RMS. I've read some postings about using two lines in "Item
Description Amount" , I've follow the examples but it seems I'm doing
something wrong because I can't get it to appear the 2 lines. Please help.
This is what i've done.

<THEN>
<TABLE>
<FONT> "Small" </FONT>
<BORDER> tbNone </BORDER>
<COLUMNHEADER>
<ALIGNMENT> "<~" </ALIGNMENT>
<WIDTH> PageWidth * 0.71 </WIDTH>
<TEXT> "Item Description"
</TEXT>
</COLUMNHEADER>
<COLUMNHEADER>
<ALIGNMENT> "<~" </ALIGNMENT>
<WIDTH> PageWidth * 0.29 </WIDTH>
<TEXT> "Amount" </TEXT>
</COLUMNHEADER>

<ROW>
"================|=========================|=================" </ROW>
<FOR each="entry">
<IF>
<CONDITION> ShowLineDiscounts & (Entry.ExtendedDiscount
<> 0) </CONDITION>
<THEN>
                        <IF>
                         <CONDITION> (Receipt.TaxSystem = taxsystemVAT) & (Entry.Taxable = 0)
</CONDITION>
                         <THEN>
                         <SET name="ExtendedExclsvPricePlusDiscount" type="vbcurrency">
Entry.ExtendedExclsvPrice + Entry.ExtendedDiscount </SET>
<ROW> Entry.Item.ItemLookupCode "|"
Entry.Description " " ExtendedExclsvPricePlusDiscount </ROW>
                         </THEN>
                         <ELSE>                                
<ROW> Entry.Item.ItemLookupCode "|"
Entry.ExtendedFullPrice </ROW>

<ROW> Entry.Description "|"
Entry.ExtendedFullPrice </ROW>
</ELSE>
                        </IF>
<IF>
<CONDITION> Entry.ExtendedDiscountNegative <> 0
</CONDITION>
<THEN>
<ROW> "Discount|"
Entry.ExtendedDiscountNegative </ROW>
</THEN>
</IF>
</THEN>
<ELSE>
                        <IF>
                         <CONDITION> (Receipt.TaxSystem = taxsystemVAT) & (Entry.Taxable = 0)
</CONDITION>
                         <THEN>
<ROW> Entry.Item.ItemLookupCode "|"
Entry.ExtendedFullPrice </ROW>
                                 </THEN>
<ELSE>
                                         
<ROW> Entry.Description "|"
Entry.ExtendedFullPrice </ROW>
                         </ELSE>
                        </IF>
</ELSE>


Posted by Akber Alwani on May 13, 2007, 2:58 am
Please log in for more thread options
Rene, can you make sure to reattach the receipt in receipt format. it happen
sometime that it won't apply the customized one unless you reattach the
receipt in Store Manager program and then restart your POS.

"Rene" wrote:

> I'm new to RMS. I've read some postings about using two lines in "Item
> Description Amount" , I've follow the examples but it seems I'm doing
> something wrong because I can't get it to appear the 2 lines. Please help.
> This is what i've done.
>
> <THEN>
> <TABLE>
> <FONT> "Small" </FONT>
> <BORDER> tbNone </BORDER>
> <COLUMNHEADER>
> <ALIGNMENT> "<~" </ALIGNMENT>
> <WIDTH> PageWidth * 0.71 </WIDTH>
> <TEXT> "Item Description"
> </TEXT>
> </COLUMNHEADER>
> <COLUMNHEADER>
> <ALIGNMENT> "<~" </ALIGNMENT>
> <WIDTH> PageWidth * 0.29 </WIDTH>
> <TEXT> "Amount" </TEXT>
> </COLUMNHEADER>
>
> <ROW>
> "================|=========================|=================" </ROW>
> <FOR each="entry">
> <IF>
> <CONDITION> ShowLineDiscounts & (Entry.ExtendedDiscount
> <> 0) </CONDITION>
> <THEN>
>                         <IF>
>                          <CONDITION> (Receipt.TaxSystem = taxsystemVAT) & (Entry.Taxable = 0)
> </CONDITION>
>                          <THEN>
>                          <SET name="ExtendedExclsvPricePlusDiscount" type="vbcurrency">
> Entry.ExtendedExclsvPrice + Entry.ExtendedDiscount </SET>
> <ROW> Entry.Item.ItemLookupCode "|"
> Entry.Description " " ExtendedExclsvPricePlusDiscount </ROW>
>                          </THEN>
>                          <ELSE>                                
> <ROW> Entry.Item.ItemLookupCode "|"
> Entry.ExtendedFullPrice </ROW>
>
> <ROW> Entry.Description "|"
> Entry.ExtendedFullPrice </ROW>
> </ELSE>
>                         </IF>
> <IF>
> <CONDITION> Entry.ExtendedDiscountNegative <> 0
> </CONDITION>
> <THEN>
> <ROW> "Discount|"
> Entry.ExtendedDiscountNegative </ROW>
> </THEN>
> </IF>
> </THEN>
> <ELSE>
>                         <IF>
>                          <CONDITION> (Receipt.TaxSystem = taxsystemVAT) & (Entry.Taxable = 0)
> </CONDITION>
>                          <THEN>
> <ROW> Entry.Item.ItemLookupCode "|"
> Entry.ExtendedFullPrice </ROW>
>                                  </THEN>
> <ELSE>
>                                          
> <ROW> Entry.Description "|"
> Entry.ExtendedFullPrice </ROW>
>                          </ELSE>
>                         </IF>
> </ELSE>
>

Posted by Rene on May 13, 2007, 7:21 pm
Please log in for more thread options
Thank You again Akber for your contribution. I made as you told me but it
appears a a well not formed XML document, (still can figure it out what I'm
doing wrong). I can't get to appear the description in the receipt. If it's
not too much to ask can you emailed me the receipt file? Thanks. Rene

"Akber Alwani" wrote:

> Rene, can you make sure to reattach the receipt in receipt format. it happen
> sometime that it won't apply the customized one unless you reattach the
> receipt in Store Manager program and then restart your POS.
>
> "Rene" wrote:
>
> > I'm new to RMS. I've read some postings about using two lines in "Item
> > Description Amount" , I've follow the examples but it seems I'm doing
> > something wrong because I can't get it to appear the 2 lines. Please help.
> > This is what i've done.
> >
> > <THEN>
> > <TABLE>
> > <FONT> "Small" </FONT>
> > <BORDER> tbNone </BORDER>
> > <COLUMNHEADER>
> > <ALIGNMENT> "<~" </ALIGNMENT>
> > <WIDTH> PageWidth * 0.71 </WIDTH>
> > <TEXT> "Item Description"
> > </TEXT>
> > </COLUMNHEADER>
> > <COLUMNHEADER>
> > <ALIGNMENT> "<~" </ALIGNMENT>
> > <WIDTH> PageWidth * 0.29 </WIDTH>
> > <TEXT> "Amount" </TEXT>
> > </COLUMNHEADER>
> >
> > <ROW>
> > "================|=========================|=================" </ROW>
> > <FOR each="entry">
> > <IF>
> > <CONDITION> ShowLineDiscounts & (Entry.ExtendedDiscount
> > <> 0) </CONDITION>
> > <THEN>
> >                         <IF>
> >                          <CONDITION> (Receipt.TaxSystem = taxsystemVAT) & (Entry.Taxable = 0)
> > </CONDITION>
> >                          <THEN>
> >                          <SET name="ExtendedExclsvPricePlusDiscount" type="vbcurrency">
> > Entry.ExtendedExclsvPrice + Entry.ExtendedDiscount </SET>
> > <ROW> Entry.Item.ItemLookupCode "|"
> > Entry.Description " " ExtendedExclsvPricePlusDiscount </ROW>
> >                          </THEN>
> >                          <ELSE>                                
> > <ROW> Entry.Item.ItemLookupCode "|"
> > Entry.ExtendedFullPrice </ROW>
> >
> > <ROW> Entry.Description "|"
> > Entry.ExtendedFullPrice </ROW>
> > </ELSE>
> >                         </IF>
> > <IF>
> > <CONDITION> Entry.ExtendedDiscountNegative <> 0
> > </CONDITION>
> > <THEN>
> > <ROW> "Discount|"
> > Entry.ExtendedDiscountNegative </ROW>
> > </THEN>
> > </IF>
> > </THEN>
> > <ELSE>
> >                         <IF>
> >                          <CONDITION> (Receipt.TaxSystem = taxsystemVAT) & (Entry.Taxable = 0)
> > </CONDITION>
> >                          <THEN>
> > <ROW> Entry.Item.ItemLookupCode "|"
> > Entry.ExtendedFullPrice </ROW>
> >                                  </THEN>
> > <ELSE>
> >                                          
> > <ROW> Entry.Description "|"
> > Entry.ExtendedFullPrice </ROW>
> >                          </ELSE>
> >                         </IF>
> > </ELSE>
> >

Posted by Akber Alwani on May 14, 2007, 12:26 am
Please log in for more thread options
Rene you haven't send ur email.

"Rene" wrote:

> Thank You again Akber for your contribution. I made as you told me but it
> appears a a well not formed XML document, (still can figure it out what I'm
> doing wrong). I can't get to appear the description in the receipt. If it's
> not too much to ask can you emailed me the receipt file? Thanks. Rene
>
> "Akber Alwani" wrote:
>
> > Rene, can you make sure to reattach the receipt in receipt format. it happen
> > sometime that it won't apply the customized one unless you reattach the
> > receipt in Store Manager program and then restart your POS.
> >
> > "Rene" wrote:
> >
> > > I'm new to RMS. I've read some postings about using two lines in "Item
> > > Description Amount" , I've follow the examples but it seems I'm doing
> > > something wrong because I can't get it to appear the 2 lines. Please
help.
> > > This is what i've done.
> > >
> > > <THEN>
> > > <TABLE>
> > > <FONT> "Small" </FONT>
> > > <BORDER> tbNone </BORDER>
> > > <COLUMNHEADER>
> > > <ALIGNMENT> "<~" </ALIGNMENT>
> > > <WIDTH> PageWidth * 0.71 </WIDTH>
> > > <TEXT> "Item Description"
> > > </TEXT>
> > > </COLUMNHEADER>
> > > <COLUMNHEADER>
> > > <ALIGNMENT> "<~" </ALIGNMENT>
> > > <WIDTH> PageWidth * 0.29 </WIDTH>
> > > <TEXT> "Amount" </TEXT>
> > > </COLUMNHEADER>
> > >
> > > <ROW>
> > > "================|=========================|=================" </ROW>
> > > <FOR each="entry">
> > > <IF>
> > > <CONDITION> ShowLineDiscounts &
(Entry.ExtendedDiscount
> > > <> 0) </CONDITION>
> > > <THEN>
> > >                         <IF>
> > >                          <CONDITION> (Receipt.TaxSystem = taxsystemVAT) & (Entry.Taxable = 0)
> > > </CONDITION>
> > >                          <THEN>
> > >                          <SET name="ExtendedExclsvPricePlusDiscount" type="vbcurrency">
> > > Entry.ExtendedExclsvPrice + Entry.ExtendedDiscount </SET>
> > > <ROW> Entry.Item.ItemLookupCode "|"
> > > Entry.Description " " ExtendedExclsvPricePlusDiscount </ROW>
> > >                          </THEN>
> > >                          <ELSE>                                
> > > <ROW> Entry.Item.ItemLookupCode "|"
> > > Entry.ExtendedFullPrice </ROW>
> > >
> > > <ROW> Entry.Description "|"
> > > Entry.ExtendedFullPrice </ROW>
> > > </ELSE>
> > >                         </IF>
> > > <IF>
> > > <CONDITION> Entry.ExtendedDiscountNegative <> 0
> > > </CONDITION>
> > > <THEN>
> > > <ROW> "Discount|"
> > > Entry.ExtendedDiscountNegative </ROW>
> > > </THEN>
> > > </IF>
> > > </THEN>
> > > <ELSE>
> > >                         <IF>
> > >                          <CONDITION> (Receipt.TaxSystem = taxsystemVAT) & (Entry.Taxable = 0)
> > > </CONDITION>
> > >                          <THEN>
> > > <ROW> Entry.Item.ItemLookupCode "|"
> > > Entry.ExtendedFullPrice </ROW>
> > >                                  </THEN>
> > > <ELSE>
> > >                                          
> > > <ROW> Entry.Description "|"
> > > Entry.ExtendedFullPrice </ROW>
> > >                          </ELSE>
> > >                         </IF>
> > > </ELSE>
> > >

Posted by Rene on May 14, 2007, 10:37 am
Please log in for more thread options
Akber, this is my email: infinitofurniture@yahoo.com. Thanks for your help,
all your responses have been very helpful.

P.D. How can I modify Sales Receipt and Transaction to Invoice and Invoice
#.

"Akber Alwani" wrote:

> Rene you haven't send ur email.
>
> "Rene" wrote:
>
> > Thank You again Akber for your contribution. I made as you told me but it
> > appears a a well not formed XML document, (still can figure it out what I'm
> > doing wrong). I can't get to appear the description in the receipt. If it's
> > not too much to ask can you emailed me the receipt file? Thanks. Rene
> >
> > "Akber Alwani" wrote:
> >
> > > Rene, can you make sure to reattach the receipt in receipt format. it
happen
> > > sometime that it won't apply the customized one unless you reattach the
> > > receipt in Store Manager program and then restart your POS.
> > >
> > > "Rene" wrote:
> > >
> > > > I'm new to RMS. I've read some postings about using two lines in "Item
> > > > Description Amount" , I've follow the examples but it seems I'm doing
> > > > something wrong because I can't get it to appear the 2 lines. Please
help.
> > > > This is what i've done.
> > > >
> > > > <THEN>
> > > > <TABLE>
> > > > <FONT> "Small" </FONT>
> > > > <BORDER> tbNone </BORDER>
> > > > <COLUMNHEADER>
> > > > <ALIGNMENT> "<~" </ALIGNMENT>
> > > > <WIDTH> PageWidth * 0.71 </WIDTH>
> > > > <TEXT> "Item Description"
> > > > </TEXT>
> > > > </COLUMNHEADER>
> > > > <COLUMNHEADER>
> > > > <ALIGNMENT> "<~" </ALIGNMENT>
> > > > <WIDTH> PageWidth * 0.29 </WIDTH>
> > > > <TEXT> "Amount" </TEXT>
> > > > </COLUMNHEADER>
> > > >
> > > > <ROW>
> > > > "================|=========================|=================" </ROW>
> > > > <FOR each="entry">
> > > > <IF>
> > > > <CONDITION> ShowLineDiscounts &
(Entry.ExtendedDiscount
> > > > <> 0) </CONDITION>
> > > > <THEN>
> > > >                         <IF>
> > > >                          <CONDITION> (Receipt.TaxSystem = taxsystemVAT) & (Entry.Taxable =
0)
> > > > </CONDITION>
> > > >                          <THEN>
> > > >                          <SET name="ExtendedExclsvPricePlusDiscount" type="vbcurrency">
> > > > Entry.ExtendedExclsvPrice + Entry.ExtendedDiscount </SET>
> > > > <ROW> Entry.Item.ItemLookupCode "|"
> > > > Entry.Description " " ExtendedExclsvPricePlusDiscount </ROW>
> > > >                          </THEN>
> > > >                          <ELSE>                                
> > > > <ROW> Entry.Item.ItemLookupCode "|"
> > > > Entry.ExtendedFullPrice </ROW>
> > > >
> > > > <ROW> Entry.Description "|"
> > > > Entry.ExtendedFullPrice </ROW>
> > > > </ELSE>
> > > >                         </IF>
> > > > <IF>
> > > > <CONDITION> Entry.ExtendedDiscountNegative <>
0
> > > > </CONDITION>
> > > > <THEN>
> > > > <ROW> "Discount|"
> > > > Entry.ExtendedDiscountNegative </ROW>
> > > > </THEN>
> > > > </IF>
> > > > </THEN>
> > > > <ELSE>
> > > >                         <IF>
> > > >                          <CONDITION> (Receipt.TaxSystem = taxsystemVAT) & (Entry.Taxable =
0)
> > > > </CONDITION>
> > > >                          <THEN>
> > > > <ROW> Entry.Item.ItemLookupCode "|"
> > > > Entry.ExtendedFullPrice </ROW>
> > > >                                  </THEN>
> > > > <ELSE>
> > > >                                          
> > > > <ROW> Entry.Description "|"
> > > > Entry.ExtendedFullPrice </ROW>
> > > >                          </ELSE>
> > > >                         </IF>
> > > > </ELSE>
> > > >

Similar ThreadsPosted
Forcing receipt to use 2 lines April 3, 2006, 7:52 pm
More than 5 lines of text on Receipt footer? March 24, 2006, 9:52 pm
Editing the Amount of Advancement Lines after a Receipt June 27, 2006, 7:34 am
POS Sales Receipt printing extra lines! March 11, 2008, 11:07 am
Remove footer lines from Signature portion of Receipt? March 30, 2006, 5:25 am
how to configure machines April 18, 2006, 5:00 am
How do i configure AVS settings. May 15, 2007, 1:40 pm
configure devices November 19, 2007, 10:55 am
Configure Metrologic Scanner MS9520 for POS 2.0 April 29, 2007, 9:20 am
How to configure my Microsoft Outlook to read MBS Newsgroup ? August 15, 2006, 12:32 am

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