|
@@ -516,7 +516,13 @@ namespace OASystem.Domain.ViewModels.Financial
|
|
|
[SqlSugar.SugarTable("Fin_DailyFeePayment")]
|
|
|
public class DailyFeePaymentRangeView
|
|
|
{
|
|
|
- public string ViewStr { get; set; }
|
|
|
+ public string ViewStr
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return $"{RowIndex}、【{CompanyName}】【{TransferType}】【{FeeType}】【{Instructions}】【{SumPrice.ToString("#0.00")}】【申请人:{Applicant} 申请时间:{ApplicantDt.ToString("yyyy-MM-dd HH:mm:ss")}】";
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
[SugarColumn(IsIgnore = true)]
|
|
|
public int RowIndex { get; set; }
|
|
@@ -538,19 +544,16 @@ namespace OASystem.Domain.ViewModels.Financial
|
|
|
|
|
|
[Navigate(NavigateType.OneToMany, nameof(DailyFeePaymentContentView.DFPId))]
|
|
|
public List<DailyFeePaymentContentView> Contents { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|
|
|
[SqlSugar.SugarTable("Fin_DailyFeePaymentContent")]
|
|
|
public class DailyFeePaymentContentView
|
|
|
{
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public string ViewStr { get {
|
|
|
-
|
|
|
- return $"费用名称:[{PriceName}] 单价:[{Price.ToString("#0.00")}] 数量:[{Quantity.ToString("#0.00")}] 小计:[{ItemTotal.ToString("#0.00")}] 备注:[{Remark}]";
|
|
|
- } }
|
|
|
+
|
|
|
|
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
@@ -569,6 +572,19 @@ namespace OASystem.Domain.ViewModels.Financial
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|