Commit ebcb33f1 by jianshuqin

修复BUG:退款流水(财务)导出格式

parent 317bec10
......@@ -3017,8 +3017,8 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
foreach (var item in obj)
{
listVal.Add(
item.platform_type + "|" + (!string.IsNullOrWhiteSpace(item.origin_order_id) ? $"'{item.origin_order_id}" : string.Empty) + "|" + (!string.IsNullOrWhiteSpace(item.trancation_id) ? $"'{item.trancation_id}" : string.Empty) + "|" + item.refund_time.ToString("yyyy-MM-dd HH:mm:ss") + "|" + item.amount_refund + "|" + item.currency + "|" +
item.shipping_status + "|" + (!string.IsNullOrWhiteSpace(item.bailun_sku) ? $"'{item.bailun_sku}" : string.Empty) + "|" + item.financecategoryname + "|" + (item.shipping_time?.ToString("yyyy-MM-dd HH:mm:ss") ?? "") + "|" + item.order_total_amount +
item.platform_type + "|" + (!string.IsNullOrWhiteSpace(item.origin_order_id) ? $"\t{item.origin_order_id}" : string.Empty) + "|" + (!string.IsNullOrWhiteSpace(item.trancation_id) ? $"\t{item.trancation_id}" : string.Empty) + "|" + item.refund_time.ToString("yyyy-MM-dd HH:mm:ss") + "|" + item.amount_refund + "|" + item.currency + "|" +
item.shipping_status + "|" + (!string.IsNullOrWhiteSpace(item.bailun_sku) ? $"\t{item.bailun_sku}" : string.Empty) + "|" + item.financecategoryname + "|" + (item.shipping_time?.ToString("yyyy-MM-dd HH:mm:ss") ?? "") + "|" + item.order_total_amount +
"|" + item.order_currency + "|" + item.website + "|" + item.amount_refund_rmb
);
}
......
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