StatisticController.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using System.Collections.Generic;
  2. using System.Web.Mvc;
  3. using Abp.Runtime.Caching;
  4. using Abp.Web.Mvc.Authorization;
  5. using IwbZero.Auditing;
  6. using ShwasherSys.BaseSysInfo.States;
  7. namespace ShwasherSys.Controllers
  8. {
  9. [AbpMvcAuthorize, AuditLog("数据统计信息")]
  10. public class StatisticController : ShwasherControllerBase
  11. {
  12. public StatisticController(IStatesAppService statesAppService, ICacheManager cacheManager)
  13. {
  14. StatesAppService = statesAppService;
  15. CacheManager = cacheManager;
  16. }
  17. [AbpMvcAuthorize]
  18. public ActionResult PackageDaily()
  19. {
  20. return View();
  21. }
  22. [AbpMvcAuthorize]
  23. public ActionResult ProductionReport()
  24. {
  25. return View();
  26. }
  27. [AbpMvcAuthorize]
  28. public ActionResult OutsourcingReport()
  29. {
  30. return View();
  31. }
  32. [AbpMvcAuthorize]
  33. public ActionResult InventoryCheckReport()
  34. {
  35. ViewBag.CheckStateListStr = StatesAppService.GetSelectListStrs("InventoryCheck", "CheckState");
  36. return View();
  37. }
  38. [AbpMvcAuthorize]
  39. public ActionResult StatementBillReport()
  40. {
  41. return View();
  42. }
  43. //[AbpMvcAuthorize]
  44. //public ActionResult SalesReport()
  45. //{
  46. // return View();
  47. //}
  48. }
  49. }