From e3be809e286304dc5e3f6ea4cddbfa894f9df95c Mon Sep 17 00:00:00 2001
From: lazhen <17772815105@139.com>
Date: 星期三, 09 十月 2024 09:36:43 +0800
Subject: [PATCH] 机加管线的装配线数量bug

---
 _Main/UI/MacroPlannerWebApp/Component_FormCCEngineLogisticsCostReport/Response_MatrixEditorTable_358_OnUpdateValue.def |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/_Main/UI/MacroPlannerWebApp/Component_FormCCEngineLogisticsCostReport/Response_MatrixEditorTable_358_OnUpdateValue.def b/_Main/UI/MacroPlannerWebApp/Component_FormCCEngineLogisticsCostReport/Response_MatrixEditorTable_358_OnUpdateValue.def
index def875e..39a10dd 100644
--- a/_Main/UI/MacroPlannerWebApp/Component_FormCCEngineLogisticsCostReport/Response_MatrixEditorTable_358_OnUpdateValue.def
+++ b/_Main/UI/MacroPlannerWebApp/Component_FormCCEngineLogisticsCostReport/Response_MatrixEditorTable_358_OnUpdateValue.def
@@ -16,12 +16,13 @@
     Body:
     [*
       table            := selectobject( MacroPlan, CCEngineLogisticsCostReport, report, not report.IsShow() );
+      cell.Coefficient( value );
       traverse( table, Row, trow, trow.Name() = row.Name() ){
         traverse( trow, Cell, tcel, tcel.Column().Name() = column.Name() ){
-          tcel.RentEnterCost( cell.RentEnterCost() );
-          tcel.RentOutCost( cell.RentOutCost() );
-          tcel.FactoryToRentTransCost( cell.FactoryToRentTransCost() );
-          tcel.RentStorageCost( cell.RentStorageCost() );
+          tcel.RentInCost( cell.RentInCost() );
+          tcel.RentOutOfCost( cell.RentOutOfCost() );
+          tcel.WerkToRentTransCost( cell.WerkToRentTransCost() );
+          tcel.RentStorCost( cell.RentStorCost() );
           tcel.Coefficient( cell.Coefficient() );
         }
       }

--
Gitblit v1.9.3