From 955c17771c7aa05a2609309809809be37f4c8267 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 13 Aug 2010 19:26:22 +0000 Subject: [PATCH] add cust_main-title-display_custnum, RT#9621 --- FS/FS/Conf.pm | 7 +++++++ httemplate/view/cust_main.cgi | 7 ++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 8f6a70ca5..c436413d6 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -3258,6 +3258,13 @@ and customer address. Include units.', }, { + 'key' => 'cust_main-title-display_custnum', + 'section' => 'UI', + 'description' => 'Add the display_custom (agent_custid or custnum) to the title on customer view pages.', + 'type' => 'checkbox', + }, + + { 'key' => 'cust_bill-default_agent_invid', 'section' => 'UI', 'description' => 'Display the agent_invid field when available instead of the invnum field.', diff --git a/httemplate/view/cust_main.cgi b/httemplate/view/cust_main.cgi index 0b6148da0..cb325e21d 100755 --- a/httemplate/view/cust_main.cgi +++ b/httemplate/view/cust_main.cgi @@ -1,5 +1,5 @@ <% include('/elements/header.html', { - 'title' => "Customer: ". $cust_main->name, + 'title' => $title, 'nobr' => 1, }) %> @@ -265,6 +265,11 @@ my $cust_main = qsearchs( { }); die "Customer not found!" unless $cust_main; +my $title = $cust_main->name; +$title = '('. $cust_main->display_custnum. ") $title" + if $conf->exists('cust_main-title-display_custnum'); +$title = "Customer: $title"; + #false laziness w/pref/pref.html and Conf.pm (cust_main-default_view) tie my %views, 'Tie::IxHash', 'Basics' => 'basics', -- 2.11.0