Commit 3bb25e88 by guanzhenshan

解决帐号无法显示的问题

parent c17b5ba9
...@@ -3020,7 +3020,7 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers ...@@ -3020,7 +3020,7 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
public JsonResult ListPaypalAccount() public JsonResult ListPaypalAccount()
{ {
var companyid = HttpContextHelper.Current?.User?.GetCompanyId().ToInt32(); var companyid = HttpContextHelper.Current?.User?.GetCompanyId().ToInt32();
var result = Services.CommonServices.ListPaypalAccount(companyid); var result = Services.CommonServices.ListPaypalAccount(companyid).Select(a=>a.seller).ToList();
return Json(result); return Json(result);
} }
......
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