AdminPrintController.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using ExcelDataReader;
  7. using GxPress.Common.Exceptions;
  8. using GxPress.Common.Page;
  9. using GxPress.Entity;
  10. using GxPress.Repository.Interface;
  11. using GxPress.Request.Print;
  12. using GxPress.Request.User;
  13. using GxPress.Result.Print;
  14. using Microsoft.AspNetCore.Authorization;
  15. using Microsoft.AspNetCore.Mvc;
  16. using Microsoft.Extensions.Logging;
  17. namespace GxPress.Api.AdminControllers
  18. {
  19. /// <summary>
  20. /// 出版数据
  21. /// </summary>
  22. [Route("api/admin/print")]
  23. [ApiController]
  24. [Authorize]
  25. public class AdminPrintController : ControllerBase
  26. {
  27. private readonly ILogger<AdminPrintController> _logger;
  28. private readonly IPrintRepository _repository;
  29. public AdminPrintController(ILogger<AdminPrintController> logger, IPrintRepository repository)
  30. {
  31. _logger = logger;
  32. _repository = repository;
  33. }
  34. /// <summary>
  35. /// 导入出版Excel数据
  36. /// </summary>
  37. /// <param name="request"></param>
  38. /// <returns></returns>
  39. [HttpPost("upload")]
  40. public async Task<bool> PrintExcelUpload([FromBody] UserExcelUploadRequest request)
  41. {
  42. var relativePath = request.ExcelUrl;
  43. Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
  44. //获取excel分析
  45. var stream = System.IO.File.Open("wwwroot/" + relativePath, FileMode.Open, FileAccess.Read);
  46. IExcelDataReader reader = ExcelReaderFactory.CreateReader(stream);
  47. var result = reader.AsDataSet();
  48. var sheet = result.Tables["Sheet1"];
  49. var error = string.Empty;
  50. var listPrint = new List<Print>();
  51. for (int i = 1; i < sheet.Rows.Count; i++) //行
  52. {
  53. var print = new Print();
  54. if (i == 1)
  55. continue;
  56. var amount = sheet.Rows[i][0].ToString().Trim(); //出版金额
  57. if (string.IsNullOrEmpty(amount))
  58. error = "出版金额";
  59. print.PublishAmount = int.Parse(amount);
  60. var volumeCount = sheet.Rows[i][1].ToString().Trim(); //出版册数
  61. if (string.IsNullOrEmpty(volumeCount))
  62. error = "出版册数";
  63. print.VolumeCount = int.Parse(volumeCount);
  64. var printAmount = sheet.Rows[i][2].ToString().Trim(); //印刷金额
  65. if (string.IsNullOrEmpty(printAmount))
  66. error = "印刷金额";
  67. print.PrintAmount = int.Parse(printAmount);
  68. var enteringDateTime = sheet.Rows[i][3].ToString().Trim(); //录入时间
  69. if (string.IsNullOrEmpty(enteringDateTime))
  70. error = "录入时间必填";
  71. print.EnteringDateTime = DateTime.Parse(enteringDateTime);
  72. if (!string.IsNullOrEmpty(error))
  73. break;
  74. listPrint.Add(print);
  75. }
  76. if (!string.IsNullOrEmpty(error)) throw new BusinessException(error);
  77. //计算
  78. var success = await _repository.InsertAsync(listPrint);
  79. if (success == false)
  80. throw new BusinessException("服务器异常");
  81. return true;
  82. }
  83. /// <summary>
  84. /// 出版数据列表
  85. /// </summary>
  86. /// <param name="request"></param>
  87. /// <returns></returns>
  88. [HttpPost("list")]
  89. public async Task<PagedList<Print>> GetPagedList(PageParameter request)
  90. {
  91. return await _repository.GetPageListAsync(request);
  92. }
  93. /// <summary>
  94. /// 发行图表
  95. /// </summary>
  96. /// <param name="request"></param>
  97. /// <returns></returns>
  98. [HttpPost("chart")]
  99. public async Task<PrintResult> GetSellChart(PrintRequest request)
  100. {
  101. return await _repository.GetPrintChartAsync(request);
  102. }
  103. }
  104. }