|
|
@@ -8747,9 +8747,14 @@ WHERE
|
|
|
string time = $"所属期间: {beginDate.ToString("yyyy 年 MM 月 dd 日")} 至 {endDate.ToString("yyyy 年 MM 月 dd 日")}";
|
|
|
designer.SetDataSource("Time", time);
|
|
|
|
|
|
- //办公费用
|
|
|
- decimal officePirce = yearStaffCosts + yearOfficeExpenses;
|
|
|
- designer.SetDataSource("officePirce", officePirce.ToString("#0.00"));
|
|
|
+ // 办公费用
|
|
|
+ // 月
|
|
|
+ decimal officePirceMonth = monthStaffCosts + monthOfficeExpenses + monthCostSales + monthOtherFees + monthDyhFees + monthDepartFixedExpenses;
|
|
|
+ designer.SetDataSource("officePirceMonth", officePirceMonth.ToString("#0.00"));
|
|
|
+
|
|
|
+ // 年
|
|
|
+ decimal officePirceYear = yearStaffCosts + yearOfficeExpenses+ yearCostSales+ yearOtherFees + yearDyhFees + yearDepartFixedExpenses;
|
|
|
+ designer.SetDataSource("officePirceYear", officePirceYear.ToString("#0.00"));
|
|
|
|
|
|
//业务类型
|
|
|
var groupTypeIds = new List<int>() {
|