[freeside-commits] branch master updated. dd0de30cf562e4e31359a9d9108fec974ecb4299
Jonathan Prykop
jonathan at 420.am
Tue Aug 25 19:46:29 PDT 2015
The branch, master has been updated
via dd0de30cf562e4e31359a9d9108fec974ecb4299 (commit)
from c13a7adf63cc830d092bbf4a8e9bda2aa3beee56 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit dd0de30cf562e4e31359a9d9108fec974ecb4299
Author: Jonathan Prykop <jonathan at freeside.biz>
Date: Tue Aug 25 21:46:01 2015 -0500
RT#18361: Delay package from billing until services are provisioned [bug fix to javascript]
diff --git a/httemplate/elements/tr-pkg_svc.html b/httemplate/elements/tr-pkg_svc.html
index 7ac67b7..de3f95a 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 () {
-----------------------------------------------------------------------
Summary of changes:
httemplate/elements/tr-pkg_svc.html | 3 +++
1 file changed, 3 insertions(+)
More information about the freeside-commits
mailing list