|
|
@@ -4141,9 +4141,9 @@ namespace OASystem.API.Controllers
|
|
|
int rowNumber = 1;
|
|
|
foreach (var subItem in item.childList)
|
|
|
{
|
|
|
- string remaksDescription = $"{rowNumber}、【{item.priceTypeStr}】{item.Instructions}({subItem.PriceName}) CNY:{subItem.ItemTotal.ToString("#0.0000")}(单价:{subItem.Price.ToString("#0.0000")} * {subItem.Quantity.ToString("#0.0000")})【备注:{subItem.Remark ?? " - "}】】";
|
|
|
+ string remaksDescription = $"{rowNumber}、【{item.priceTypeStr}】{item.Instructions}({subItem.PriceName}) CNY:{subItem.ItemTotal.ToString("#0.0000")}(单价:{subItem.Price.ToString("#0.0000")} * {subItem.Quantity.ToString("#0.0000")})【备注:{(string.IsNullOrEmpty(subItem.Remark) ? " - " : subItem.Remark)}】】";
|
|
|
subItem.RemaksDescription = remaksDescription;
|
|
|
- string excelRemaksDescription = $"【{item.priceTypeStr}】{item.Instructions}({subItem.PriceName}) CNY:{subItem.ItemTotal.ToString("#0.0000")}(单价:{subItem.Price.ToString("#0.0000")} * {subItem.Quantity.ToString("#0.0000")})【申请人:{item.CreateUser} 申请时间:{item.CreateTime.ToString("yyyy-MM-dd HH:mm:ss")}】";
|
|
|
+ string excelRemaksDescription = $"【{item.priceTypeStr}】{item.Instructions}({subItem.PriceName}) CNY:{subItem.ItemTotal.ToString("#0.0000")}(单价:{subItem.Price.ToString("#0.0000")} * {subItem.Quantity.ToString("#0.0000")})【备注:{(string.IsNullOrEmpty(subItem.Remark) ? " - " : subItem.Remark)}】【申请人:{item.CreateUser} 申请时间:{item.CreateTime.ToString("yyyy-MM-dd HH:mm:ss")}】";
|
|
|
subItem.ExcelRemaksDescription = excelRemaksDescription;
|
|
|
rowNumber++;
|
|
|
}
|