|
|
|
@ -534,9 +534,9 @@ public class PartnerManageController {
|
|
|
|
|
clientContractService.confirmSourceAgreement(account.getIntValue("client_id"),account.getString("account_id"),"PC");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ManagerMapping(value = "/{clientMoniker}/skip_contract", method = RequestMethod.PUT, role = {ManagerRole.ADMIN, ManagerRole.OPERATOR, ManagerRole.FINANCIAL_STAFF})
|
|
|
|
|
public void skipContract(@PathVariable String clientMoniker, @RequestBody JSONObject skip_clearing) {
|
|
|
|
|
clientManager.setSkipClearing(clientMoniker, skip_clearing.getBooleanValue("skip_contract"));
|
|
|
|
|
@ManagerMapping(value = "/{clientMoniker}/skip_contract", method = RequestMethod.PUT, role = {ManagerRole.ADMIN, ManagerRole.FINANCIAL_STAFF})
|
|
|
|
|
public void skipContract(@PathVariable String clientMoniker, @RequestBody JSONObject skip_contract) {
|
|
|
|
|
clientManager.setSkipContract(clientMoniker, skip_contract.getBooleanValue("skip_contract"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|