1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| Quintiq file version 2.0
| #parent: #root
| StaticMethod GetNewSupplyBySeason (
| Strings productNo,
| MacroPlan macroPlan,
| Number yearNo,
| Number seasonNo
| ) as Real
| {
| TextBody:
| [*
| // yypsybs Sep-18-2023 (created)
| fromMonth := 1 + ( seasonNo - 1 ) * 3;
| toMonth := 3 + ( seasonNo - 1 ) * 3;
| result := 0.0;
| for( i := fromMonth; i <= toMonth; i := i + 1 ) {
| result := result + MappingCustomerOrder::GetNewSupplyByMonth( productNo, macroPlan, yearNo, i );
| }
| return result;
| *]
| }
|
|