生产管理修改

liweidong
李涛 3 weeks ago
parent 2017954564
commit 3ec3e53fcb
  1. 4
      blade-service/blade-desk/src/main/java/org/springblade/desk/produce/controller/ProduceMonitorController.java

@ -46,8 +46,8 @@ public class ProduceMonitorController extends BladeController {
@GetMapping("/printWoLabel")
@ApiOperationSupport(order = 3)
@Operation(summary = "打印标签")
public Map<String, Object> printWoLabel(String woIds, Short quantity) {
return workOrderService.printWoLabel(Func.toLongList(woIds), quantity);
public Map<String, Object> printWoLabel(String woIds, String quantity) {
return workOrderService.printWoLabel(Func.toLongList(woIds), Short.valueOf(quantity));
}
@PostMapping("/generateWorkOrder")

Loading…
Cancel
Save