From: ivan Date: Wed, 31 Jan 2007 04:26:44 +0000 (+0000) Subject: minor UI work on one-time charges w/taxclasses X-Git-Tag: TRIXBOX_2_6~702 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=89cb729e71c400307f47eef8e9e0b295db2dfca0 minor UI work on one-time charges w/taxclasses --- diff --git a/httemplate/edit/quick-charge.html b/httemplate/edit/quick-charge.html index b30285c21..94682d0a6 100644 --- a/httemplate/edit/quick-charge.html +++ b/httemplate/edit/quick-charge.html @@ -19,7 +19,7 @@ function enable_quick_charge () { } function enable_quick_charge_desc () { - if ( document.QuickChargeForm.amount.value ) { + if ( document.QuickChargeForm.amount.value && document.QuickChargeForm.pkg.value ) { document.QuickChargeForm.submit.disabled = false; } else { document.QuickChargeForm.submit.disabled = true; @@ -27,7 +27,7 @@ function enable_quick_charge_desc () { } function enable_quick_charge_amount () { - if ( document.QuickChargeForm.pkg.value ) { + if ( document.QuickChargeForm.amount.value && document.QuickChargeForm.pkg.value ) { document.QuickChargeForm.submit.disabled = false; } else { document.QuickChargeForm.submit.disabled = true; @@ -78,22 +78,25 @@ function validate_quick_charge () {
- +
- + - +<% include('/elements/tr-select-taxclass.html') %> + + + + + % my $row = 0; % if ( $cgi->param('error') ) { % my $param = $cgi->Vars; @@ -113,7 +116,7 @@ function validate_quick_charge () {
Amount:Amount: - $ - - <% include('/elements/select-taxclass.html') %> + $
Description:
Optional additional description:

- +param('error') ? '' :' DISABLED' %>>
diff --git a/httemplate/elements/select-taxclass.html b/httemplate/elements/select-taxclass.html index 495572323..3c1558b72 100644 --- a/httemplate/elements/select-taxclass.html +++ b/httemplate/elements/select-taxclass.html @@ -1,40 +1,38 @@ -% -% my $conf = new FS::Conf; -% my $selected_taxclass = scalar(@_) ? shift : ''; -% % if ( $conf->exists('enable_taxclasses') ) { - -% } else { +% } else { + % } - +<%init> + +my( $selected_taxclass, %opt ) = @_; +my $conf = new FS::Conf; + +unless ( $opt{'taxclasses'} ) { + + my $sth = dbh->prepare('SELECT DISTINCT taxclass FROM cust_main_county') + or die dbh->errstr; + $sth->execute or die $sth->errstr; + my %taxclasses = map { $_->[0] => 1 } @{$sth->fetchall_arrayref}; + @{ $opt{'taxclasses'} } = grep $_, keys %taxclasses; + +} + diff --git a/httemplate/elements/tr-select-taxclass.html b/httemplate/elements/tr-select-taxclass.html new file mode 100644 index 000000000..424d5ad02 --- /dev/null +++ b/httemplate/elements/tr-select-taxclass.html @@ -0,0 +1,32 @@ +% if ( ! $conf->exists('enable_taxclasses') +% || scalar(@{ $opt{'taxclasses'} }) == 0 +% ) { + + + +% } else { + + + <% $opt{'label'} || 'Tax class: ' %> + + <% include( '/elements/select-taxclass.html', $taxclass, %opt ) %> + + + +% } +<%init> + +my( $taxclass, %opt ) = @_; +my $conf = new FS::Conf; + +unless ( $opt{'taxclasses'} ) { + + my $sth = dbh->prepare('SELECT DISTINCT taxclass FROM cust_main_county') + or die dbh->errstr; + $sth->execute or die $sth->errstr; + my %taxclasses = map { $_->[0] => 1 } @{$sth->fetchall_arrayref}; + @{ $opt{'taxclasses'} } = grep $_, keys %taxclasses; + +} + + diff --git a/httemplate/view/cust_main/packages.html b/httemplate/view/cust_main/packages.html index d8071e63a..9c58f13f0 100755 --- a/httemplate/view/cust_main/packages.html +++ b/httemplate/view/cust_main/packages.html @@ -16,7 +16,7 @@ % ) { % - <% popup_link('edit/quick-charge.html?custnum='. $cust_main->custnum, 'One-time charge', 'One-time charge', 684) %> + <% popup_link('edit/quick-charge.html?custnum='. $cust_main->custnum, 'One-time charge', 'One-time charge', 545) %>
% } % if ( $curuser->access_right('Bulk change customer packages') ) {