1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  StaticMethod CraeteCellValueForRow ( 
 |    EnginePipelineReport table, 
 |    String name, 
 |    String product, 
 |    String demand, 
 |    Number rownr 
 |  ) as EnginePipelineRow 
 |  { 
 |    TextBody: 
 |    [* 
 |      // 甄兰鸽 Jul-11-2024 (created) 
 |      row           := table.Row( relnew, Name := name, RowNr := rownr, Product := product, Demand := demand ); 
 |      traverse( table, Column, column ){ 
 |        cell        := column.CellValue( relnew, Value := '0' ); 
 |        row.CellValue( relinsert, cell ); 
 |      } 
 |      return row; 
 |    *] 
 |  } 
 |  
  |