Search in sources :

Example 1 with AttributeDefinition

use of org.kuali.kfs.krad.datadictionary.AttributeDefinition in project cu-kfs by CU-CommunityApps.

the class PendingTransactionServiceImpl method populatePaymentGeneralLedgerPendingEntry.

/**
 * Populates and stores a new GLPE for each account detail in the payment group.
 *
 * @param paymentGroup payment group to generate entries for
 * @param achFdocTypeCode doc type for ach disbursements
 * @param checkFdocTypeCod doc type for check disbursements
 * @param reversal boolean indicating if this is a reversal
 */
protected void populatePaymentGeneralLedgerPendingEntry(PaymentGroup paymentGroup, String achFdocTypeCode, String checkFdocTypeCod, boolean reversal) {
    List<PaymentAccountDetail> accountListings = new ArrayList<PaymentAccountDetail>();
    for (PaymentDetail paymentDetail : paymentGroup.getPaymentDetails()) {
        accountListings.addAll(paymentDetail.getAccountDetail());
    }
    BusinessObjectEntry businessObjectEntry = dataDictionaryService.getDataDictionary().getBusinessObjectEntry(PaymentDetail.class.getName());
    AttributeDefinition attributeDefinition = businessObjectEntry.getAttributeDefinition("paymentGroup.payeeName");
    AttributeSecurity originalPayeeNameAttributeSecurity = attributeDefinition.getAttributeSecurity();
    String maskLiteral = ((MaskFormatterLiteral) originalPayeeNameAttributeSecurity.getMaskFormatter()).getLiteral();
    GeneralLedgerPendingEntrySequenceHelper sequenceHelper = new GeneralLedgerPendingEntrySequenceHelper();
    for (PaymentAccountDetail paymentAccountDetail : accountListings) {
        GlPendingTransaction glPendingTransaction = new GlPendingTransaction();
        glPendingTransaction.setSequenceNbr(new KualiInteger(sequenceHelper.getSequenceCounter()));
        if (StringUtils.isNotBlank(paymentAccountDetail.getPaymentDetail().getFinancialSystemOriginCode()) && StringUtils.isNotBlank(paymentAccountDetail.getPaymentDetail().getFinancialDocumentTypeCode())) {
            glPendingTransaction.setFdocRefTypCd(paymentAccountDetail.getPaymentDetail().getFinancialDocumentTypeCode());
            glPendingTransaction.setFsRefOriginCd(paymentAccountDetail.getPaymentDetail().getFinancialSystemOriginCode());
        } else {
            glPendingTransaction.setFdocRefTypCd(PdpConstants.PDP_FDOC_TYPE_CODE);
            glPendingTransaction.setFsRefOriginCd(PdpConstants.PDP_FDOC_ORIGIN_CODE);
        }
        glPendingTransaction.setFinancialBalanceTypeCode(KFSConstants.BALANCE_TYPE_ACTUAL);
        Date transactionTimestamp = new Date(dateTimeService.getCurrentDate().getTime());
        glPendingTransaction.setTransactionDt(transactionTimestamp);
        AccountingPeriod fiscalPeriod = accountingPeriodService.getByDate(new java.sql.Date(transactionTimestamp.getTime()));
        glPendingTransaction.setUniversityFiscalYear(fiscalPeriod.getUniversityFiscalYear());
        glPendingTransaction.setUnivFiscalPrdCd(fiscalPeriod.getUniversityFiscalPeriodCode());
        glPendingTransaction.setAccountNumber(paymentAccountDetail.getAccountNbr());
        glPendingTransaction.setSubAccountNumber(paymentAccountDetail.getSubAccountNbr());
        glPendingTransaction.setChartOfAccountsCode(paymentAccountDetail.getFinChartCode());
        if (paymentGroup.getDisbursementType().getCode().equals(PdpConstants.DisbursementTypeCodes.ACH)) {
            glPendingTransaction.setFinancialDocumentTypeCode(achFdocTypeCode);
        } else if (paymentGroup.getDisbursementType().getCode().equals(PdpConstants.DisbursementTypeCodes.CHECK)) {
            glPendingTransaction.setFinancialDocumentTypeCode(checkFdocTypeCod);
        }
        glPendingTransaction.setFsOriginCd(PdpConstants.PDP_FDOC_ORIGIN_CODE);
        glPendingTransaction.setFdocNbr(paymentGroup.getDisbursementNbr().toString());
        Boolean relieveLiabilities = paymentGroup.getBatch().getCustomerProfile().getRelieveLiabilities();
        if ((relieveLiabilities != null) && (relieveLiabilities.booleanValue()) && paymentAccountDetail.getPaymentDetail().getFinancialDocumentTypeCode() != null) {
            OffsetDefinition offsetDefinition = SpringContext.getBean(OffsetDefinitionService.class).getByPrimaryId(glPendingTransaction.getUniversityFiscalYear(), glPendingTransaction.getChartOfAccountsCode(), paymentAccountDetail.getPaymentDetail().getFinancialDocumentTypeCode(), glPendingTransaction.getFinancialBalanceTypeCode());
            glPendingTransaction.setFinancialObjectCode(offsetDefinition != null ? offsetDefinition.getFinancialObjectCode() : paymentAccountDetail.getFinObjectCode());
            glPendingTransaction.setFinancialSubObjectCode(KFSConstants.getDashFinancialSubObjectCode());
        } else {
            glPendingTransaction.setFinancialObjectCode(paymentAccountDetail.getFinObjectCode());
            glPendingTransaction.setFinancialSubObjectCode(paymentAccountDetail.getFinSubObjectCode());
        }
        glPendingTransaction.setProjectCd(paymentAccountDetail.getProjectCode());
        glPendingTransaction.setDebitCrdtCd(pdpUtilService.isDebit(paymentAccountDetail, reversal) ? KFSConstants.GL_DEBIT_CODE : KFSConstants.GL_CREDIT_CODE);
        glPendingTransaction.setAmount(paymentAccountDetail.getAccountNetAmount().abs());
        // Changes for Research Participant Upload
        String trnDesc = StringUtils.EMPTY;
        CustomerProfile customerProfile = paymentGroup.getBatch().getCustomerProfile();
        if (researchParticipantPaymentValidationService.isResearchParticipantPayment(customerProfile)) {
            trnDesc = maskLiteral;
        } else {
            String payeeName = paymentGroup.getPayeeName();
            if (StringUtils.isNotBlank(payeeName)) {
                trnDesc = payeeName.length() > 40 ? payeeName.substring(0, 40) : StringUtils.rightPad(payeeName, 40);
            }
            if (reversal) {
                String poNbr = paymentAccountDetail.getPaymentDetail().getPurchaseOrderNbr();
                if (StringUtils.isNotBlank(poNbr)) {
                    trnDesc += " " + (poNbr.length() > 9 ? poNbr.substring(0, 9) : StringUtils.rightPad(poNbr, 9));
                }
                String invoiceNbr = paymentAccountDetail.getPaymentDetail().getInvoiceNbr();
                if (StringUtils.isNotBlank(invoiceNbr)) {
                    trnDesc += " " + (invoiceNbr.length() > 14 ? invoiceNbr.substring(0, 14) : StringUtils.rightPad(invoiceNbr, 14));
                }
                if (trnDesc.length() > 40) {
                    trnDesc = trnDesc.substring(0, 40);
                }
            }
        }
        glPendingTransaction.setDescription(trnDesc);
        glPendingTransaction.setOrgDocNbr(paymentAccountDetail.getPaymentDetail().getOrganizationDocNbr());
        glPendingTransaction.setOrgReferenceId(paymentAccountDetail.getOrgReferenceId());
        glPendingTransaction.setFdocRefNbr(paymentAccountDetail.getPaymentDetail().getCustPaymentDocNbr());
        // update the offset account if necessary
        SpringContext.getBean(FlexibleOffsetAccountService.class).updateOffset(glPendingTransaction);
        this.businessObjectService.save(glPendingTransaction);
        sequenceHelper.increment();
        if (bankService.isBankSpecificationEnabled()) {
            this.populateBankOffsetEntry(paymentGroup, glPendingTransaction, sequenceHelper);
        }
    }
}
Also used : GlPendingTransaction(org.kuali.kfs.pdp.businessobject.GlPendingTransaction) KualiInteger(org.kuali.rice.core.api.util.type.KualiInteger) AccountingPeriod(org.kuali.kfs.coa.businessobject.AccountingPeriod) ArrayList(java.util.ArrayList) AttributeDefinition(org.kuali.kfs.krad.datadictionary.AttributeDefinition) CustomerProfile(org.kuali.kfs.pdp.businessobject.CustomerProfile) GeneralLedgerPendingEntrySequenceHelper(org.kuali.kfs.sys.businessobject.GeneralLedgerPendingEntrySequenceHelper) Date(java.sql.Date) Date(java.sql.Date) PaymentDetail(org.kuali.kfs.pdp.businessobject.PaymentDetail) BusinessObjectEntry(org.kuali.kfs.krad.datadictionary.BusinessObjectEntry) FlexibleOffsetAccountService(org.kuali.kfs.sys.service.FlexibleOffsetAccountService) OffsetDefinition(org.kuali.kfs.coa.businessobject.OffsetDefinition) OffsetDefinitionService(org.kuali.kfs.coa.service.OffsetDefinitionService) AttributeSecurity(org.kuali.kfs.krad.datadictionary.AttributeSecurity) PaymentAccountDetail(org.kuali.kfs.pdp.businessobject.PaymentAccountDetail) MaskFormatterLiteral(org.kuali.kfs.krad.datadictionary.mask.MaskFormatterLiteral)

