|
@@ -360,7 +360,8 @@ begin
|
|
|
with TProjectData(FProjectData).BillsMeasureData do
|
|
|
BillsNode := TMeasureBillsIDTreeNode(BillsMeasureTree.FindNode(GLRec.ValueByName('BillsID').AsInteger));
|
|
|
if Assigned(BillsNode.StageRec) then
|
|
|
- fQuantity := fQuantity + Decimal.Quantity.RoundTo(BillsNode.StageRec.GatherQuantity.AsFloat * GLRec.ValueByName('Quantity').AsFloat);
|
|
|
+ //fQuantity := fQuantity + Decimal.Quantity.RoundTo(BillsNode.StageRec.GatherQuantity.AsFloat * GLRec.ValueByName('Quantity').AsFloat);
|
|
|
+ fQuantity := fQuantity + BillsNode.StageRec.GatherQuantity.AsFloat * GLRec.ValueByName('Quantity').AsFloat;
|
|
|
end;
|
|
|
|
|
|
if fQuantity <> ARec.PM_Quantity.AsFloat then
|