| | |
| | | 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 |
| | |
| | | { |
| | | 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 |
| | | } |