AdminStorehouseController.cs 3.6 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.Storehouse;
  12. using GxPress.Request.User;
  13. using GxPress.Result.Storehouse;
  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/storehouse")]
  23. [ApiController]
  24. [Authorize]
  25. public class AdminStorehouseController : ControllerBase
  26. {
  27. private readonly ILogger<AdminStorehouseController> _logger;
  28. private readonly IStorehouseRepository _repository;
  29. public AdminStorehouseController(ILogger<AdminStorehouseController> logger, IStorehouseRepository 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> StorehouseExcelUpload([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 listStorehouse = new List<Storehouse>();
  51. for (int i = 1; i < sheet.Rows.Count; i++) //行
  52. {
  53. var storehouse = new Storehouse();
  54. if (i == 1)
  55. continue;
  56. var storehouseCount = sheet.Rows[i][0].ToString().Trim(); //金额
  57. if (string.IsNullOrEmpty(storehouseCount))
  58. error = "库存数";
  59. storehouse.StorehouseCount = int.Parse(storehouseCount);
  60. var enteringDateTime = sheet.Rows[i][1].ToString().Trim(); //录入时间
  61. if (string.IsNullOrEmpty(enteringDateTime))
  62. error = "录入时间必填";
  63. storehouse.EnteringDateTime = DateTime.Parse(enteringDateTime);
  64. if (!string.IsNullOrEmpty(error))
  65. break;
  66. listStorehouse.Add(storehouse);
  67. }
  68. if (!string.IsNullOrEmpty(error)) throw new BusinessException(error);
  69. //计算
  70. var success = await _repository.InsertAsync(listStorehouse);
  71. if (success == false)
  72. throw new BusinessException("服务器异常");
  73. return true;
  74. }
  75. /// <summary>
  76. /// 仓库数据列表
  77. /// </summary>
  78. /// <param name="request"></param>
  79. /// <returns></returns>
  80. [HttpPost("list")]
  81. public async Task<PagedList<Storehouse>> GetPagedList(PageParameter request)
  82. {
  83. return await _repository.GetPageListAsync(request);
  84. }
  85. /// <summary>
  86. /// 库存图标
  87. /// </summary>
  88. /// <param name="request"></param>
  89. /// <returns></returns>
  90. [HttpPost("chart")]
  91. public async Task<StorehouseResult> GetStorehouseChart(StorehouseRequest request)
  92. {
  93. return await _repository.GetStorehouseChartAsync(request);
  94. }
  95. }
  96. }