Browse Source

调整获取源头单据接口

master
lilili 2 years ago
parent
commit
6ae28b3edb
  1. 10
      ICSSoft.WMS.WebAPI/ICSSoft.DataProject/ICSSubmitService.cs

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

@ -634,6 +634,16 @@ namespace ICSSoft.DataProject
#region 采购入库 #region 采购入库
else if (TransType == TransTypeEnum.PurchaseReceiveDoc.GetDescription()) else if (TransType == TransTypeEnum.PurchaseReceiveDoc.GetDescription())
{ {
columns = @"a.DNCode AS TransCode,
'' AS Type,
a.Sequence AS TransSequence,
a.Quantity,
a.Amount,
a.RCVQuantity AS IssueQuantity,";
tableName = @"ICSDeliveryNotice a ";
where = @" a.DNCode='{0}' AND a.WorkPoint='{1}' AND DNType='1' ";
} }
#endregion #endregion
#region 审核的到货单 #region 审核的到货单

Loading…
Cancel
Save