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
| Quintiq file version 2.0
| #parent: #root
| Method UpdateUnitFrozenDuration (
| Unit unit,
| Boolean hasfrozen,
| Duration duration
| )
| {
| TextBody:
| [*
| unit.Update( unit.ID(),
| unit.Name(),
| unit.Parent(),
| unit.CapacityType(),
| unit.Group(),
| unit.UnitOfMeasure_MP(),
| unit.Currency_MP(),
| unit.StartDate(),
| unit.EndDate(),
| unit.CampaignTypeDuration(),
| unit.IsPlannedInfinite(),
| unit.MinimumQuantity(),
| unit.HasMaximumQuantity(),
| unit.MaximumQuantity(),
| unit.LotSize(),
| unit.IconName(),
| unit.QuantityToProcess(),
| unit.GISCountryCode(),
| unit.GISCity(),
| unit.GISPostalCode(),
| unit.Notes(),
| unit.HasCapacitySmoothing(),
| unit.IsSmoothCapacityOverAllPeriods(),
| unit.UserCapacitySmoothingLength(),
| unit.CapacitySmoothingPercentageDelta(),
| unit.IsOverlapCapacitySmoothing(),
| unit.IsIncludedInSupplySpecification(),
| unit.IsSupplier(),
| hasfrozen,
| duration,
| unit.UseShiftOptimization(),
| false );
| *]
| InterfaceProperties { Accessibility: 'Module' }
| }
|
|