| | |
| | | |
| | | /***进入模版管理可以修改模版***/ |
| | | |
| | | //ScanInDepotSectionsName |
| | | [HttpPost("ScanInDepotSectionsName")] |
| | | public ResponseResult ScanInDepotSectionsName(WarehouseQuery query) |
| | | { |
| | | try |
| | | { |
| | | dynamic resultInfos = new ExpandoObject(); |
| | | resultInfos.tbBillList = m.ScanInDepotSectionsName(query); |
| | | return new ResponseResult |
| | | { |
| | | status = 0, |
| | | message = "OK", |
| | | data = resultInfos |
| | | }; |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | return ResponseResult.ResponseError(ex); |
| | | } |
| | | } |
| | | |
| | | //ScanEditBarcode |
| | | [HttpPost("ScanEditBarcode")] |
| | | public ResponseResult ScanEditBarcode(WarehouseQuery query) |
| | | { |
| | | try |
| | | { |
| | | dynamic resultInfos = new ExpandoObject(); |
| | | resultInfos.tbBillList = m.ScanEditBarcode(query); |
| | | return new ResponseResult |
| | | { |
| | | status = 0, |
| | | message = "OK", |
| | | data = resultInfos |
| | | }; |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | return ResponseResult.ResponseError(ex); |
| | | } |
| | | } |
| | | |
| | | //GetSectionName |
| | | [HttpPost("GetSectionName")] |
| | | public ResponseResult GetSectionName(WarehouseQuery query) |