136 lines
3.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
}
}