Browse Source

调整接口

master
lilili 2 years ago
parent
commit
04dd178f4c
  1. 10
      WMS-BS/NFine.Application/WMS/WMSCreateItemLotApp.cs

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

@ -668,7 +668,7 @@ where a.Type='2'";
left join ICSInventory b on a.InvCode=b.InvCode and a.WorkPoint=b.WorkPoint
left join (
select b.TransCode,b.TransSequence,sum(isnull(Quantity,0)) LOTQTY from ICSInventoryLot a
left join ICSInventoryLotDetail b on a.LotNo=b.LotNo
left join ICSInventoryLotDetail b on a.LotNo=b.LotNo where a.LotNo NOT LIKE'%-%'
group by b.TransCode,b.TransSequence
) c on a.SDNCode=c.TransCode and a.Sequence=c.TransSequence
WHERE 1 =1
@ -843,7 +843,7 @@ CAST( (a.Quantity-ISNULL(c.LOTQTY,0)) as DECIMAL(18,{0})) as thisCreateQty,isnu
left join ICSInventory b on a.InvCode=b.InvCode and a.WorkPoint=b.WorkPoint
left join (
select b.TransCode,b.TransSequence,sum(isnull(Quantity,0)) LOTQTY from ICSInventoryLot a
left join ICSInventoryLotDetail b on a.LotNo=b.LotNo
left join ICSInventoryLotDetail b on a.LotNo=b.LotNo WHERE a.LotNo NOT LIKE'%-%'
group by b.TransCode,b.TransSequence
) c on a.InCode=c.TransCode and a.Sequence=c.TransSequence
WHERE 1 =1
@ -1274,7 +1274,7 @@ CAST( (a.Quantity-ISNULL(c.LOTQTY,0)) as DECIMAL(18,{0})) as thisCreateQty,isnu
from ICSManufactureReceive a
left join ICSInventory b on a.InvCode=b.InvCode and a.WorkPoint=b.WorkPoint
left join (select b.TransCode,b.TransSequence,sum(isnull(Quantity,0)) LOTQTY from ICSInventoryLot a
left join ICSInventoryLotDetail b on a.LotNo=b.LotNo
left join ICSInventoryLotDetail b on a.LotNo=b.LotNo WHERE a.LotNo NOT LIKE'%-%'
group by b.TransCode,b.TransSequence
) c on a.RCVCode=c.TransCode and a.Sequence=c.TransSequence
@ -1302,7 +1302,7 @@ from ICSDeliveryNotice a
left join ICSExtension e ON e.ID=a.ExtensionID
left join ICSInventory b on a.InvCode=b.InvCode and a.WorkPoint=b.WorkPoint
left join (select b.TransCode,b.TransSequence,sum(isnull(Quantity,0)) LOTQTY from ICSInventoryLot a
left join ICSInventoryLotDetail b on a.LotNo=b.LotNo
left join ICSInventoryLotDetail b on a.LotNo=b.LotNo where a.LotNo NOT LIKE'%-%'
group by b.TransCode,b.TransSequence
) c on a.DNCode=c.TransCode and a.Sequence=c.TransSequence
@ -2463,7 +2463,7 @@ CAST( (a.Quantity-ISNULL(c.LOTQTY,0)) as DECIMAL(18,{0})) as thisCreateQty,isnu
left join ICSInventory b on a.InvCode=b.InvCode and a.WorkPoint=b.WorkPoint
left join (
select b.TransCode,b.TransSequence,sum(isnull(Quantity,0)) LOTQTY from ICSInventoryLot a
left join ICSInventoryLotDetail b on a.LotNo=b.LotNo
left join ICSInventoryLotDetail b on a.LotNo=b.LotNo WHERE a.LotNo NOT LIKE'%-%'
group by b.TransCode,b.TransSequence
) c on a.ApplyNegCode=c.TransCode and a.Sequence=c.TransSequence
WHERE d.Type='2'

Loading…
Cancel
Save