Commit 39c04f3f by guanzhenshan

速卖通的调整金额改为0

parent 6ffb746e
......@@ -1670,7 +1670,7 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
amount_product = p.amount_product.ToString("N2"),
amount_shipping = p.amount_shipping.ToString("N2"),
amount_tax = p.amount_tax.ToString("N2"),
amount_adjustment = p.platform_type=="Aliexpress"?"":p.amount_adjustment.ToString("N2"),
amount_adjustment = p.platform_type=="Aliexpress"?"0":p.amount_adjustment.ToString("N2"),
amount_gift_wrap = p.amount_gift_wrap.ToString("N2"),
amount_refund = p.amount_refund.ToString("N2"),
......@@ -1723,7 +1723,7 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
amount_product = p.amount_product.ToString("N2"),
amount_shipping = p.amount_shipping.ToString("N2"),
amount_tax = p.amount_tax.ToString("N2"),
amount_adjustment = p.platform_type == "Aliexpress" ? "" : p.amount_adjustment.ToString("N2"),
amount_adjustment = p.platform_type == "Aliexpress" ? "0" : p.amount_adjustment.ToString("N2"),
amount_gift_wrap = p.amount_gift_wrap.ToString("N2"),
amount_refund = p.amount_refund.ToString("N2"),
......
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