|
@ -5,6 +5,7 @@ namespace BBWY.Client.Models |
|
|
public class AuditPayBill : NotifyObject |
|
|
public class AuditPayBill : NotifyObject |
|
|
{ |
|
|
{ |
|
|
private AuditCapitalType? auditCapitalType; |
|
|
private AuditCapitalType? auditCapitalType; |
|
|
|
|
|
private string customAuditCapitalType; |
|
|
private string errorMessage; |
|
|
private string errorMessage; |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
@ -96,6 +97,8 @@ namespace BBWY.Client.Models |
|
|
{ |
|
|
{ |
|
|
IsChanged = true; |
|
|
IsChanged = true; |
|
|
ErrorMessage = string.Empty; |
|
|
ErrorMessage = string.Empty; |
|
|
|
|
|
if (value != Models.AuditCapitalType.自定义) |
|
|
|
|
|
CustomAuditCapitalType = string.Empty; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
@ -115,6 +118,16 @@ namespace BBWY.Client.Models |
|
|
|
|
|
|
|
|
public DateTime? OrderStartTime { get; set; } |
|
|
public DateTime? OrderStartTime { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 自定义资金类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string CustomAuditCapitalType |
|
|
|
|
|
{ |
|
|
|
|
|
get => customAuditCapitalType; |
|
|
|
|
|
set { Set(ref customAuditCapitalType, value); } |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
public override string ToString() |
|
|
public override string ToString() |
|
|
{ |
|
|
{ |
|
|
return $"{PayBillNo},{SourceMerchantOrderNo},{PayBillType},{PayTime},{OppositeAccount},{IncomeAmount},{ExpenditureAmount},{AuditCapitalType},{BelongShop},{RelationPurchaseOrderId},{RelationShopOrderId},{OrderStartTime},{PurchasePlatform},{Remark},{ErrorMessage}"; |
|
|
return $"{PayBillNo},{SourceMerchantOrderNo},{PayBillType},{PayTime},{OppositeAccount},{IncomeAmount},{ExpenditureAmount},{AuditCapitalType},{BelongShop},{RelationPurchaseOrderId},{RelationShopOrderId},{OrderStartTime},{PurchasePlatform},{Remark},{ErrorMessage}"; |
|
@ -127,5 +140,6 @@ namespace BBWY.Client.Models |
|
|
return "账单流水号,商家订单号,账单平台,支付时间,对方账户,收入金额,支出金额,资金类型,归属店铺,采购单号,销售单号,订单日期,采购平台,备注,异常信息"; |
|
|
return "账单流水号,商家订单号,账单平台,支付时间,对方账户,收入金额,支出金额,资金类型,归属店铺,采购单号,销售单号,订单日期,采购平台,备注,异常信息"; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|