Browse Source

查询是否需要去除单据中已发完明细增加站点

master
姜鹏 2 weeks ago
parent
commit
7a6e4d1132
  1. 4
      ICSSoft.WMS.WebAPI/ICSSoft.DataProject/ICSSubmitService.cs

4
ICSSoft.WMS.WebAPI/ICSSoft.DataProject/ICSSubmitService.cs

@ -88,8 +88,8 @@ namespace ICSSoft.DataProject
//}
//查询是否需要去除单据中已发完明细
string excludeSql = @"DECLARE @ExcludeEnable BIT
SET @ExcludeEnable=(SELECT Enable FROM ICSConfiguration WHERE Code='excludeInvDelivered')";
string excludeSql = string.Format(@"DECLARE @ExcludeEnable BIT
SET @ExcludeEnable=(SELECT Enable FROM ICSConfiguration WHERE Code='excludeInvDelivered' AND WorkPoint='{0}')", JsonData.WorkPoint);
if (TransType == TransTypeEnum.ASN.GetDescription() || TransType == TransTypeEnum.OASN.GetDescription())
{

Loading…
Cancel
Save