This commit is contained in:
朱斌 2025-07-23 16:11:35 +08:00
parent c50652de25
commit ec335d585a
2 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,7 @@

using System;
using System.Collections.Generic;
using System.Diagnostics.SymbolStore;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@ -66,6 +67,11 @@ namespace MyCode.Project.Domain.Message.Request.KingDee
/// </summary>
public object Model { get; set; }
/// <summary>
/// 自动提交并审核
/// </summary>
public bool IsAutoSubmitAndAudit { get; set; }
}
}

View File

@ -330,7 +330,8 @@ namespace MyCode.Project.Services.Implementation
};
BillSave billSave = new BillSave()
{
Model = model
Model = model,
IsAutoSubmitAndAudit = true,
};
SaleOrderModel fSaleOrderEntry = new SaleOrderModel();