using LeaRun.Application.Entity.CustomerManage;
using LeaRun.Application.Busines.CustomerManage;
using LeaRun.Util;
using LeaRun.Util.WebControl;
using System.Web.Mvc;
namespace LeaRun.Application.Web.Areas.CustomerManage.Controllers
{
///
/// 版 本 6.1
/// Copyright (c) 2013-2016 上海力软信息技术有限公司
/// 创 建:佘赐雄
/// 日 期:2016-04-20 11:23
/// 描 述:费用支出
///
public class ExpensesController : MvcControllerBase
{
private ExpensesBLL expensesbll = new ExpensesBLL();
#region 视图功能
///
/// 列表页面
///
///
[HttpGet]
public ActionResult Index()
{
return View();
}
///
/// 表单页面
///
///
[HttpGet]
public ActionResult ExpensesForm()
{
return View();
}
#endregion
#region 获取数据
///
/// 获取列表
///
/// 分页参数
/// 查询参数
/// 返回分页列表Json
[HttpGet]
public ActionResult GetPageListJson(Pagination pagination, string queryJson)
{
var watch = CommonHelper.TimerStart();
var data = expensesbll.GetPageList(pagination, queryJson);
var jsonData = new
{
rows = data,
total = pagination.total,
page = pagination.page,
records = pagination.records,
costtime = CommonHelper.TimerEnd(watch)
};
return ToJsonResult(jsonData);
}
///
/// 获取列表
///
/// 查询参数
/// 返回列表Json
[HttpGet]
public ActionResult GetListJson(string queryJson)
{
var data = expensesbll.GetList(queryJson);
return ToJsonResult(data);
}
///
/// 获取实体
///
/// 主键值
/// 返回对象Json
[HttpGet]
public ActionResult GetFormJson(string keyValue)
{
var data = expensesbll.GetEntity(keyValue);
return ToJsonResult(data);
}
#endregion
#region 提交数据
///
/// 删除数据
///
/// 主键值
///
[HttpPost]
[ValidateAntiForgeryToken]
[AjaxOnly]
public ActionResult RemoveForm(string keyValue)
{
expensesbll.RemoveForm(keyValue);
return Success("删除成功。");
}
///
/// 保存表单(新增)
///
/// 实体对象
///
[HttpPost]
[ValidateAntiForgeryToken]
[AjaxOnly]
public ActionResult SaveForm(ExpensesEntity entity)
{
expensesbll.SaveForm(entity);
return Success("操作成功。");
}
#endregion
}
}