From 688d2094d1fc55d80f48e8b9887386f0df75b2ce Mon Sep 17 00:00:00 2001
From: lazhen <17772815105@139.com>
Date: 星期二, 24 九月 2024 17:43:16 +0800
Subject: [PATCH] 发动机成品库存接口同步数据找不到对应产品
---
_Main/UI/MacroPlannerWebApp/Component_FormDLEngineLogisticsCostReport/Response_MatrixEditorTable_OnUpdateValue.def | 29 +++++++++++++++--------------
1 files changed, 15 insertions(+), 14 deletions(-)
diff --git a/_Main/UI/MacroPlannerWebApp/Component_FormDLEngineLogisticsCostReport/Response_MatrixEditorTable_OnUpdateValue.def b/_Main/UI/MacroPlannerWebApp/Component_FormDLEngineLogisticsCostReport/Response_MatrixEditorTable_OnUpdateValue.def
index b8d56ce..70dd20a 100644
--- a/_Main/UI/MacroPlannerWebApp/Component_FormDLEngineLogisticsCostReport/Response_MatrixEditorTable_OnUpdateValue.def
+++ b/_Main/UI/MacroPlannerWebApp/Component_FormDLEngineLogisticsCostReport/Response_MatrixEditorTable_OnUpdateValue.def
@@ -1,9 +1,9 @@
Quintiq file version 2.0
#parent: MatrixEditorTable
Response OnUpdateValue (
- CCEngineLogisticsCostRow row,
- CCEngineLogisticsCostColumn column,
- CCEngineLogisticsCostCell cell,
+ DLEngineLogisticsCostRow row,
+ DLEngineLogisticsCostColumn column,
+ DLEngineLogisticsCostCell cell,
Number value,
Number oldvalue
) id:Response_MatrixEditorTable_OnUpdateValue
@@ -15,17 +15,18 @@
{
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.Coefficient( cell.Coefficient() );
- }
- }
+ table := selectobject( MacroPlan, DLEngineLogisticsCostReport, report, not report.IsShow() );
+ info( focusedattribute );
+ //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.Coefficient( cell.Coefficient() );
+ // }
+ //}
*]
GroupServerCalls: false
}
--
Gitblit v1.9.3