Example 2 with AttributeDefinition

use of org.kuali.kfs.krad.datadictionary.AttributeDefinition in project cu-kfs by CU-CommunityApps.

the class BatchFeedHelperServiceImpl method performForceUppercase.

/**
 * @see com.rsmart.kuali.kfs.sys.batch.service.BatchFeedHelperService#performForceUppercase(java.lang.String, java.lang.Object)
 */
public void performForceUppercase(String entryName, Object businessObject) {
    DataDictionary dataDictionary = dataDictionaryService.getDataDictionary();
    DataDictionaryEntry entry = dataDictionary.getDictionaryObjectEntry(entryName);
    if (entry == null) {
        return;
    }
    List<AttributeDefinition> attributes = ((DataDictionaryEntryBase) entry).getAttributes();
    for (AttributeDefinition attribute : attributes) {
        try {
            if (!attribute.getForceUppercase() || !PropertyUtils.isWriteable(businessObject, attribute.getName())) {
                continue;
            }
            Object currentValue = ObjectUtils.getPropertyValue(businessObject, attribute.getName());
            if (currentValue != null && String.class.isAssignableFrom(currentValue.getClass())) {
                try {
                    ObjectUtils.setObjectProperty(businessObject, attribute.getName(), currentValue.toString().toUpperCase());
                } catch (Exception e) {
                    LOG.error("cannot uppercase property " + attribute.getName() + " in bo class " + entryName, e);
                    throw new RuntimeException("cannot uppercase property " + attribute.getName() + " in bo class " + entryName, e);
                }
            }
        } catch (Exception e) {
            LOG.warn("cannot uppercase property: " + attribute.getName() + "; " + e.getMessage());
            continue;
        }
    }
}
Also used : DataDictionaryEntry(org.kuali.kfs.krad.datadictionary.DataDictionaryEntry) DataDictionaryEntryBase(org.kuali.kfs.krad.datadictionary.DataDictionaryEntryBase) AttributeDefinition(org.kuali.kfs.krad.datadictionary.AttributeDefinition) PersistableBusinessObject(org.kuali.kfs.krad.bo.PersistableBusinessObject) DataDictionary(org.kuali.kfs.krad.datadictionary.DataDictionary) IOException(java.io.IOException) FileNotFoundException(java.io.FileNotFoundException) ParseException(org.kuali.kfs.sys.exception.ParseException)

