0
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics.SymbolStore;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@@ -66,6 +67,11 @@ namespace MyCode.Project.Domain.Message.Request.KingDee
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public object Model { get; set; }
|
public object Model { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 自动提交并审核
|
||||||
|
/// </summary>
|
||||||
|
public bool IsAutoSubmitAndAudit { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -330,7 +330,8 @@ namespace MyCode.Project.Services.Implementation
|
|||||||
};
|
};
|
||||||
BillSave billSave = new BillSave()
|
BillSave billSave = new BillSave()
|
||||||
{
|
{
|
||||||
Model = model
|
Model = model,
|
||||||
|
IsAutoSubmitAndAudit = true,
|
||||||
};
|
};
|
||||||
SaleOrderModel fSaleOrderEntry = new SaleOrderModel();
|
SaleOrderModel fSaleOrderEntry = new SaleOrderModel();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user