use of org.kuali.kfs.module.purap.document.PaymentRequestDocument in project cu-kfs by CU-CommunityApps.
the class CuPaymentRequestDocumentPreRules method doPrompts.
@Override
public boolean doPrompts(Document document) {
boolean preRulesOK = true;
PaymentRequestDocument preq = (PaymentRequestDocument) document;
preRulesOK &= checkWireTransferTabState(preq);
preRulesOK &= super.doPrompts(document);
return preRulesOK;
}
Aggregations