Example 3 with AttributeDefinition

use of org.kuali.kfs.krad.datadictionary.AttributeDefinition in project cu-kfs by CU-CommunityApps.

the class WebUtils method getPartiallyMaskedValue.

public static String getPartiallyMaskedValue(String className, String fieldName, Object formObject, String propertyName) {
    String displayMaskValue = null;
    Object propertyValue = ObjectUtils.getPropertyValue(formObject, propertyName);
    DataDictionaryEntryBase entry = (DataDictionaryEntryBase) KRADServiceLocatorWeb.getDataDictionaryService().getDataDictionary().getDictionaryObjectEntry(className);
    AttributeDefinition a = entry.getAttributeDefinition(fieldName);
    AttributeSecurity attributeSecurity = a.getAttributeSecurity();
    if (attributeSecurity != null && attributeSecurity.isPartialMask()) {
        MaskFormatter partialMaskFormatter = attributeSecurity.getPartialMaskFormatter();
        displayMaskValue = partialMaskFormatter.maskValue(propertyValue);
    }
    return displayMaskValue;
}
Also used : DataDictionaryEntryBase(org.kuali.kfs.krad.datadictionary.DataDictionaryEntryBase) AttributeDefinition(org.kuali.kfs.krad.datadictionary.AttributeDefinition) MaskFormatter(org.kuali.kfs.krad.datadictionary.mask.MaskFormatter) AttributeSecurity(org.kuali.kfs.krad.datadictionary.AttributeSecurity)

