001/*
002 * Copyright 2010 The Kuali Foundation.
003 * 
004 * Licensed under the Educational Community License, Version 1.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 * 
008 * http://www.opensource.org/licenses/ecl1.php
009 * 
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.ole.module.purap.document.validation.impl;
017
018import org.apache.commons.lang.StringUtils;
019import org.kuali.ole.module.purap.PurapKeyConstants;
020import org.kuali.ole.module.purap.businessobject.NegativePaymentRequestApprovalLimit;
021import org.kuali.ole.sys.OLEPropertyConstants;
022import org.kuali.rice.kns.document.MaintenanceDocument;
023import org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase;
024
025/**
026 * Business rules for the NegativePaymentRequestApprovalLimit maintenance document
027 */
028public class NegativePaymentRequestApprovalLimitRule extends MaintenanceDocumentRuleBase {
029
030    /**
031     * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase#processCustomApproveDocumentBusinessRules(org.kuali.rice.kns.document.MaintenanceDocument)
032     */
033    @Override
034    protected boolean processCustomApproveDocumentBusinessRules(MaintenanceDocument document) {
035        boolean result = super.processCustomApproveDocumentBusinessRules(document);
036        final NegativePaymentRequestApprovalLimit limit = (NegativePaymentRequestApprovalLimit) getNewBo();
037        result &= checkExclusiveOrganizationCodeAndAccountNumber(limit);
038        return result;
039    }
040
041    /**
042     * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase#processCustomRouteDocumentBusinessRules(org.kuali.rice.kns.document.MaintenanceDocument)
043     */
044    @Override
045    protected boolean processCustomRouteDocumentBusinessRules(MaintenanceDocument document) {
046        boolean result = super.processCustomRouteDocumentBusinessRules(document);
047        final NegativePaymentRequestApprovalLimit limit = (NegativePaymentRequestApprovalLimit) getNewBo();
048        result &= checkExclusiveOrganizationCodeAndAccountNumber(limit);
049        return result;
050    }
051
052    /**
053     * Checks that organization code and account number aren't both specified on a new NegativePaymentRequestApprovalLimit
054     *
055     * @param limit the NegativePaymentRequestApprovalLimit to check
056     * @return true if the rule passed, false otherwise (with error message added)
057     */
058    protected boolean checkExclusiveOrganizationCodeAndAccountNumber(NegativePaymentRequestApprovalLimit limit) {
059        if (!StringUtils.isBlank(limit.getOrganizationCode()) && !StringUtils.isBlank(limit.getAccountNumber())) {
060            putFieldError(OLEPropertyConstants.ORGANIZATION_CODE, PurapKeyConstants.ERROR_NEGATIVE_PAYMENT_REQUEST_APPROVAL_LIMIT_ORG_AND_ACCOUNT_EXCLUSIVE, new String[]{});
061            putFieldError(OLEPropertyConstants.ACCOUNT_NUMBER, PurapKeyConstants.ERROR_NEGATIVE_PAYMENT_REQUEST_APPROVAL_LIMIT_ORG_AND_ACCOUNT_EXCLUSIVE, new String[]{});
062            return false;
063        }
064        return true;
065    }
066
067}