mahao
1 year ago
4 changed files with 266 additions and 0 deletions
@ -0,0 +1,166 @@ |
|||
using Magicodes.ExporterAndImporter.Core; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Win.Sfs.SettleAccount.Entities.BQ.Dtos |
|||
{ |
|||
/// <summary>
|
|||
/// HBPO发运单
|
|||
/// </summary>
|
|||
public class HBPO_SE_DETAIL_DTO |
|||
{ |
|||
/// <summary>
|
|||
/// 期间
|
|||
/// </summary>
|
|||
[Display(Name = "期间")] |
|||
public int Version { set; get; } |
|||
|
|||
/// <summary>
|
|||
/// 发货时间
|
|||
/// </summary>
|
|||
[Display(Name = "发货时间")] |
|||
public DateTime ShippingDate { set; get; } |
|||
|
|||
/// <summary>
|
|||
/// 发运单号
|
|||
/// </summary>
|
|||
[Display(Name = "发运单号")] |
|||
public string WmsBillNum { set; get; } |
|||
|
|||
/// <summary>
|
|||
/// 零件号
|
|||
/// </summary>
|
|||
[Display(Name = "零件号")] |
|||
public string LU { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 生产号
|
|||
/// </summary>
|
|||
[Display(Name = "生产号")] |
|||
public string PN { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 组合键值(LU+PN)
|
|||
/// </summary>
|
|||
[Display(Name = "组合键值(LU+PN)")] |
|||
public string KeyCode { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 数量
|
|||
/// </summary>
|
|||
[Display(Name = "数量")] |
|||
public decimal Qty { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 日顺序号
|
|||
/// </summary>
|
|||
[Display(Name = "日顺序号")] |
|||
public string SeqNumber { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 小总成号
|
|||
/// </summary>
|
|||
[Display(Name = "小总成号")] |
|||
public string AssemblyCode { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 注塑码
|
|||
/// </summary>
|
|||
[Display(Name = "注塑码")] |
|||
public string InjectionCode { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 订单时间
|
|||
/// </summary>
|
|||
[Display(Name = "订单时间")] |
|||
public DateTime BeginDate { get; set; } |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 导出
|
|||
/// </summary>
|
|||
public class HBPO_SE_DETAIL_EXPORT_DTO |
|||
{ |
|||
/// <summary>
|
|||
/// 期间
|
|||
/// </summary>
|
|||
[Display(Name = "期间")] |
|||
[ExporterHeader(DisplayName = "{0}")] |
|||
public int Version { set; get; } |
|||
|
|||
/// <summary>
|
|||
/// 发货时间
|
|||
/// </summary>
|
|||
[Display(Name = "发货时间")] |
|||
[ExporterHeader(DisplayName = "{0}")] |
|||
public DateTime ShippingDate { set; get; } |
|||
|
|||
/// <summary>
|
|||
/// 发运单号
|
|||
/// </summary>
|
|||
[Display(Name = "发运单号")] |
|||
[ExporterHeader(DisplayName = "{0}")] |
|||
public string WmsBillNum { set; get; } |
|||
|
|||
/// <summary>
|
|||
/// 零件号
|
|||
/// </summary>
|
|||
[Display(Name = "零件号")] |
|||
[ExporterHeader(DisplayName = "{0}")] |
|||
public string LU { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 生产号
|
|||
/// </summary>
|
|||
[Display(Name = "生产号")] |
|||
[ExporterHeader(DisplayName = "{0}")] |
|||
public string PN { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 组合键值(LU+PN)
|
|||
/// </summary>
|
|||
[Display(Name = "组合键值(LU+PN)")] |
|||
[ExporterHeader(DisplayName = "{0}")] |
|||
public string KeyCode { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 数量
|
|||
/// </summary>
|
|||
[Display(Name = "数量")] |
|||
[ExporterHeader(DisplayName = "{0}")] |
|||
public decimal Qty { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 日顺序号
|
|||
/// </summary>
|
|||
[Display(Name = "日顺序号")] |
|||
[ExporterHeader(DisplayName = "{0}")] |
|||
public string SeqNumber { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 小总成号
|
|||
/// </summary>
|
|||
[Display(Name = "小总成号")] |
|||
[ExporterHeader(DisplayName = "{0}")] |
|||
public string AssemblyCode { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 注塑码
|
|||
/// </summary>
|
|||
[Display(Name = "注塑码")] |
|||
[ExporterHeader(DisplayName = "{0}")] |
|||
public string InjectionCode { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 订单时间
|
|||
/// </summary>
|
|||
[Display(Name = "订单时间")] |
|||
[ExporterHeader(DisplayName = "{0}")] |
|||
public DateTime BeginDate { get; set; } |
|||
} |
|||
|
|||
} |
@ -0,0 +1,77 @@ |
|||
using Microsoft.AspNetCore.Authorization; |
|||
using Microsoft.AspNetCore.Mvc; |
|||
using SettleAccount.Domain.BQ; |
|||
using Shouldly; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp.Application.Dtos; |
|||
using Volo.Abp.Application.Services; |
|||
using Win.Sfs.BaseData.ImportExcelCommon; |
|||
using Win.Sfs.SettleAccount.Entities.BQ.Dtos; |
|||
using Win.Sfs.SettleAccount.ExcelImporter; |
|||
using Win.Sfs.Shared.RepositoryBase; |
|||
|
|||
namespace Win.Sfs.SettleAccount.Entities.BQ |
|||
{ |
|||
/// <summary>
|
|||
/// HBPO发运单
|
|||
/// </summary>
|
|||
[AllowAnonymous] |
|||
[Route("api/settleaccount/HBPO_SE_DETAIL_SERVICE")] |
|||
public class HBPO_SE_DETAIL_SERVICE : ApplicationService |
|||
{ |
|||
/// <summary>
|
|||
/// HBPO发运单仓储
|
|||
/// </summary>
|
|||
private readonly INormalEfCoreRepository<HBPO_SE_DETAIL, Guid> _repository; |
|||
|
|||
/// <summary>
|
|||
/// excel服务
|
|||
/// </summary>
|
|||
private readonly IExcelImportAppService _excelImportService; |
|||
|
|||
public HBPO_SE_DETAIL_SERVICE(INormalEfCoreRepository<HBPO_SE_DETAIL, Guid> repository, IExcelImportAppService excelImportService) |
|||
{ |
|||
_repository = repository; |
|||
_excelImportService = excelImportService; |
|||
} |
|||
|
|||
#region 导出
|
|||
/// <summary>
|
|||
/// 导出
|
|||
/// </summary>
|
|||
[HttpPost] |
|||
[Route("Export")] |
|||
public async Task<string> ExportAsync(RequestDto input) |
|||
{ |
|||
string fileName = $"HBPO发运单_{Guid.NewGuid()}.xlsx"; |
|||
var entities = await _repository.GetListByFilterAsync(input.Filters, input.Sorting, int.MaxValue, 0, true); |
|||
var dtos = ObjectMapper.Map<List<HBPO_SE_DETAIL>, List<HBPO_SE_DETAIL_EXPORT_DTO>>(entities); |
|||
|
|||
ExportImporter _exportImporter = new ExportImporter(); |
|||
var result = await _exportImporter.ExcelExporter(dtos); |
|||
result.ShouldNotBeNull(); |
|||
|
|||
await _excelImportService.SaveBlobAsync(new SaveExcelImportInputDto { Name = fileName, Content = result }); |
|||
return fileName; |
|||
} |
|||
#endregion
|
|||
|
|||
#region 查询
|
|||
/// <summary>
|
|||
/// 获取列表
|
|||
/// </summary>
|
|||
[HttpPost] |
|||
[Route("list")] |
|||
public async Task<PagedResultDto<HBPO_SE_DETAIL_DTO>> GetListAsync(RequestDto input) |
|||
{ |
|||
var entities = await _repository.GetListByFilterAsync(input.Filters, input.Sorting, input.MaxResultCount, input.SkipCount, true); |
|||
var totalCount = await _repository.GetCountByFilterAsync(input.Filters); |
|||
var dtos = ObjectMapper.Map<List<HBPO_SE_DETAIL>, List<HBPO_SE_DETAIL_DTO>>(entities); |
|||
return new PagedResultDto<HBPO_SE_DETAIL_DTO>(totalCount, dtos); |
|||
} |
|||
#endregion
|
|||
|
|||
} |
|||
} |
Loading…
Reference in new issue