|
|
|
@ -408,8 +408,9 @@ public class RetailAppController {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@RequestMapping(value = "/client/manual_settle", method = RequestMethod.PUT)
|
|
|
|
|
public void confirmSourceAgreeFile(@ModelAttribute(CommonConsts.RETAIL_DEVICE) JSONObject device,@RequestParam boolean manual_settle) {
|
|
|
|
|
retailAppService.changeManualSettle(device,manual_settle);
|
|
|
|
|
@RequestBody
|
|
|
|
|
public void confirmSourceAgreeFile(@ModelAttribute(CommonConsts.RETAIL_DEVICE) JSONObject device,@RequestBody JSONObject data) {
|
|
|
|
|
retailAppService.changeManualSettle(device,data.getBoolean("manual_settle"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|