Receipt, Taxable items.

How do I modify a receipt, so I can add one more column to identify all taxable items with letter ?T??

Reply to
Yuri Bey
Loading thread data ...

hi Yuri, Which report you are modifying, well whichever you want make sure it has column what you needed, like if you are having the item table , it is by detault column of taxable there.

so add the column to report with .grp extension , open in notepad and add like below code:

Begin Column FieldName = "Taxable" DrillDownFieldName = "" DrillDownReportName = "" StoreIDFieldName = "" Title = "Jan" VBDataType = vbString Formula = "CASE WHEN Item.Taxable=1 THEN 'T' ELSE 'N' END" ColHidden = False ColNotDisplayable = False FilterDisabled = True ColWidth = 825 GroupMethod = groupmethodnone End Column

"Yuri Bey" wrote:

Reply to
Akber Alwani

hi i think i have forgot to given you solution for the .grp report for the Receipt we will use the Entry.Taxable variable with IF condition here is the sample code:

(Entry.Taxable= 1) "T"

"Yuri Bey" wrote:

Reply to
Akber Alwani

Reply to
Yuri Bey

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.