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
Quintiq file version 2.0
#parent: #root
Method AssignToUnitPeriodTimes (
  UnitPeriodTimes unitperiodtimes
)
{
  Description: 'Change the shift pattern of the unit availability for the selections, at the same time create a new unit availability for each of the selection.'
  TextBody:
  [*
    // Soh Yee Jul-19-2012 (created)
    
    // The most important is to pass the shift pattern, other arguments do not actually matter.
    UnitAvailability::CreateOrUpdateForUnitPeriodTimes( unitperiodtimes,
                                                        false, '', Duration::Zero(),
                                                        false, 0.0,
                                                        false, 0.0,
                                                        true, this,
                                                        false, 0.0,
                                                        false, 0,
                                                        false, false, 0.0
                                                      );
  *]
}