| | |
| | | using System; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | |
| | | |
| | | IStockInfo_HtyService StockInfo_HtyService { get; } |
| | | |
| | | Task<bool> GroupPallet(StockDTO stock); |
| | | Task<bool> GroupPalletAsync(StockDTO stock); |
| | | |
| | | Task<bool> ChangePallet(StockDTO stock); |
| | | Task<bool> ChangePalletAsync(StockDTO stock); |
| | | |
| | | Task<bool> SplitPallet(StockDTO stock); |
| | | Task<bool> SplitPalletAsync(StockDTO stock); |
| | | |
| | | Task<bool> UpdateStockInfo(StockInfoDTO stock); |
| | | /// <summary> |
| | | /// 堆垛机换盘后更新库存信息(清空库位信息) |
| | | /// </summary> |
| | | /// <param name="stock"></param> |
| | | /// <returns></returns> |
| | | Task<WebResponseContent> UpdateStockInfoAsync(StockInfoDTO stock); |
| | | |
| | | } |
| | | } |