hongji.li
2023-11-03 aefafd2142478d4fb07d6b8b45c3047e247389e0
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
Quintiq file version 2.0
#parent: #root
Method SynchronizeAll (
  owning BinaryValues binarydatas,
  Strings brokers
)
{
  Description: 'Import data - full set of data being passed in as binary'
  TextBody:
  [*
    this.Synchronize( true,   // general
                      true,   // globalparameter
                      true,   // periods
                      true,   // inventoryspecifications
                      true,   // inventorysupplies
                      true,   // products and disaggregation factors
                      true,   // saledemands
                      true,   // servicelevels
                      true,   // campaigns and transition
                      true,   // entities
                      true,   // entitycosts
                      true,   // processes
                      true,   // routings
                      true,   // stockingpointcapacities and unitcapacities
                      true,   // supplytarget
                      true,   // recipes
                      true,   // actual pispips and actual unit periods
                      true,   // feedbacks
                      true,   // optimizer puzzles
                      true,   // Postponement spec and fulfillment restriction
                      true,   // customer order
                      false,  // not import from client
                      binarydatas, // contents of excel file
                      brokers, //broker names where content was extracted
                      false,  // is3DDrive
                      null( FileItems ),
                      null( Strings )
                      );  
    
    
    //set the time
    this.SetTime();
  *]
}