Commit 02896a87 by guanzhenshan

解决管理成本无法查看出纳凭证的问题

parent 4ea924b5
...@@ -6382,9 +6382,9 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers ...@@ -6382,9 +6382,9 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
var json = Newtonsoft.Json.Linq.JObject.Parse(result); var json = Newtonsoft.Json.Linq.JObject.Parse(result);
return Json(new { return Json(new {
success = json["cost"]["cashierDownloadPath"].ToString()!="", success = json["success"].ToBoolean()==true,
msg = (json["cost"]["cashierDownloadPath"].ToString() != ""?"": "该费用单没有找到出纳凭证文件。"), msg = (json["data"]["cashierDownloadPath"].ToString() != ""?"": "该费用单没有找到出纳凭证文件。"),
data = json["cost"]["cashierDownloadPath"].ToString() data = json["data"]["cashierDownloadPath"].ToString()
}); });
} }
} }
......
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