yanweiyuan3
2023-08-09 588bc7829387dfc761cc25f06f77d4c81818bd10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Quintiq file version 2.0
#parent: #root
Method SynchronizeAfterCreation
{
  Description: 'To be called after  importing / creating a new unit (either from UI / EDI )'
  TextBody:
  [*
    // Create unit calendar
    this.UnitCalendar( relnew, CalendarID := this.ID() );
    
    
    up := select( this, UnitPeriod, up, true, true );
    if( not isnull( up ) )
    {
      if( not up.GetIsCapacityTypeOK() )
      {
        this.DeleteOldPeriodCapacity();
      }
    }
    
    this.CreateUnitPeriods();
    
    // Create default SP node
    this.CreateUnitNode( null( SupplyChainView ), true, 0, 0, '', false, true );
    
    // Avoid importing emtpy QuantityToProcess column
    if( this.QuantityToProcess() <> GlobalParameters_MP::GetQTProcessIn()
        and this.QuantityToProcess() <> GlobalParameters_MP::GetQTProcessOut() )
    {
      // Default to out if not specified
      this.QuantityToProcess( GlobalParameters_MP::GetQTProcessOut() );  
    }
    
    // Create N-M object associated with this Unit for all the OptimizerPuzzleWIP
    Entity::CreateSubsetEntityForOptimizerPuzzleWip( this );
    
    // If this unit is time-based, create N-M objects associated with all shift patterns
    if( this.CapacityType() = GlobalParameters_MP::GetCapacityTypeTime() )
    {
      this.CreateUnitShiftPatterns();
    }
  *]
}