From dd65ba99bb9281571f19744154a3b03bcd3f01ab Mon Sep 17 00:00:00 2001 From: levinse Date: Mon, 30 May 2011 23:27:09 +0000 Subject: [PATCH] optional better visibility for invoicing email field, RT12944 --- FS/FS/Conf.pm | 7 +++++++ httemplate/edit/cust_main/billing.html | 2 ++ httemplate/edit/cust_main/contact.html | 13 +++++++++++++ httemplate/view/cust_main/billing.html | 2 ++ httemplate/view/cust_main/contacts.html | 10 ++++++++++ 5 files changed, 34 insertions(+) diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index d83ac2f98..66616a07e 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -4444,6 +4444,13 @@ and customer address. Include units.', 'description' => 'Show a link to the payment history report in the Reports menu. DO NOT ENABLE THIS.', 'type' => 'checkbox', }, + + { + 'key' => 'cust-email-high-visibility', + 'section' => 'UI', + 'description' => 'Move the invoicing e-mail address field to the top of the billing address section and highlight it.', + 'type' => 'checkbox', + }, { key => "apacheroot", section => "deprecated", description => "DEPRECATED", type => "text" }, { key => "apachemachine", section => "deprecated", description => "DEPRECATED", type => "text" }, diff --git a/httemplate/edit/cust_main/billing.html b/httemplate/edit/cust_main/billing.html index 39a0b70ed..60a03d621 100644 --- a/httemplate/edit/cust_main/billing.html +++ b/httemplate/edit/cust_main/billing.html @@ -441,12 +441,14 @@ % } +% unless ( $conf->exists('cust-email-high-visibility')) { <% $conf->exists('cust_main-require_invoicing_list_email') ? $r : '' %>Email address(es) +% } <% mt('Invoice terms') |h %> diff --git a/httemplate/edit/cust_main/contact.html b/httemplate/edit/cust_main/contact.html index 7adcde77f..a53c78905 100644 --- a/httemplate/edit/cust_main/contact.html +++ b/httemplate/edit/cust_main/contact.html @@ -18,6 +18,17 @@ +% if ( $conf->exists('cust-email-high-visibility') && !$pre ) { + + + <% $conf->exists('cust_main-require_invoicing_list_email') ? $r : '' %>Email address(es) + + + + + +% } + <% mt('Company') |h %> @@ -134,4 +145,6 @@ my $stateid_state_label = FS::Msgcat::_gettext('stateid_state') =~ /^(stateid_st my $r = qq!* !; +my @invoicing_list = $cust_main->invoicing_list; + diff --git a/httemplate/view/cust_main/billing.html b/httemplate/view/cust_main/billing.html index 40ab3afbf..3d8adf985 100644 --- a/httemplate/view/cust_main/billing.html +++ b/httemplate/view/cust_main/billing.html @@ -203,12 +203,14 @@ <% ( grep { $_ eq 'FAX' } @invoicing_list ) ? $yes : $no %> +% unless ( $conf->exists('cust-email-high-visibility')) { <% mt('Email invoices') |h %> <% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || $no %> +% } <% mt('Invoice terms') |h %> diff --git a/httemplate/view/cust_main/contacts.html b/httemplate/view/cust_main/contacts.html index 9a55e5488..56fbac8c6 100644 --- a/httemplate/view/cust_main/contacts.html +++ b/httemplate/view/cust_main/contacts.html @@ -17,6 +17,14 @@ <% $cust_main->masked('ss') || ' ' %> % } +% if ( $conf->exists('cust-email-high-visibility') && $which eq '') { + + <% mt('Email invoices') |h %> + + <% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || $no %> + + +% } <% mt('Company') |h %> <% $cust_main->get("${pre}company") |h %> @@ -115,6 +123,8 @@ my $stateid_state_label = FS::Msgcat::_gettext('stateid_state') =~ /^(stateid_st my( $cust_main ) = @_; my $conf = new FS::Conf; +my @invoicing_list = $cust_main->invoicing_list; +my $no = emt('no'); -- 2.11.0