1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  StaticMethod CreateDefaultShiftPattern ( 
 |    MacroPlan owner 
 |  ) 
 |  { 
 |    Description: "Creates a default shift pattern of '24x7'" 
 |    TextBody: 
 |    [* 
 |      // desmondt Sep-2-2014 (created) 
 |       
 |      shiftpattern := ShiftPattern::Create( owner, '24x7', 7, Duration::Zero(), false ); 
 |       
 |      traverse( shiftpattern, ShiftDay, sd ) 
 |      { 
 |        sd.Update( Duration::Hours( 24 ), false ); 
 |      } 
 |    *] 
 |  } 
 |  
  |