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 GetNewSupplyByHalfYear (
| Strings productNo,
| MacroPlan macroPlan,
| Number yearNo,
| Number halfNo
| ) as Real
| {
| TextBody:
| [*
| // yypsybs Sep-18-2023 (created)
| fromMonth := 1 + ( halfNo - 1 ) * 6;
| toMonth := 6 + ( halfNo - 1 ) * 6;
| result := 0.0;
| for( i := fromMonth; i <= toMonth; i := i + 1 ) {
| result := result + MappingCustomerOrder::GetNewSupplyByMonth( productNo, macroPlan, yearNo, i );
| }
| return result;
| *]
| }
|
|