Faisal
October 30, 2019, 4:28pm
1
Hello everybody
I created a report to see inventory items stock and cost price. the only thing I want to add is the inventory prediction and the supplier name in it. I tried a lot of things but cant figure it out.
here is the report:
[Item Profit Margins:2,1,1,1,1,1,1,1,1]
Name|Group|Sales|Cost|Sale Price|Profit|Margin %|Barcode
{REPORT COST DETAILS:C.Name,M.GroupCode,C.Quantity,C.Cost,C.AvgPrice,[C.AvgPrice]-[C.Cost],([C.AvgPrice]-[C.Cost])/[C.AvgPrice]*100,M.Barcode}
Faisal
October 30, 2019, 4:32pm
2
Also want to add supplier name and sale price in this report:
@{REPORT CONSUMPTION DETAILS:I.GroupCode.asc::,}
[Inventory Consumption:5,5,5,5,5,5,5,5,5,2]
Item|Sell|Unit|InStock|Purchase|Removed|Warehouse|Cost
$1
{REPORT CONSUMPTION DETAILS:
C.Name.asc,C.Consumption.Sum,C.Unit,C.Inventory.Sum
,C.Added.Sum,C.Removed.Sum,C.Warehouse,C.Cost:I.GroupCode==“$1”}
Take out the >>, think there is a bug when using $ in title like that.
Posflow
October 31, 2019, 12:18am
4
If you are trying to make purchase per supplier, I made something similar in this post.
Oh never mind…
{REPORT INVENTORY TRANSACTION DETAILS:T.Name,[T.Quantity.Sum],T.Unit,[T.TotalPrice.Sum]/[T.Quantity.Sum],T.TotalPrice.Sum.desc::I.GroupCode="$1"}
I put 2 colons :: before I.GroupCode="$1".