From d10671cc1821707c11e466c7a982a6dbfa6442a0 Mon Sep 17 00:00:00 2001 From: yanweiyuan3 <yanweiyuan3@gmail.com> Date: 星期一, 16 十月 2023 18:09:08 +0800 Subject: [PATCH] Merge branch 'dev' into dev_yy --- _Main/BL/Type_CapacityAllocationResults/StaticMethod_Test.qbl | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-) diff --git a/_Main/BL/Type_CapacityAllocationResults/StaticMethod_Test.qbl b/_Main/BL/Type_CapacityAllocationResults/StaticMethod_Test.qbl index 46856be..416ea24 100644 --- a/_Main/BL/Type_CapacityAllocationResults/StaticMethod_Test.qbl +++ b/_Main/BL/Type_CapacityAllocationResults/StaticMethod_Test.qbl @@ -1,13 +1,25 @@ Quintiq file version 2.0 #parent: #root StaticMethod Test ( - MacroPlan macroPlan + MacroPlan macroPlan, + GlobalOTDTable globalOTDTable ) { TextBody: [* - traverse ( macroPlan, SalesDemand, sd, sd.ProductID() = "Chassis - SUV 1" ) { + globalOTDTable.CapacityAllocationResults( relflush ); + capacityAllocationResultsRuleConfiguration := select( globalOTDTable, CapacityAllocationResultsRuleConfiguration, carrc, + carrc.ModuleMaterialCode() = "ProXOver 1 D2.6 A" and + carrc.StockingPointID() = "Carco Philadelphia" ); + + traverse ( macroPlan, Product_MP.ProductInStockingPoint_MP, pisp, pisp.ProductID() = "ProXOver 1 D2.6 A" and + pisp.StockingPointID() = "Carco Philadelphia" ) { + traverse ( pisp, ProductInStockingPointInPeriodPlanning.astype( ProductInStockingPointInPeriodPlanningLeaf ).Supply_MP, smp, + /*smp.ProductInStockingPointInPeriodPlanning().Start().Date() = Date::Construct( 2020, 4, 7 ) and*/ + smp.Quantity() > 0 ) { + CapacityAllocationResults::IterativeGeneration3( macroPlan, globalOTDTable, smp, smp, 1, smp.Quantity(), capacityAllocationResultsRuleConfiguration ); + } } *] } -- Gitblit v1.9.3