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