Example 4 with AttributeDefinition

use of org.kuali.kfs.krad.datadictionary.AttributeDefinition in project cu-kfs by CU-CommunityApps.

the class PayeeACHAccountExtractServiceImplTest method createAttributeDefinitionWithValuesFinder.

private AttributeDefinition createAttributeDefinitionWithValuesFinder(String valuesFinderClass, boolean includeKeyInLabel) {
    // We only care about the values finder and include-key-in-label flag, not about any other setup like property name and max length.
    AttributeDefinition attrDefinition = new AttributeDefinition();
    SelectControlDefinition controlDefinition = new SelectControlDefinition();
    controlDefinition.setValuesFinderClass(valuesFinderClass);
    controlDefinition.setIncludeKeyInLabel(Boolean.valueOf(includeKeyInLabel));
    attrDefinition.setControl(controlDefinition);
    return attrDefinition;
}
Also used : AttributeDefinition(org.kuali.kfs.krad.datadictionary.AttributeDefinition) SelectControlDefinition(org.kuali.kfs.kns.datadictionary.control.SelectControlDefinition)

Example 5 with AttributeDefinition

use of org.kuali.kfs.krad.datadictionary.AttributeDefinition in project cu-kfs by CU-CommunityApps.

the class WebUtils method getFullyMaskedValue.

public static String getFullyMaskedValue(String className, String fieldName, Object formObject, String propertyName) {
    String displayMaskValue = null;
    Object propertyValue = ObjectUtils.getPropertyValue(formObject, propertyName);
    DataDictionaryEntryBase entry = (DataDictionaryEntryBase) KRADServiceLocatorWeb.getDataDictionaryService().getDataDictionary().getDictionaryObjectEntry(className);
    AttributeDefinition a = entry.getAttributeDefinition(fieldName);
    AttributeSecurity attributeSecurity = a.getAttributeSecurity();
    if (attributeSecurity != null && attributeSecurity.isMask()) {
        MaskFormatter maskFormatter = attributeSecurity.getMaskFormatter();
        displayMaskValue = maskFormatter.maskValue(propertyValue);
    }
    return displayMaskValue;
}
Also used : DataDictionaryEntryBase(org.kuali.kfs.krad.datadictionary.DataDictionaryEntryBase) AttributeDefinition(org.kuali.kfs.krad.datadictionary.AttributeDefinition) MaskFormatter(org.kuali.kfs.krad.datadictionary.mask.MaskFormatter) AttributeSecurity(org.kuali.kfs.krad.datadictionary.AttributeSecurity)

Aggregations

AttributeDefinition (org.kuali.kfs.krad.datadictionary.AttributeDefinition)8 AttributeSecurity (org.kuali.kfs.krad.datadictionary.AttributeSecurity)6 DataDictionaryEntryBase (org.kuali.kfs.krad.datadictionary.DataDictionaryEntryBase)3 MaskFormatterLiteral (org.kuali.kfs.krad.datadictionary.mask.MaskFormatterLiteral)3 Date (java.sql.Date)2 ArrayList (java.util.ArrayList)2 AccountingPeriod (org.kuali.kfs.coa.businessobject.AccountingPeriod)2 OffsetDefinition (org.kuali.kfs.coa.businessobject.OffsetDefinition)2 OffsetDefinitionService (org.kuali.kfs.coa.service.OffsetDefinitionService)2 BusinessObjectEntry (org.kuali.kfs.krad.datadictionary.BusinessObjectEntry)2 MaskFormatter (org.kuali.kfs.krad.datadictionary.mask.MaskFormatter)2 CustomerProfile (org.kuali.kfs.pdp.businessobject.CustomerProfile)2 GlPendingTransaction (org.kuali.kfs.pdp.businessobject.GlPendingTransaction)2 PaymentAccountDetail (org.kuali.kfs.pdp.businessobject.PaymentAccountDetail)2 PaymentDetail (org.kuali.kfs.pdp.businessobject.PaymentDetail)2 GeneralLedgerPendingEntrySequenceHelper (org.kuali.kfs.sys.businessobject.GeneralLedgerPendingEntrySequenceHelper)2 FlexibleOffsetAccountService (org.kuali.kfs.sys.service.FlexibleOffsetAccountService)2 KualiInteger (org.kuali.rice.core.api.util.type.KualiInteger)2 FileNotFoundException (java.io.FileNotFoundException)1 IOException (java.io.IOException)1