|
@@ -116,13 +116,14 @@ public class MainChartController {
|
116
|
116
|
@ApiImplicitParams({
|
117
|
117
|
@ApiImplicitParam(name = "X-AUTH-TOKEN", value = "CONN-KEY", required = true, dataType = "String", paramType = "header"),
|
118
|
118
|
@ApiImplicitParam(name = "brandId", value = "브랜드아이디", required = true, dataType = "String", paramType = "query"),
|
119
|
|
- @ApiImplicitParam(name = "storeId", value = "매장아이디", required = true, dataType = "String", paramType = "query")
|
|
119
|
+ @ApiImplicitParam(name = "storeId", value = "매장아이디", required = true, dataType = "String", paramType = "query"),
|
|
120
|
+ @ApiImplicitParam(name = "spplyId", value = "공급사아이디", required = true, dataType = "String", paramType = "query")
|
120
|
121
|
})
|
121
|
122
|
@ApiOperation(value = "정산 차트")
|
122
|
123
|
@GetMapping("/stl-chart")
|
123
|
|
- public ResponseEntity<ChartResponse> stl_chart(@RequestParam(value = "brandId") String brandId,
|
124
|
|
- @RequestParam(value = "storeId") String storeId) throws Exception {
|
125
|
|
- return ResponseEntity.ok(mainChartService.selectStlChart(brandId, storeId));
|
|
124
|
+ public ResponseEntity<ChartResponse> stl_chart(@RequestParam(value = "brandId") String brandId, @RequestParam(value = "storeId") String storeId,
|
|
125
|
+ @RequestParam(value = "spplyId") String spplyId) throws Exception {
|
|
126
|
+ return ResponseEntity.ok(mainChartService.selectStlChart(brandId, storeId, spplyId));
|
126
|
127
|
}
|
127
|
128
|
|
128
|
129
|
/**
|