lihongji
2024-11-11 a67dc2f0b8dd2803982cfa9c6ea42b77c191d22c
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
Quintiq file version 2.0
#parent: #root
Method PublishPlanReportData (
  const MacroPlan macroplan,
  Boolean iscustomdemand,
  Boolean isofflineplan,
  Boolean isshiftplan,
  Boolean isassembleonlineplan,
  Boolean isinventoryplan,
  String executor
)
{
  Description: '下发计划数据'
  TextBody:
  [*
    // 甄兰鸽 Oct-30-2024 (created)
    if( iscustomdemand ){//全年日度需求/客户需求 
      CustomerDemandPPAIDS::GenerateData( this, macroplan, executor );
    }
    if ( isofflineplan ) { // 各产线下线计划
      InterfaceDataset::PushOfflinePlanData( macroplan, this, executor );
    }
    if( isshiftplan ){//班次计划
      DispatchShiftPlan::Dispatch(this, macroplan,executor );
    //  CustomerDemandIDS::GenerateData( this, recyclebin, archive );
    }
    if( isassembleonlineplan ){//装配上线计划
      AssemblyOnlinePlanPPPSPush::GenerateData( this, macroplan, executor );
    }
    if ( isinventoryplan ) { // 计划库存数据
      InterfaceDataset::PushPlanInventoryData( macroplan, this, executor );
    }
  *]
}