chenqinghong
2024-05-07 3ec06a830367465068963156dcc1d8e522571c13
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
Quintiq file version 2.0
#parent: #root
Method EnableDisableComponent (
  Boolean isbatchedit
) id:Method_DialogCreateEditLaneLeg_EnableDisableComponent
{
  #keys: '[109478.0.546856549]'
  Body:
  [*
    // Enable / disable components
    
    if( isbatchedit )
    {
      TabPageCost.DisableWithUserFeedback( Translations::MP_Designer_DisableTabCostForBatchEdit() );
    }
    
    CheckBoxHasUserPreprocessingTime.Enabled( not isbatchedit
                                              or ( isbatchedit and CheckBoxBatchEditDuration.Checked() ) );
    
    EditorCO2Emission.Enabled( not isbatchedit 
                               or ( isbatchedit and CheckBoxBatchEditCO2Emission.Checked() ) ); 
    
    CheckBoxHasStandardDeviationLeadTimeLaneLeg.Enabled( not isbatchedit
                                                      or (isbatchedit and CheckBoxBatchEditStandardDeviationLeadTime.Checked() ) );
    
    CheckBoxHasStart.Enabled( not isbatchedit
                              or ( isbatchedit and CheckBoxBatchEditStart.Checked() ) );
    CheckBoxHasEnd.Enabled( not isbatchedit
                            or ( isbatchedit and CheckBoxBatchEditEnd.Checked() ) );
    
    
    GUIDateTimeSelectorStart.Enabled( CheckBoxHasStart.Checked() and CheckBoxHasStart.Enabled() );
    GUIDateTimeSelectorEnd.Enabled( CheckBoxHasEnd.Checked() and CheckBoxHasEnd.Enabled() );
    
    TabPageCost.Enabled( not isbatchedit );
    start := Date::MinDate();
    if( CheckBoxHasStart.Checked() )
    {
      if( GUIDateTimeSelectorStart.DateTime().IsInfinite() )
      {
        start := MacroPlan.Start().Date();
      }
      else
      {
        start := GUIDateTimeSelectorStart.DateTime().Date();
      }
    }
    GUIDateTimeSelectorStart.DateTime( start.DateTime() );
    
    end := Date::MaxDate();
    if( CheckBoxHasEnd.Checked() )
    {
      if( GUIDateTimeSelectorEnd.DateTime().IsInfinite() )
      {
        end := MacroPlan.End().Date();
      }
      else
      {
        end := GUIDateTimeSelectorEnd.DateTime().Date();
      }
    }
    GUIDateTimeSelectorEnd.DateTime( end.DateTime() );
    
    
    GUIDurationSelectorPreprocessingTime.Enabled( CheckBoxHasUserPreprocessingTime.Checked() and CheckBoxHasUserPreprocessingTime.Enabled() );
    GUIDurationSelectorStandardDeviationLeadTimeLaneLeg.Enabled( CheckBoxHasStandardDeviationLeadTimeLaneLeg.Checked() and CheckBoxHasStandardDeviationLeadTimeLaneLeg.Enabled()   );
  *]
}