From d03861b11b193439353fa5d9b92eb6ee1e6458e2 Mon Sep 17 00:00:00 2001
From: lazhen <17772815105@139.com>
Date: 星期六, 12 十月 2024 17:33:03 +0800
Subject: [PATCH] 库存汇总报表查询条件格式修改,发动机物流成本报表系数,汇总添加

---
 _Main/UI/MacroPlannerWebApp/Component_FormCCEngineLogisticsCostReport/Response_MatrixEditorTable_358_OnUpdateValue.def |    8 ++++----
 1 files changed, 4 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 39a10dd..7cda122 100644
--- a/_Main/UI/MacroPlannerWebApp/Component_FormCCEngineLogisticsCostReport/Response_MatrixEditorTable_358_OnUpdateValue.def
+++ b/_Main/UI/MacroPlannerWebApp/Component_FormCCEngineLogisticsCostReport/Response_MatrixEditorTable_358_OnUpdateValue.def
@@ -4,8 +4,8 @@
   CCEngineLogisticsCostRow row,
   CCEngineLogisticsCostColumn column,
   CCEngineLogisticsCostCell cell,
-  Number value,
-  Number oldvalue
+  String value,
+  String oldvalue
 ) id:Response_MatrixEditorTable_358_OnUpdateValue
 {
   #keys: '[415136.0.989501207]'
@@ -16,14 +16,14 @@
     Body:
     [*
       table            := selectobject( MacroPlan, CCEngineLogisticsCostReport, report, not report.IsShow() );
-      cell.Coefficient( value );
+      cell.CoefficientValue( value );
       traverse( table, Row, trow, trow.Name() = row.Name() ){
         traverse( trow, Cell, tcel, tcel.Column().Name() = column.Name() ){
           tcel.RentInCost( cell.RentInCost() );
           tcel.RentOutOfCost( cell.RentOutOfCost() );
           tcel.WerkToRentTransCost( cell.WerkToRentTransCost() );
           tcel.RentStorCost( cell.RentStorCost() );
-          tcel.Coefficient( cell.Coefficient() );
+          tcel.CoefficientValue( cell.CoefficientValue() );
         }
       }
     *]

--
Gitblit v1.9.3