| 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
 | | Quintiq file version 2.0 |  | #parent: #root |  | StaticMethod Update ( |  |   UnitCapacitys unitcapacitys, |  |   Unit unit, |  |   DateTime start, |  |   Boolean isbatcheditcapacity, |  |   String timeunit, |  |   Real mincapacity, |  |   Real maxcapacity, |  |   Boolean isbatcheditmaxloadpercentage, |  |   Real maxloadpercentage, |  |   Boolean isbatcheditnrofunitsopen, |  |   Number nrofunitsopen |  | ) |  | { |  |   Description: 'Batch edit unit capacity, data get from UI.' |  |   TextBody: |  |   [* |  |     // Soh Yee Jul-23-2012 (created) |  |      |  |     traverse( unitcapacitys, Elements, uc ) |  |     { |  |       // Case related to batch edit. |  |       if( unitcapacitys.Size() > 1 ) |  |       { |  |         // The selectors are disabled if batch edit. So, it is incorrect to take the input from UI. |  |         unit := uc.Unit(); |  |         start := uc.Start(); |  |      |  |         // Get back the unit capacity value if the batch edit check boxes are not checked, instead of from UI. |  |         if( not isbatcheditcapacity ) |  |         { |  |           timeunit := uc.TimeUnit(); |  |           mincapacity := uc.MinCapacity(); |  |           maxcapacity := uc.MaxCapacity(); |  |         } |  |      |  |         if( not isbatcheditmaxloadpercentage ) |  |         { |  |           maxloadpercentage := uc.MaximumLoadPercentage(); |  |         } |  |      |  |         if( not isbatcheditnrofunitsopen ) |  |         { |  |           nrofunitsopen := uc.NrOfUnitsOpen(); |  |         } |  |       } |  |      |  |       uc.Update( unit, |  |                  start, |  |                  timeunit, |  |                  mincapacity, |  |                  maxcapacity, |  |                  maxloadpercentage, |  |                  nrofunitsopen, |  |                  false ); |  |     } |  |   *] |  | } | 
 |