haorenhui
2023-10-30 6d6cc10d9e8e242661da7fd655dec155a09d676c
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
Quintiq file version 2.0
#parent: #root
Method UpdatePeriodSpecSelection (
  PeriodSpecification_MP periodspec
) id:Method_FormNavigationPanel_UpdatePeriodSpecSelection
{
  #keys: '[138546.0.197990764]'
  Body:
  [*
    // Skip action if no macroplan found
    if( not isnull( MacroPlan ) )
    {   
      // Fix the max of number pickers
      DropDownListNavPeriodSpecification.Data( periodspec );
      
      past := ifexpr( periodspec.IsDummyPlanningPeriod(), 
                      counter( MacroPlan, PlanningPeriod, pp, pp.IsHistorical() ),
                      periodspec.NrOfHistoricalPeriod() )
      future := ifexpr( periodspec.IsDummyPlanningPeriod(), 
                        MacroPlan.PlanningPeriod( relsize ) - past,
                        periodspec.NrOfFuturePeriod() );
      
      NumberPickerShowPast.Max( [Real]past );
      NumberPickerShowFuture.Max( [Real]future );
    }
  *]
}