Include additional parameters upon calling CM's Process Payment

Issue No: AP-3530
Created 4/20/2017 2:41:20 PM
Type Feature
Priority Minor
Status Closed
Resolution Fixed
Fixed Version 17.1
Description This is inline with the performance enhancement of Bank Accounts loading. Since Bank Account record is already loaded on your screen we can use that to pass the additional parameters so the Process Payment will just display that.   Note: This is applicable only on the screen that calls Process Payment and not from the menu.   Here is the sample calling of Process Payment.   {noformat}bankAccountRecord = cboBankAccount.getSelectedRecord(); var printChecks = Ext.create('CashManagement.common.ChequePrintManager',\{ intTransactionType : transactionType, intBankAccountId : bankId, // (Required) The bank account id to generate the check. strBankAccountNo : bankAccountRecord.get('strBankAccountNo'), strBankName : bankAccountRecord.get('strBankName'), intNextCheckNumber : bankAccountRecord.get('intNextCheckNo'), strTransactionId : transactionId, // (Optional) Show only the transaction to print the checks. strBatchId : null \});{noformat}