136 lines
3.7 KiB
C#
136 lines
3.7 KiB
C#
using Learun.Util;
|
||
using System.Data;
|
||
using Learun.Application.Report;
|
||
using System.Web.Mvc;
|
||
using System.Collections.Generic;
|
||
using Learun.Application.Base.SystemModule;
|
||
|
||
namespace Learun.Application.Web.Areas.LR_ReportModule.Controllers
|
||
{
|
||
/// <summary>
|
||
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
|
||
/// Copyright (c) 2013-2018 Hexagon PPM
|
||
/// 创 建:超级管理员
|
||
/// 日 期:2019-03-14 15:17
|
||
/// 描 述:报表文件管理
|
||
/// </summary>
|
||
public class RptManageController : MvcControllerBase
|
||
{
|
||
private RptManageIBLL rptManageIBLL = new RptManageBLL();
|
||
|
||
#region 视图功能
|
||
|
||
/// <summary>
|
||
/// 主页面
|
||
/// <summary>
|
||
/// <returns></returns>
|
||
[HttpGet]
|
||
public ActionResult Index()
|
||
{
|
||
return View();
|
||
}
|
||
/// <summary>
|
||
/// 表单页
|
||
/// <summary>
|
||
/// <returns></returns>
|
||
[HttpGet]
|
||
public ActionResult Form()
|
||
{
|
||
return View();
|
||
}
|
||
//TradPreview
|
||
/// <summary>
|
||
///报表页
|
||
/// <summary>
|
||
/// <returns></returns>
|
||
[HttpGet]
|
||
public ActionResult Report()
|
||
{
|
||
return View();
|
||
}
|
||
#endregion
|
||
|
||
#region 获取数据
|
||
|
||
/// <summary>
|
||
/// 获取页面显示列表数据
|
||
/// <summary>
|
||
/// <param name="queryJson">查询参数</param>
|
||
/// <returns></returns>
|
||
[HttpGet]
|
||
[AjaxOnly]
|
||
public ActionResult GetPageList(string pagination, string queryJson)
|
||
{
|
||
Pagination paginationobj = pagination.ToObject<Pagination>();
|
||
var data = rptManageIBLL.GetPageList(paginationobj, queryJson);
|
||
var jsonData = new
|
||
{
|
||
rows = data,
|
||
total = paginationobj.total,
|
||
page = paginationobj.page,
|
||
records = paginationobj.records
|
||
};
|
||
return Success(jsonData);
|
||
}
|
||
/// <summary>
|
||
/// 获取表单数据
|
||
/// <summary>
|
||
/// <returns></returns>
|
||
[HttpGet]
|
||
[AjaxOnly]
|
||
public ActionResult GetFormData(string keyValue)
|
||
{
|
||
var LR_RPT_FileInfoData = rptManageIBLL.GetLR_RPT_FileInfoEntity(keyValue);
|
||
var jsonData = new
|
||
{
|
||
LR_RPT_FileInfo = LR_RPT_FileInfoData,
|
||
};
|
||
return Success(jsonData);
|
||
}
|
||
/// <summary>
|
||
/// 树形显示报表
|
||
/// </summary>
|
||
/// <param name="itemCode">分类编号</param>
|
||
/// <returns></returns>
|
||
[HttpGet]
|
||
[AjaxOnly]
|
||
public ActionResult GetDetailTree()
|
||
{
|
||
var data = rptManageIBLL.GetFileTree();
|
||
return Success(data);
|
||
}
|
||
#endregion
|
||
|
||
#region 提交数据
|
||
|
||
/// <summary>
|
||
/// 删除实体数据
|
||
/// <param name="keyValue">主键</param>
|
||
/// <summary>
|
||
/// <returns></returns>
|
||
[HttpPost]
|
||
[AjaxOnly]
|
||
public ActionResult DeleteForm(string keyValue)
|
||
{
|
||
rptManageIBLL.DeleteEntity(keyValue);
|
||
return Success("删除成功!");
|
||
}
|
||
/// <summary>
|
||
/// 保存实体数据(新增、修改)
|
||
/// <param name="keyValue">主键</param>
|
||
/// <summary>
|
||
/// <returns></returns>
|
||
[HttpPost]
|
||
[ValidateAntiForgeryToken]
|
||
[AjaxOnly]
|
||
public ActionResult SaveForm(string keyValue, string strEntity)
|
||
{
|
||
LR_RPT_FileInfoEntity entity = strEntity.ToObject<LR_RPT_FileInfoEntity>();
|
||
rptManageIBLL.SaveEntity(keyValue, entity);
|
||
return Success("保存成功!");
|
||
}
|
||
#endregion
|
||
|
||
}
|
||
}
|