| | |
| | | #parent: #root |
| | | Method SetCellAssemblyValue ( |
| | | MachiningPipelineColumn column, |
| | | String unit, |
| | | Boolean iscc, |
| | | Real quantity |
| | | ) |
| | | { |
| | |
| | | // 甄兰鸽 Jun-24-2024 (created) |
| | | cell := selectobject( this, Cell, cell, cell.Column() = column ); |
| | | |
| | | if( unit = MachiningPipelineReport::GetDefaultCCAssemnlyUnit() ){ |
| | | if( iscc ){ |
| | | cell.CCAssemblyPlanQty( cell.CCAssemblyPlanQty() + quantity ); |
| | | }else if( unit = MachiningPipelineReport::GetDefaultDLAssemnlyUnit() ){ |
| | | } else { |
| | | cell.DLAssemblyPlanQty( cell.DLAssemblyPlanQty() + quantity ); |
| | | } |
| | | *] |