From 221cf86c35ab100bb8d6af6a066c195b3c5560f2 Mon Sep 17 00:00:00 2001 From: hongjli <3117313295@qq.com> Date: 星期六, 07 十月 2023 16:27:13 +0800 Subject: [PATCH] 填产优化 --- _Main/UI/MacroPlannerWebApp/Component_DialogFillingCapacityOrder/Method_Edit.def | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/_Main/UI/MacroPlannerWebApp/Component_DialogFillingCapacityOrder/Method_Edit.def b/_Main/UI/MacroPlannerWebApp/Component_DialogFillingCapacityOrder/Method_Edit.def index 2d5dc2d..f217f0d 100644 --- a/_Main/UI/MacroPlannerWebApp/Component_DialogFillingCapacityOrder/Method_Edit.def +++ b/_Main/UI/MacroPlannerWebApp/Component_DialogFillingCapacityOrder/Method_Edit.def @@ -12,6 +12,21 @@ DataHolderFillingCapacityOrder.Data( &data ); + salesSegment_MP := select( MacroPlan, SalesSegment_MP, tempSSMP, tempSSMP.Name() = selection.SalesSegmentName() ); + ddlSalesSegment.Data( salesSegment_MP ); + + product_MP := select( MacroPlan, Product_MP, tempPMP, tempPMP.ID() = selection.ProductID() ); + ddlProduct_MP.Data( product_MP ); + + stockingPoint_MP := select( MacroPlan, StockingPoint_MP, tempSPMP, tempSPMP.ID() = selection.StockingPointID() ); + ddlStockingPoint_MP.Data( stockingPoint_MP ); + + businessType := select( GlobalOTDTable, BusinessType, tempBT, tempBT.BusinessTypeName() = selection.BusinessType() ); + ddlBusinessType.Data( businessType ); + + unitOfMeasure_MP := select( MacroPlan, UnitOfMeasure_MP, tempUOMMP, tempUOMMP.Name() = selection.UnitOfMeasureName() ); + ddlUnitOfMeasure_MP.Data( unitOfMeasure_MP ); + ApplicationMacroPlanner.ShowFormModal( this ); *] } -- Gitblit v1.9.3