X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fcontacts.html;h=68e3b17adb7501268242a4498bade660e1b6287b;hb=d5cdad7fae9c5e45701a7e83abeb903d31b7983f;hp=9a55e54880b6f6ef53f57ab947f628f2efcbc4e2;hpb=998f029ef805c73e90543b34192e16d38a23c69c;p=freeside.git diff --git a/httemplate/view/cust_main/contacts.html b/httemplate/view/cust_main/contacts.html index 9a55e5488..68e3b17ad 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 %> @@ -57,12 +65,22 @@ <% mt('Country') |h %> <% code2country( $cust_main->get("${pre}country") ) %> + +% if ( $cust_main->get($pre.'latitude') && $cust_main->get($pre.'longitude') ) { + <& /elements/tr-coords.html, $cust_main->get($pre.'latitude'), + $cust_main->get($pre.'longitude'), + $cust_main->name_short, + $cust_main->agentnum, + &> +% } + <% $daytime_label %> <& /elements/phonenumber.html, $cust_main->get("${pre}daytime"), - 'callable'=>1 + 'callable'=>1, + 'calling_list_exempt'=>$cust_main->calling_list_exempt, &> @@ -71,7 +89,18 @@ <& /elements/phonenumber.html, $cust_main->get("${pre}night"), - 'callable'=>1 + 'callable'=>1, + 'calling_list_exempt'=>$cust_main->calling_list_exempt, + &> + + + + <% $mobile_label %> + + <& /elements/phonenumber.html, + $cust_main->get("${pre}mobile"), + 'callable'=>1, + 'calling_list_exempt'=>$cust_main->calling_list_exempt, &> @@ -100,9 +129,13 @@ my $daytime_label = FS::Msgcat::_gettext('daytime') =~ /^(daytime)?$/ ? 'Day Phone' : FS::Msgcat::_gettext('daytime'); -my $night_label = FS::Msgcat::_gettext('night') =~ /^(night)?$/ +my $night_label = FS::Msgcat::_gettext('night') =~ /^(night)?$/ ? 'Night Phone' : FS::Msgcat::_gettext('night'); +my $mobile_label = FS::Msgcat::_gettext('mobile') =~ /^(mobile)?$/ + ? 'Mobile Phone' + : FS::Msgcat::_gettext('Mobile'); + my $stateid_label = FS::Msgcat::_gettext('stateid') =~ /^(stateid)?$/ ? 'Driver’s License' : FS::Msgcat::_gettext('stateid'); @@ -115,6 +148,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');