summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2015-08-25 21:46:01 -0500
committerJonathan Prykop <jonathan@freeside.biz>2015-08-25 23:18:52 -0500
commitd411726f4af13e1abf80c3c355827c1012e3004f (patch)
tree86ef14e1309c2d873a08dbda83c0db5a0ec23ad1
parentb5122b2d847a16d61fd5e6aa59561dbe69779146 (diff)
RT#18361: Delay package from billing until services are provisioned [bug fix to javascript]
-rw-r--r--httemplate/elements/tr-pkg_svc.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/httemplate/elements/tr-pkg_svc.html b/httemplate/elements/tr-pkg_svc.html
index 7ac67b7ec..de3f95a3a 100644
--- a/httemplate/elements/tr-pkg_svc.html
+++ b/httemplate/elements/tr-pkg_svc.html
@@ -114,6 +114,9 @@ function provision_hold_check () {
for (i = 0; i < provision_hold_td.length; i++) {
provision_hold_td[i].style.display = start_on_hold.checked ? '' : 'none';
}
+ for (i = 0; i < provision_hold_input.length; i++) {
+ provision_hold_input[i].disabled = start_on_hold.checked ? false : true;
+ }
}
}
function provision_hold_init () {