|
|
@ -559,9 +559,7 @@ namespace NFine.Application.WMS |
|
|
|
chksql = string.Format(chksql, dt.Rows[i]["DNCode"].ToString(), dt.Rows[i]["WorkPoint"].ToString()); |
|
|
|
DataTable chkdt = Repository().FindDataSetBySql(chksql).Tables[0]; |
|
|
|
|
|
|
|
sql = @"select A.DNCode,
|
|
|
|
CASE WHEN SUM(Convert(decimal(18,6),A.SAPSequence)) IS NULL THEN SUM(A.RCVQuantity) |
|
|
|
ELSE SUM(Convert(decimal(18,6),A.SAPSequence)) END AS RCVQuantity,B.BatchCode from ICSDeliveryNotice A |
|
|
|
sql = @"select A.DNCode, SUM(Convert(decimal(18,6),A.RCVQuantity)) AS RCVQuantity,B.BatchCode from ICSDeliveryNotice A
|
|
|
|
LEFT JOIN ICSExtension B ON B.ID=A.ExtensionID AND B.WorkPoint=A.WorkPoint |
|
|
|
WHERE DNCode='{0}' AND A.WorkPoint='{1}' |
|
|
|
GROUP BY A.DNCode,B.BatchCode";
|
|
|
|