| 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
 | | Quintiq file version 2.0 |  | #parent: #root |  | StaticMethod GetTripArrivalDate ( |  |   const Period_MP period, |  |   LaneLeg laneleg |  | ) declarative remote as DateTime |  | { |  |   Description: 'Given the period, returns trip arrival date depending on lead time logic.' |  |   TextBody: |  |   [* |  |     value := period.End(); |  |      |  |     gp := laneleg.Lane().MacroPlan().GlobalParameters_MP(); |  |     if( gp.LaneLeadTimeLogic() = Translations::MP_GlobalParameter_LeadTimeLogic_From_End_Period() ) |  |     { |  |       value := period.End(); |  |     } |  |     else if( gp.LaneLeadTimeLogic() = Translations::MP_GlobalParameter_LeadTimeLogic_From_Middle_Period() ) |  |     { |  |       value := period.End() - period.Duration() / 2; |  |     } |  |       |  |     return value; |  |   *] |  | } | 
 |