Quintiq file version 2.0 
 | 
#parent: #root 
 | 
StaticMethod RefreshData ( 
 | 
  InterfaceDataset interface, 
 | 
  MacroPlan macroPlan 
 | 
) 
 | 
{ 
 | 
  TextBody: 
 | 
  [* 
 | 
    //根据当前版本的装配上线计划 
 | 
    interface.AssemblyOnlinePlanVersion( relflush ); 
 | 
    allunit                := AssemblyOnlinePlanVersion::GetDefaultAllUnit(); 
 | 
    name                   := AssemblyOnlinePlanVersion::GetDefaultName();//search                 :=  
 | 
    search                 := interface.AssemblyOnlinePlanVersionSearch( relnew, Product := allunit, ProductionLine := allunit, TimeUnit := Translations::MP_GlobalParameters_Day(), Unit := allunit, StartDate := Date::MinDate(), EndDate := Date::MaxDate() ); 
 | 
    table                  := selectobject( interface, AssemblyOnlinePlanVersion, version, not version.IsShow() ); 
 | 
    if( isnull( table ) ){ 
 | 
      table                := interface.AssemblyOnlinePlanVersion( relnew, ID := name, Name := name ); 
 | 
    } 
 | 
    showtable              := selectobject( interface, AssemblyOnlinePlanVersion, version, version.IsShow() ); 
 | 
    if( isnull( table ) ){ 
 | 
      showtable               := interface.AssemblyOnlinePlanVersion( relnew, ID := name, Name := name, IsShow := true ); 
 | 
    } 
 | 
    aopcolumns             := selectuniquevalues(  macroPlan, NewAssemblyOnlinePlanColumn, aopcolumn, not exists( table, Column, column, column.TimeUnit() = Translations::MP_GlobalParameters_Day() and column.StartDate() = aopcolumn.StartDate() ), aopcolumn.StartDate() ); 
 | 
    if( aopcolumns.Size() > 0 ){ 
 | 
      table.GenerateColumn( aopcolumns, false ); 
 | 
    } 
 | 
    traverse( macroPlan, NewAssemblyOnlinePlanRow, aoprow, aoprow.Type() = '1' ){ 
 | 
      row                  := table.GetRow( aoprow ); 
 | 
      traverse( aoprow, NewAssemblyOnlinePlanCell, aopcell ){ 
 | 
        column             := selectobject( table, Column, column, column.TimeUnit() = Translations::MP_GlobalParameters_Day() and column.StartDate() = aopcell.NewAssemblyOnlinePlanColumn().StartDate() ); 
 | 
        cell               := selectobject( row, Cell, cell, cell.Column() = column ); 
 | 
    //    cell.InventoryWeight( aopcell.InventoryWeight() ); 
 | 
        cell.Quantity( aopcell.Quantity() ); 
 | 
      } 
 | 
    } 
 | 
    showtable.Generate( search ); 
 | 
  *] 
 | 
} 
 |