| | |
| | | import com.core.common.Cools; |
| | | import com.core.common.R; |
| | | import com.core.exception.CoolException; |
| | | import com.zy.asrs.entity.AcQuantity; |
| | | import com.zy.asrs.entity.LocMast; |
| | | import com.zy.asrs.entity.OrderDetl; |
| | | import com.zy.asrs.entity.param.*; |
| | |
| | | * |
| | | */ |
| | | @PostMapping("/order/AcQuantity/default/v1") |
| | | public synchronized R loadQuantity(@RequestParam String orderNo){ |
| | | List<OrderDetl> OrderDetlList; |
| | | if(orderNo != null){ |
| | | OrderDetlList = orderDetlService.loadQuantity(orderNo); |
| | | public synchronized R loadQuantity(@RequestBody AcQuantity param){ |
| | | List<AcQuantity> OrderDetlList; |
| | | if(param.getOrderNo() != null){ |
| | | OrderDetlList = orderDetlService.loadQuantity(param.getOrderNo()); |
| | | }else{ |
| | | return R.error("单据编号[orderNo]不能为空"); |
| | | } |