| | |
| | | using CMS.Extensions.Abp.AspNetCore.Mvc.Filters; |
| | | using CMS.Plugin.HIAWms.Application.Contracts.Dtos.CommonDto; |
| | | using CMS.Plugin.HIAWms.Application.Contracts.Dtos.OutStockDto; |
| | | using CMS.Plugin.HIAWms.Application.Contracts.Services; |
| | | using Microsoft.AspNetCore.Mvc; |
| | |
| | | /// <returns></returns> |
| | | [HttpPost] |
| | | [Route("CallMaterial")] |
| | | public async Task CallMaterialAsync(List<CallMaterialInput> input) |
| | | public async Task<List<CallMaterialOutput>> CallMaterialAsync(List<CallMaterialInput> input) |
| | | { |
| | | await _wmsOutStockAppService.CallMaterialAsync(input); |
| | | return await _wmsOutStockAppService.CallMaterialAsync(input); |
| | | } |
| | | } |
| | | } |