Browse Source

爱思开工单上传功能查询条码时排除分批条码及形态转换后的新条码

master
Juj 1 year ago
parent
commit
879d51055d
  1. 2
      WMS-BS/NFine.Application/WMS/WMSCreateItemLotApp.cs

2
WMS-BS/NFine.Application/WMS/WMSCreateItemLotApp.cs

@ -2627,7 +2627,7 @@ CAST( (a.Quantity-ISNULL(c.LOTQTY,0)) as DECIMAL(18,{0})) as thisCreateQty,isnu
string SqlBackflush = @"select a.LotNo,a.Quantity,c.BatchCode from dbo.ICSWareHouseLotInfo a
left join dbo.ICSInventoryLot b on a.LotNo=b.LotNo and a.WorkPoint=b.WorkPoint
left join dbo.ICSExtension c on b.ExtensionID=c.ID and a.WorkPoint=c.WorkPoint
where a.InvCode='{0}' and a.WorkPoint='{1}' and a.WarehouseCode='{2}' and a.Quantity<>0 order by InDate asc";
where b.LotNo NOT LIKE '%-%' and a.InvCode='{0}' and a.WorkPoint='{1}' and a.WarehouseCode='{2}' and a.Quantity<>0 order by InDate asc";
SqlBackflush = string.Format(SqlBackflush, item["InvCode"].ToString(), WorkPoint, item["WHCode"].ToString());
DataTable DtBackflush = SqlCommandHelper.SQlReturnData(SqlBackflush, cmd);

Loading…
Cancel
Save