|
|
|
@@ -226,12 +226,21 @@ fun recordSecondScanIssue( |
|
|
|
fun printStockInLabel(@ModelAttribute request: PrintFGStockInLabelRequest){ |
|
|
|
jobOrderService.printFGStockInLabel(request) |
|
|
|
} |
|
|
|
|
|
|
|
/* |
|
|
|
|
|
|
|
@GetMapping("/completed-job-order-pick-orders-only") |
|
|
|
fun getCompletedJobOrderPickOrders(): List<Map<String, Any?>> { |
|
|
|
return joPickOrderService.getCompletedJobOrderPickOrders() |
|
|
|
} |
|
|
|
*/ |
|
|
|
@GetMapping("/completed-job-order-pick-orders-only") |
|
|
|
fun getCompletedJobOrderPickOrders( |
|
|
|
@RequestParam(name = "date", required = false) |
|
|
|
@org.springframework.format.annotation.DateTimeFormat(iso = org.springframework.format.annotation.DateTimeFormat.ISO.DATE) |
|
|
|
completedDate: LocalDate?, |
|
|
|
): List<Map<String, Any?>> { |
|
|
|
return joPickOrderService.getCompletedJobOrderPickOrders(completedDate) |
|
|
|
} |
|
|
|
@GetMapping("/joForPrintQrCode/{date}") |
|
|
|
fun getJoForPrintQrCode(@PathVariable date: String): List<JobOrderListForPrintQrCodeResponse> { |
|
|
|
return joPickOrderService.getJobOrderListForPrintQrCode(LocalDate.parse(date)) |
|
|
|
|