diff options
author | Mark Wells <mark@freeside.biz> | 2012-04-26 11:41:05 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2012-04-26 11:41:05 -0700 |
commit | 527b92c4f125282e267863cb102664da57f94ebd (patch) | |
tree | f3c983f22e8d8e90b50ccff6feb1a17bc162652e /httemplate/misc/batch-cust_pay.html | |
parent | 580dd345b7616365903b9fbedc162f77e5c8b91f (diff) |
allocate quick payment only when customer has multiple open invoices, #15861
Diffstat (limited to 'httemplate/misc/batch-cust_pay.html')
-rw-r--r-- | httemplate/misc/batch-cust_pay.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/misc/batch-cust_pay.html b/httemplate/misc/batch-cust_pay.html index 45459f14d..887b92489 100644 --- a/httemplate/misc/batch-cust_pay.html +++ b/httemplate/misc/batch-cust_pay.html @@ -23,7 +23,10 @@ function add_row_callback(rownum, prefix) { function custnum_update_callback(rownum, prefix) { var custnum = document.getElementById('custnum'+rownum).value; - document.getElementById('enable_app'+rownum).disabled = (custnum == 0); + document.getElementById('enable_app'+rownum).disabled = ( + custnum == 0 || + num_open_invoices[rownum] < 2 + ); % if ( $use_discounts ) { select_discount_term(rownum, prefix); % } |