AdminSellController.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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.Sell;
  12. using GxPress.Request.User;
  13. using GxPress.Result.sell;
  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/sell")]
  23. [ApiController]
  24. [Authorize]
  25. public class AdminSellController : ControllerBase
  26. {
  27. private readonly ILogger<AdminSellController> _logger;
  28. private readonly ISellRepository _repository;
  29. public AdminSellController(ILogger<AdminSellController> logger, ISellRepository 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> SellExcelUpload([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 listSell = new List<Sell>();
  51. for (int i = 1; i < sheet.Rows.Count; i++) //行
  52. {
  53. var sell = new Sell();
  54. if (i == 1)
  55. continue;
  56. var sellAmount = sheet.Rows[i][0].ToString().Trim(); //金额
  57. if (string.IsNullOrEmpty(sellAmount))
  58. error = "发行金额";
  59. sell.SellAmount = int.Parse(sellAmount);
  60. var sellVolumeCount = sheet.Rows[i][1].ToString().Trim(); //类型
  61. if (string.IsNullOrEmpty(sellVolumeCount))
  62. error = "发行册数";
  63. sell.SellVolumeCount = int.Parse(sellVolumeCount);
  64. var enteringDateTime = sheet.Rows[i][2].ToString().Trim(); //录入时间
  65. if (string.IsNullOrEmpty(enteringDateTime))
  66. error = "录入时间必填";
  67. sell.EnteringDateTime = DateTime.Parse(enteringDateTime);
  68. if (!string.IsNullOrEmpty(error))
  69. break;
  70. listSell.Add(sell);
  71. }
  72. if (!string.IsNullOrEmpty(error)) throw new BusinessException(error);
  73. //计算
  74. var success = await _repository.InsertAsync(listSell);
  75. if (success == false)
  76. throw new BusinessException("服务器异常");
  77. return true;
  78. }
  79. /// <summary>
  80. /// 发行列表
  81. /// </summary>
  82. /// <param name="request"></param>
  83. /// <returns></returns>
  84. [HttpPost("list")]
  85. public async Task<PagedList<Sell>> GetPagedList(PageParameter request)
  86. {
  87. return await _repository.GetPageListAsync(request);
  88. }
  89. /// <summary>
  90. /// 发行图表
  91. /// </summary>
  92. /// <param name="request"></param>
  93. /// <returns></returns>
  94. [HttpPost("chart")]
  95. public async Task<SellResult> GetSellChart(SellRequest request)
  96. {
  97. return await _repository.GetSellChartAsync(request);
  98. }
  99. }
  100. }