|
|
|
@ -22,6 +22,11 @@ public class ReportController {
|
|
|
|
|
@Autowired
|
|
|
|
|
public ReportService reportService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 接口日志表
|
|
|
|
|
* @param map
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@PostMapping("/findIntegrationLog")
|
|
|
|
|
public R findIntegrationLog(@RequestBody(required = false)Map<String, Object> map){
|
|
|
|
|
try{
|
|
|
|
@ -31,6 +36,11 @@ public class ReportController {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 零件加工报表
|
|
|
|
|
* @param map
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@PostMapping("/partsManufacturing")
|
|
|
|
|
public R partsManufacturing(@RequestBody(required = false)Map<String, Object> map){
|
|
|
|
|
try{
|
|
|
|
@ -40,6 +50,12 @@ public class ReportController {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 余料退回明细表
|
|
|
|
|
* @param item
|
|
|
|
|
* @param itemDescription
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/surplusReturnTable")
|
|
|
|
|
public R surplusReturnTable(String item,String itemDescription){
|
|
|
|
|
try{
|
|
|
|
|