Commit 0d5b03a7 authored by liudong1993's avatar liudong1993

1

parent 2235b46d
......@@ -9670,7 +9670,7 @@ namespace REBORN.Services.FinanceService
new ExcelColumn(value: item.Refund.ToString("#0.00")){ },
new ExcelColumn(value: item.Remitter +" /"+item.OrderNo){ },
new ExcelColumn(value: item.ClaimMoney.ToString("#0.00")){ },
new ExcelColumn(value: string.Join(" 、 ", item.ClaimList.Select(qitem => qitem.FinanceId + "/" + qitem.EmName + "/" + qitem.Money))){ },
new ExcelColumn(value: item.ClaimList!=null ? string.Join(" 、 ", item.ClaimList.Select(qitem => qitem.FinanceId + "/" + qitem.EmName + "/" + qitem.Money)):""){ },
new ExcelColumn(value: ((item.Income + item.Refund) - item.ClaimMoney).ToString("#0.00")){ },
}
};
......
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