|
|
|
@ -130,6 +130,9 @@ public class RetailAppController {
|
|
|
|
|
@RequestMapping("/{client_id}/settlement_logs/{clearingDetailId}/analysis/{channel}")
|
|
|
|
|
public Map<String,JSONObject> channelAndDayOfAnalysis(@PathVariable int client_id, @PathVariable String clearingDetailId,
|
|
|
|
|
@PathVariable String channel,@ModelAttribute(CommonConsts.RETAIL_DEVICE) JSONObject device) {
|
|
|
|
|
if ("all".equals(channel)){
|
|
|
|
|
channel = "null";
|
|
|
|
|
}
|
|
|
|
|
return retailAppService.channelAndDayOfAnalysis(client_id, clearingDetailId,channel,device);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|