| | |
| | | [HttpPost("SplitPalletConfirm"), AllowAnonymous] |
| | | public async Task<WebResponseContent> SplitPalletConfirm([FromBody] SplitPalletConfirmRequestDto dto) |
| | | { |
| | | return await Service.SplitPalletConfirmAsync(dto.PalletCode); |
| | | return await Service.SplitPalletConfirmAsync(dto.PalletCode, dto.DeviceName); |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | [HttpPost("GroupPalletConfirm"), AllowAnonymous] |
| | | public async Task<WebResponseContent> GroupPalletConfirm([FromBody] GroupPalletConfirmRequestDto dto) |
| | | { |
| | | return await Service.GroupPalletConfirmAsync(dto.PalletCode); |
| | | return await Service.GroupPalletConfirmAsync(dto.PalletCode, dto.DeviceName); |
| | | } |
| | | } |
| | | } |