eason.qian 7 years ago
parent b1bb48e5fe
commit c04d6d93c4

@ -369,13 +369,13 @@ public class PartnerViewController {
clientManager.changeManualSettle(account.getIntValue("client_id"),manual_settle,account.getString("account_id"),1,"商户"+(manual_settle?"打开":"关闭")+"手动清算"); clientManager.changeManualSettle(account.getIntValue("client_id"),manual_settle,account.getString("account_id"),1,"商户"+(manual_settle?"打开":"关闭")+"手动清算");
} }
@PartnerMapping(value = "/checkContract", method = RequestMethod.GET) @PartnerMapping(value = "/checkContract", method = RequestMethod.GET,roles = {PartnerRole.ADMIN, PartnerRole.MANAGER})
@ResponseBody @ResponseBody
public JSONObject getCheckClientInfov2(@ModelAttribute(CommonConsts.PARTNER_STATUS) JSONObject account) { public JSONObject getCheckClientInfov2(@ModelAttribute(CommonConsts.PARTNER_STATUS) JSONObject account) {
return clientManager.getCheckClientInfo(account.getIntValue("client_id"),account.getString("account_id"),"PC"); return clientManager.getCheckClientInfo(account.getIntValue("client_id"),account.getString("account_id"),"PC");
} }
@PartnerMapping(value = "/agree/confirm", method = RequestMethod.POST,roles = PartnerRole.ADMIN) @PartnerMapping(value = "/agree/confirm", method = RequestMethod.POST,roles = {PartnerRole.ADMIN, PartnerRole.MANAGER})
@ResponseBody @ResponseBody
public void confirmSourceAgreeFile(@ModelAttribute(CommonConsts.PARTNER_STATUS) JSONObject account) { public void confirmSourceAgreeFile(@ModelAttribute(CommonConsts.PARTNER_STATUS) JSONObject account) {
clientContractService.confirmSourceAgreement(account.getIntValue("client_id"),account.getString("account_id"),"PC"); clientContractService.confirmSourceAgreement(account.getIntValue("client_id"),account.getString("account_id"),"PC");

@ -131,7 +131,7 @@ define(['angular', 'angularSanitize', 'angularAnimate', 'angularMessages', 'uiRo
}); });
}; };
// $scope.getAgStatus(); $scope.getAgStatus();
$scope.refundNotice = {counts: 0}; $scope.refundNotice = {counts: 0};
$scope.openRefundNotice = false; $scope.openRefundNotice = false;
$scope.showRefundNotice = function () { $scope.showRefundNotice = function () {

Loading…
Cancel
Save