From eb1bd2a543a8964ac3b4a2c6269f61001ed53a09 Mon Sep 17 00:00:00 2001
From: hongjli <3117313295@qq.com>
Date: 星期四, 12 十月 2023 18:39:26 +0800
Subject: [PATCH] 产能分配优化

---
 _Main/BL/Type_CapacityAllocationResults/StaticMethod_Test.qbl |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/_Main/BL/Type_CapacityAllocationResults/StaticMethod_Test.qbl b/_Main/BL/Type_CapacityAllocationResults/StaticMethod_Test.qbl
index 7eb00a2..7000af7 100644
--- a/_Main/BL/Type_CapacityAllocationResults/StaticMethod_Test.qbl
+++ b/_Main/BL/Type_CapacityAllocationResults/StaticMethod_Test.qbl
@@ -6,10 +6,13 @@
 {
   TextBody:
   [*
-    traverse ( macroPlan, SalesDemand, sd, sd.ProductID() = "ProXOver 1 D2.6 A" and 
-                                           sd.StockingPointID() = "Carco Philadelphia" and
-                                           sd.StartDate() = Date::Construct( 2020, 4, 1 ) ) {
-      info( "鏁伴噺锛�", sd.Quantity() );
+    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( smp, 1, smp.Quantity() );
+      }
     }
   *]
 }

--
Gitblit v1.9.3