Commit 21148451 by 陶然

优化

parent 7b81c72b
......@@ -36,7 +36,7 @@ namespace Kivii.Finances.Seeyon.Extensions
public static Form_InvoiceApply ConvertToForm(this List<InvoiceApply> applys)
{
var apply = applys[0];
var bizKvids = applys.ConvertAll(o => o.Kvid);
var bizKvids = applys.ConvertAll(o => o.Kvid.ToString());
//var strBizKvids = JsonSerializer.SerializeToString(bizKvids);
var amount = applys.Sum(o => o.Amount);
var rtns = new Form_InvoiceApply();
......@@ -61,8 +61,8 @@ namespace Kivii.Finances.Seeyon.Extensions
public static Form_InvoiceApply ConvertToForm(this InvoiceApply apply)
{
var bizKvids = new List<Guid>();
bizKvids.Add(apply.Kvid);
var bizKvids = new List<string>();
bizKvids.Add(apply.Kvid.ToString());
var rtns = new Form_InvoiceApply();
//var settlementType = "code|MonthlySettlement";//默认月结
rtns.业务类型 = typeof(BillApply).FullName;
......
......@@ -235,7 +235,7 @@ namespace Kivii.Finances.Seeyon.Entities
/// <summary>
/// 唯一编号,BizKvid
/// </summary>
public List<Guid> 业务编号 { get; set; }
public List<string> 业务编号 { get; set; }
/// <summary>
/// 业务类型,BizType
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment