Hi, I am doing queries and getting back a lot of data, but cannot find any reference to what each table column means.
For example with a transaction detail request from the SalesOrders table, i get:
["ItemNo"]=> int(1)
["CommentLine"]=> bool(false)
["QuantityOrdered"]=> float(1) // okay, seems straight forward
["QuantityDemand"]=> float(0) // okay, seems straight forward
["QuantityThisDel"]=> float(1) // okay, seems straight forward
["QuantityBackOrd"]=> float(0) // okay, seems straight forward
["Picked"]=> bool(false) // dunno
["PriceExGst"]=> float(3.2) // price contradicts UnitCost, does this mean price EX GST meaing price without GST?
["PriceIncGst"]=> float(3.3) // price contradicts UnitCost + TaxToCharge
["DiscountedPrice"]=> float(3) // is this the actual amount charged?
["TaxToCharge"]=> float(0.3) // 10% X UnitCost + Unit Cost != PriceIncGst
["UnitCost"]=> float(2.9)
Is there some sort of chart the gives explanations of what each column means so that I can use accurate numbers in my return display?
Cheers