diff options
author | mark <mark> | 2011-01-31 20:28:39 +0000 |
---|---|---|
committer | mark <mark> | 2011-01-31 20:28:39 +0000 |
commit | e0fb1463f48285cbab8fc464cbec16a6f880c4d8 (patch) | |
tree | 499142b82717e9e30e784fe9a5ccd6df3befa8aa /httemplate | |
parent | ca5c12e1fd88bea7f54072e634effec7bb96e890 (diff) |
fixed format option for TD EFT, RT#10545
Diffstat (limited to 'httemplate')
-rwxr-xr-x | httemplate/search/cust_pay_batch.cgi | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/httemplate/search/cust_pay_batch.cgi b/httemplate/search/cust_pay_batch.cgi index cb101d4db..6d628d39d 100755 --- a/httemplate/search/cust_pay_batch.cgi +++ b/httemplate/search/cust_pay_batch.cgi @@ -179,7 +179,15 @@ if ( $pay_batch ) { ). '<BR></TR>' ; - if ( $fixed ) { + if ( $fixed and $fixed eq 'td_eft1464' ) { + # special case, this one has two upload formats + $html_init .= qq!<TR>Format !. + qq!<SELECT NAME="format">!. + qq!<OPTION VALUE="td_eftack264">TD EFT Acknowledgement</OPTION>!. + qq!<OPTION VALUE="td_eftret80">TD EFT Returned Items</OPTION>!. + qq!</SELECT><BR></TR>!; + } + elsif ( $fixed ) { $html_init .= qq!<INPUT TYPE="hidden" NAME="format" VALUE="$fixed">!; } else { # should pull this from %import_info |