erp-其他入库单

This commit is contained in:
tongfei
2023-11-10 16:43:09 +08:00
10 changed files with 225 additions and 74 deletions

View File

@@ -8,9 +8,9 @@ namespace WMS.Web.Core.Dto.Erp
/// <summary>
/// erp 提交和审核
/// </summary>
public class ErpSubmitDto
public class ErpOperateDto
{
public ErpSubmitDto(string formId, string id)
public ErpOperateDto(string formId, string id)
{
this.FormId = formId;
this.Ids = id;

View File

@@ -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; }