quick payment entry: correctly enable "Allocate" checkbox
authorMark Wells <mark@freeside.biz>
Wed, 19 Jun 2013 08:49:54 +0000 (01:49 -0700)
committerMark Wells <mark@freeside.biz>
Wed, 19 Jun 2013 08:49:54 +0000 (01:49 -0700)
httemplate/misc/batch-cust_pay.html

index 0b2f1f1..04a402b 100644 (file)
@@ -25,7 +25,7 @@ function custnum_update_callback(rownum, prefix) {
   var custnum = document.getElementById('custnum'+rownum).value;
   // if there is a custnum and more than one open invoice, enable
   // (and check) the box
-  var show_applications = (custnum > 0 && num_open_invoices[rownum] > 1);
+  var show_applications = !(custnum > 0 && num_open_invoices[rownum] > 1);
   var enable_app_checkbox = document.getElementById('enable_app'+rownum);
   enable_app_checkbox.disabled = show_applications;