增加金蝶明细id
This commit is contained in:
@@ -685,6 +685,11 @@
|
||||
收货客户
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WMS.Web.Core.Dto.Erp.OutStock.ErpDeliveryNoticeOutStockResultDto.Erp_DetailId">
|
||||
<summary>
|
||||
对应金蝶单据明细id(销售出库同步金蝶下推使用)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WMS.Web.Core.Dto.Erp.OutStock.ErpDeliveryNoticeOutStockResultDto.MaterialId">
|
||||
<summary>
|
||||
物料Id
|
||||
|
||||
@@ -952,6 +952,11 @@
|
||||
单据头Id
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WMS.Web.Domain.Entitys.OutStockTaskDetails.Erp_DetailId">
|
||||
<summary>
|
||||
对应金蝶单据明细id(销售出库同步金蝶下推使用)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WMS.Web.Domain.Entitys.OutStockTaskDetails.SaleBillNo">
|
||||
<summary>
|
||||
销售订单号
|
||||
|
||||
@@ -26,6 +26,10 @@ namespace WMS.Web.Core.Dto.Erp.OutStock
|
||||
///</summary>
|
||||
public int ReceiptCustomerId { get; set; }
|
||||
/// <summary>
|
||||
/// 对应金蝶单据明细id(销售出库同步金蝶下推使用)
|
||||
/// </summary>
|
||||
public int Erp_DetailId { get; set; } = 0;
|
||||
/// <summary>
|
||||
/// 物料Id
|
||||
///</summary>
|
||||
public int MaterialId { get; set; }
|
||||
|
||||
@@ -27,6 +27,11 @@ namespace WMS.Web.Domain.Entitys
|
||||
[Column("Fid")]
|
||||
public int Fid { get; set; }
|
||||
/// <summary>
|
||||
/// 对应金蝶单据明细id(销售出库同步金蝶下推使用)
|
||||
/// </summary>
|
||||
[Column("Erp_DetailId")]
|
||||
public int Erp_DetailId { get; set; }
|
||||
/// <summary>
|
||||
/// 销售订单号
|
||||
///</summary>
|
||||
[Column("SaleBillNo")]
|
||||
|
||||
@@ -855,6 +855,7 @@ namespace WMS.Web.Domain.Services.Public
|
||||
lis.Remark = item[8];
|
||||
lis.CreateTime = Convert.ToDateTime(item[9]);
|
||||
lis.Type = (int)OutStockType.Sal;
|
||||
lis.Erp_DetailId = Convert.ToInt32(item[10]);
|
||||
erp_list.Add(lis);
|
||||
}
|
||||
return ResultList<ErpDeliveryNoticeOutStockResultDto>.ReSuccess(erp_list);
|
||||
|
||||
Reference in New Issue
Block a user