Receipts to not display full kit details

Does anyone know if it is possible to have a receipt not display a full kit description? I have tried looking at the xml, but cannot see what needs to be evaluated and what output to do for the item description when this is the case.

Having real trouble communicating with my support company, who are hopeless.

Many thanks in advance

Reply to
Andrew Murphy
Loading thread data ...

Andrew,

Is this what you are looking for?

How to Prevent All Kit Items From Printing on a Receipt

formatting link
Must be on the RMS Annual Maintenance to view it.

Reply to
Jeff

The receipt change posted on customersource will truncate that collumn so that anything over one line cannot be seen. This is a challenge if you need to view other details such as item comments or other description details that are over one line. I have created a receipt modification that will print the extended description on Kit items instead of the description (which contains the kit items). Here is my solution:

Entry.Item.ItemType = itemtypeKit

Entry.SalesRep.Number "|" Entry.Item.ItemLookupCode "|" Entry.Item.ExtendedDescription "|" Entry.Quantity "|" Entry.FullPrice "|" Entry.ExtendedFullPrice

Entry.DiscountNegative <> 0

"||Discount||" Entry.DiscountNegative "|" Entry.ExtendedDiscountNegative

Entry.SalesRep.Number "|" Entry.Item.ItemLookupCode "|" Entry.Description "|" Entry.Quantity "|" Entry.Price "|" Entry.ExtendedPrice

((Entry.QuantityOnOrder <> 0) | (Entry.QuantityRTD <> 0)) & (Transaction.Type <> transactionQuote)

"||Quantity RTD:|" Entry.QuantityRTD " ||" "||Quantity On Order:|" Entry.QuantityOnOrder " ||" "||Quantity Picked Up:|" Entry.QuantityPurchased " ||"

Reply to
CaseyHanson

The receipt change posted on customersource will truncate that collumn so that anything over one line cannot be seen. This is a challenge if you need to view other details such as item comments or other description details that are over one line. I have created a receipt modification that will print the extended description on Kit items instead of the description (which contains the kit items). Here is my solution:

Entry.Item.ItemType = itemtypeKit

Entry.SalesRep.Number "|" Entry.Item.ItemLookupCode "|" Entry.Item.ExtendedDescription "|" Entry.Quantity "|" Entry.FullPrice "|" Entry.ExtendedFullPrice

Entry.DiscountNegative <> 0

"||Discount||" Entry.DiscountNegative "|" Entry.ExtendedDiscountNegative

Entry.SalesRep.Number "|" Entry.Item.ItemLookupCode "|" Entry.Description "|" Entry.Quantity "|" Entry.Price "|" Entry.ExtendedPrice

((Entry.QuantityOnOrder <> 0) | (Entry.QuantityRTD <> 0)) & (Transaction.Type <> transactionQuote)

"||Quantity RTD:|" Entry.QuantityRTD " ||" "||Quantity On Order:|" Entry.QuantityOnOrder " ||" "||Quantity Picked Up:|" Entry.QuantityPurchased " ||"

Casey Hanson New West Technologies

Reply to
CaseyHanson

BeanSmart website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.