| | |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 外仓扫码入库 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpPost("WcsmBar")] |
| | | public ResponseResult WcsmBar(WarehouseQuery entity) |
| | | { |
| | | try |
| | | { |
| | | dynamic resultInfos = new ExpandoObject(); |
| | | resultInfos.tbBillList = m.WcsmBar(entity); |
| | | return new ResponseResult |
| | | { |
| | | status = 0, |
| | | message = "OK", |
| | | data = resultInfos |
| | | }; |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | return ResponseResult.ResponseError(ex); |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 外仓扫码详情 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpPost("WcsmDetail")] |
| | | public ResponseResult WcsmDetail(WarehouseQuery entity) |
| | | { |
| | | try |
| | | { |
| | | dynamic resultInfos = new ExpandoObject(); |
| | | resultInfos.tbBillList = m.WcsmDetail(entity); |
| | | return new ResponseResult |
| | | { |
| | | status = 0, |
| | | message = "OK", |
| | | data = resultInfos |
| | | }; |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | return ResponseResult.ResponseError(ex); |
| | | } |
| | | } |
| | | |
| | | } |