|
|
@@ -23,7 +23,7 @@ public class B2BApCheckController {
|
|
|
* @param sorting
|
|
|
* @return
|
|
|
*/
|
|
|
- @GetMapping("/apCheck/customer")
|
|
|
+ @GetMapping("/customer")
|
|
|
public Result custApcheck(int count, int page, String searchFilter, String sorting){
|
|
|
return Result.success(apCheckService.getCustApcheck(count, page, searchFilter, sorting));
|
|
|
}
|
|
|
@@ -40,7 +40,7 @@ public class B2BApCheckController {
|
|
|
* @param prodSpec
|
|
|
* @return
|
|
|
*/
|
|
|
- @GetMapping("/apCheck/getAllByKeywords")
|
|
|
+ @GetMapping("/getAllByKeywords")
|
|
|
public Result getAllByKeywords(Long fromDate, Long endDate, Long customerUU, Double taxRate, String factory,
|
|
|
String prodTitle, String suuorname, String prodSpec){
|
|
|
return Result.success(apCheckService.getAllByKeywords(fromDate, endDate, customerUU, taxRate, factory, prodTitle, suuorname, prodSpec));
|
|
|
@@ -51,7 +51,7 @@ public class B2BApCheckController {
|
|
|
* @param saveOperationData
|
|
|
* @return
|
|
|
*/
|
|
|
- @PostMapping("/apCheck/operation/save")
|
|
|
+ @PostMapping("/operation/save")
|
|
|
public Result operationSave(@RequestBody SaveOperationData saveOperationData){
|
|
|
return Result.success(apCheckService.operationSave(saveOperationData));
|
|
|
}
|
|
|
@@ -64,7 +64,7 @@ public class B2BApCheckController {
|
|
|
* @param sorting
|
|
|
* @return
|
|
|
*/
|
|
|
- @GetMapping("/apCheck/info/list")
|
|
|
+ @GetMapping("/info/list")
|
|
|
public Result apCheckList(int count, int page, String searchFilter, String sorting){
|
|
|
return Result.success(apCheckService.apCheckList(count, page, searchFilter, sorting));
|
|
|
}
|
|
|
@@ -74,7 +74,7 @@ public class B2BApCheckController {
|
|
|
* @param id
|
|
|
* @return
|
|
|
*/
|
|
|
- @GetMapping("/apCheck/{id}/info")
|
|
|
+ @GetMapping("/{id}/info")
|
|
|
public Result apCheckInfo(@PathVariable("id") Long id){
|
|
|
return Result.success(apCheckService.apCheckInfo(id));
|
|
|
}
|