lazhen
2025-01-09 8afe90b633046db39042aada36b88193062f8cff
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
69
70
Quintiq file version 2.0
#parent: #root
Method SetRoutingsSourceAndPath (
  String source,
  Boolean isexcel,
  String excelpath
)
{
  Description: 'Set the import source and/or excel path of IORouting objects'
  TextBody:
  [*
    // Set the import source and/or excel path of IORouting objects
    // Routings
    traverse( this.MPSync(), IORouting, e,
              e.DataSource().Length() = 0 
            )
    {
      e.SetDataSource( source, isexcel, excelpath );
    }
    // RoutingSteps
    traverse( this.MPSync(), IORoutingStep, e,
              e.DataSource().Length() = 0 
            )
    {
      e.SetDataSource( source, isexcel, excelpath );
    }
    // OperationBOMs
    traverse( this.MPSync(), IOOperationBOM, e,
              e.DataSource().Length() = 0 
            )
    {
      e.SetDataSource( source, isexcel, excelpath );
    }
    // OperationLinks
    traverse( this.MPSync(), IOOperationLink, e,
              e.DataSource().Length() = 0 
            )
    {
      e.SetDataSource( source, isexcel, excelpath );
    }
    // OperationInputGroups
    traverse( this.MPSync(), IOOperationInputGroup, e,
              e.DataSource().Length() = 0 
            )
    {
      e.SetDataSource( source, isexcel, excelpath );
    }
    // Operations
    traverse( this.MPSync(), IOOperation, e,
              e.DataSource().Length() = 0 
            )
    {
      e.SetDataSource( source, isexcel, excelpath );
    }
    // OperationInputSets
    traverse( this.MPSync(), IOOperationInputSet, e,
              e.DataSource().Length() = 0 
            )
    {
      e.SetDataSource( source, isexcel, excelpath );
    }
    // RoutingConfiguratorViews
    traverse( this.MPSync(), IORoutingConfiguratorView, e,
              e.DataSource().Length() = 0 
            )
    {
      e.SetDataSource( source, isexcel, excelpath );
    }
  *]
}