From 525553a2f0d73853f40733c6229a467843cb1713 Mon Sep 17 00:00:00 2001 From: lilili Date: Thu, 6 Jul 2023 15:43:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=B7=A5=E4=BD=8D=E3=80=81?= =?UTF-8?q?=E8=B0=83=E5=BA=A6=E5=A7=93=E5=90=8D=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WMS-BS/NFine.Application/WMS/WMSCreateItemLotApp.cs | 2 +- .../Areas/WMS/Views/WMSCreateItemLot/CreateItemLot.cshtml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/WMS-BS/NFine.Application/WMS/WMSCreateItemLotApp.cs b/WMS-BS/NFine.Application/WMS/WMSCreateItemLotApp.cs index 4712c74..1c8efdd 100644 --- a/WMS-BS/NFine.Application/WMS/WMSCreateItemLotApp.cs +++ b/WMS-BS/NFine.Application/WMS/WMSCreateItemLotApp.cs @@ -1241,7 +1241,7 @@ where a.ODNType='1' and a.Status='2' and a.OASNCode is null"; object Figure = GetDecimalDigits(); #region [SQL] string sql = @" -select a.ID,a.RCVCode,a.Sequence,a.WHCode,a.InvCode,a.EATTRIBUTE,a.WorkPoint,a.InvDescribe,a.OrderNumber, +select a.ID,a.RCVCode,a.Sequence,a.WHCode,a.InvCode,a.EATTRIBUTE,a.WorkPoint,a.InvDescribe,a.OrderNumber,a.Desks,a.DispatcherName, a.OrderInvCode,a.OrderInvDescribe,a.BillType,a.Remarks,a.Unit, a.StockIndicator,a.RemarksTerm,detail.LocationCode AS Area, b.InvName,b.InvStd,b.InvDesc,b.InvUnit,CAST(a.Quantity AS DECIMAL(18,{0})) as Quantity , CAST(a.Amount AS DECIMAL(18,{0})) as Amount,CAST(a.RCVQuantity AS DECIMAL(18,{0})) as RCVQuantity ,a.CreatePerson,a.CreateDateTime,CAST(c.LOTQTY AS DECIMAL(18,{0})) as LOTQTY diff --git a/WMS-BS/NFine.Web/Areas/WMS/Views/WMSCreateItemLot/CreateItemLot.cshtml b/WMS-BS/NFine.Web/Areas/WMS/Views/WMSCreateItemLot/CreateItemLot.cshtml index 4f7eb94..bd33323 100644 --- a/WMS-BS/NFine.Web/Areas/WMS/Views/WMSCreateItemLot/CreateItemLot.cshtml +++ b/WMS-BS/NFine.Web/Areas/WMS/Views/WMSCreateItemLot/CreateItemLot.cshtml @@ -511,6 +511,12 @@ cols.push(collast); var collast = { label: '辅助描述', name: 'InvDesc', width: 50, align: 'left' }; cols.push(collast); + + var collast = { label: '工位', name: 'Desks', width: 50, align: 'left' }; + cols.push(collast); + var collast = { label: '调度姓名', name: 'DispatcherName', width: 120, align: 'left' }; + cols.push(collast); + var collast = { label: '料品型号', name: 'InvStd', width: 150, align: 'left', hidden: true }; cols.push(collast); var collast = { label: '料品单位', name: 'InvUnit', width: 50, align: 'left' };