| | |
| | | { |
| | | private readonly MesInvItemMovesManager m = new(); |
| | | |
| | | //ScanMoveBarcode |
| | | [HttpPost("ScanMoveBarcode")] |
| | | public ResponseResult ScanMoveBarcode(WarehouseQuery query) |
| | | { |
| | | try |
| | | { |
| | | dynamic resultInfos = new ExpandoObject(); |
| | | resultInfos.tbBillList = m.ScanMoveBarcode(query); |
| | | return new ResponseResult |
| | | { |
| | | status = 0, |
| | | message = "OK", |
| | | data = resultInfos |
| | | }; |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | return ResponseResult.ResponseError(ex); |
| | | } |
| | | } |
| | | |
| | | // GetBillNo |
| | | [HttpPost("GetBillNo")] |
| | | public ResponseResult GetBillNo(WarehouseQuery query) |
| | |
| | | return ResponseResult.ResponseError(ex); |
| | | } |
| | | } |
| | | |
| | | |
| | | //ScanOutShowDb |
| | | [HttpPost("ScanOutShowDb")] |
| | | public ResponseResult ScanOutShowDb(WarehouseQuery query) |