|
|
|
|
@ -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") |
|
|
|
|
|