SnProgressController.cs
1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
using System.Collections.Generic;
using System.Linq;
using WebMvc.Aop;
using Hh.Mes.Common.Request;
using Hh.Mes.Service.SystemAuth;
using Hh.Mes.Service.WmsService;
using Microsoft.AspNetCore.Mvc;
using Hh.Mes.POJO.Entity;
using Hh.Mes.Service.Configure;
namespace WebMvc.Areas.configure.Controllers
{
/// <summary>
/// SN阶段 列表
/// </summary>
[Area("configure")]
public class SnProgressController : BaseController
{
private readonly WmsSnPartService _service;
public SnProgressController(IAuth authUtil, WmsSnPartService service) : base(authUtil)
{
_service = service;
}
[Authenticate]
[ServiceFilter(typeof(OperLogFilter))]
public IActionResult Index()
{
if (_loginInfo == null) return Redirect("/Login/Index");
return View();
}
/// <summary>
/// 加载及分页查询
/// </summary>
/// <param name="pageRequest">表单请求信息</param>
/// <returns></returns>
[HttpPost]
public string Load(PageReq pageRequest, string sn, DateTime start, DateTime end)
{
return Serialize(_service.LoadSnState(pageRequest, sn, start, end));
}
#region 导出数据
/// <summary>
/// 导出数据
/// </summary>
/// <returns></returns>
[HttpPost]
public string Export(PageReq pageRequest, string sn, DateTime start, DateTime end,bool Exel)
{
return Serialize(_service.LoadSnState(null, sn, start, end, Exel));
}
#endregion
}
}