using Microsoft.AspNetCore.Mvc; using System.Net; using System.Net.Http.Headers; using Microsoft.Extensions.Hosting.Internal; using Microsoft.AspNetCore.Http.Extensions; using IStation.Untity; using Furion.DynamicApiController; using System.ComponentModel.DataAnnotations; using Mapster; using Microsoft.AspNetCore.Http; using Furion.DependencyInjection; using Microsoft.AspNetCore.Authorization; using Furion.DataEncryption; using Furion.FriendlyException; namespace IStation.Application { /// /// Report /// [AllowAnonymous] [Route("DataFile/Report ")] [ApiDescriptionSettings("DataFile", Name = "报表", Order = 999)] public class Report_Controller : IDynamicApiController, ITransient { private readonly Service.EtaMultiRealRecord _service = new Service.EtaMultiRealRecord(); /// /// 泵站能效日报表 /// [Route("StationEtaDayReport@V1.0")] [HttpPost] public string StationEtaDayReport([FromQuery][Required] ObjectUnderCorpInput input, int year,int month) { var station = new Service.Station().GetByID(input.CorpID, input.ObjectID); if (station == null) { throw Oops.Oh(ErrorCodes.D001, $"泵站不存在!!"); } var pumpPipeLineList = new Service.PipeLine().GetByBelongTypeAndBelongID(input.CorpID, input.ObjectType, input.ObjectID)?.FindAll(x => x.Catalog == IStation.Product.Catalog_JiBeng); if (pumpPipeLineList == null) { throw Oops.Oh(ErrorCodes.D001, $"机泵不存在!"); } var etaSumSingleDayRecordList = new List(); var etaSumSingleService = new Service.EtaSumSingleRecord(); foreach (var pipeLineitem in pumpPipeLineList) { var etaSumSingleRecord = etaSumSingleService.GetMonthByObjectOfMonth(pipeLineitem.CorpID, IStation.ObjectType.PipeLine, pipeLineitem.ID, year,month); etaSumSingleDayRecordList.Add(etaSumSingleRecord); } if (etaSumSingleDayRecordList == null || etaSumSingleDayRecordList.Count < 1) { throw Oops.Oh(ErrorCodes.D001, $"能效数据不存在!-日期:[{year-month}]"); } var pdf = new Eta_Month_ReportPdf(); var folderPath = Path.Combine(ConfigHelper.DataPath, Settings.DataFile.PdfFolder); if (!Directory.Exists(folderPath)) Directory.CreateDirectory(folderPath); var etaPdfFileName = $"{station.Name}_Eta_{DateTime.Now.ToString("M")}.pdf"; var etaPdfFilePath = Path.Combine(folderPath, etaPdfFileName); if (File.Exists(etaPdfFilePath)) File.Delete(etaPdfFilePath); if (!pdf.Create4Stream(station, pumpPipeLineList, etaSumSingleDayRecordList, etaPdfFilePath)) { throw Oops.Oh(ErrorCodes.D002, $"[{etaPdfFileName}]文件生成失败!"); } return Path.Combine(Settings.DataFile.SaveFileUrl, etaPdfFilePath); } } }