客户 适当性管理
This commit is contained in:
@@ -95,7 +95,40 @@ namespace YLErp.Web.Controllers
|
||||
return View();
|
||||
}
|
||||
|
||||
[MyAuthorize("客户管理-客户查看")]
|
||||
public ActionResult ClientExpireWarningList()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
[MyAuthorize("客户管理-客户查看")]
|
||||
public JsonResult ClientExpireWarningListJson(ExpireWarningReq req)
|
||||
{
|
||||
var sList = new ClientWarningService(CurUser).GetExpiresWarning(req);
|
||||
return Json(sList);
|
||||
}
|
||||
|
||||
[MyAuthorize("客户管理-客户查看")]
|
||||
public JsonResult CheckedClientWarning()
|
||||
{
|
||||
var expireWarningStatus = new ClientWarningService(CurUser).CheckedClient();
|
||||
return Json(expireWarningStatus);
|
||||
}
|
||||
|
||||
[MyAuthorize("客户管理-客户查看")]
|
||||
public JsonResult ClientExpireWarningUpdate(string enid)
|
||||
{
|
||||
var intid = DataProtectHelper.DecryptInt(enid);
|
||||
new ClientWarningService(CurUser).UpdateWarning(intid);
|
||||
return JsonSuccess("");
|
||||
}
|
||||
|
||||
[MyAuthorize("客户管理-客户查看")]
|
||||
public JsonResult ClientExpireWarningStatusJson(string enid)
|
||||
{
|
||||
var expireWarningStatus = new ClientWarningService(CurUser).GetExpireStatus();
|
||||
return Json(expireWarningStatus);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 导出客户人员信息
|
||||
|
||||
Reference in New Issue
Block a user