From 8fa2d4df960414f50c33f1c0e57a9bab02db517e Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Wed, 5 Nov 2014 16:46:34 -0800 Subject: [PATCH] agent-virtualize quotation logos, RT#31135 --- conf/quotation_html | 2 +- httemplate/view/cust_bill-logo.cgi | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/conf/quotation_html b/conf/quotation_html index 1dfb94434..68d373f04 100644 --- a/conf/quotation_html +++ b/conf/quotation_html @@ -18,7 +18,7 @@ - +
">"> <%= $returnaddress %> diff --git a/httemplate/view/cust_bill-logo.cgi b/httemplate/view/cust_bill-logo.cgi index dc8b674ec..85b5d720f 100755 --- a/httemplate/view/cust_bill-logo.cgi +++ b/httemplate/view/cust_bill-logo.cgi @@ -3,6 +3,7 @@ die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('View invoices') + or $FS::CurrentUser::CurrentUser->access_right('View quotations') or $FS::CurrentUser::CurrentUser->access_right('Configuration'); my $conf; @@ -13,10 +14,16 @@ if ( $cgi->param('invnum') =~ /^(\d+)$/ ) { my $invnum = $1; $templatename = $cgi->param('template') || $cgi->param('templatename'); my $cust_bill = FS::cust_bill->by_key($invnum) - || FS::cust_bill_void->by_key($invnum); - die 'unknown invnum' unless $cust_bill; + || FS::cust_bill_void->by_key($invnum) + || die 'unknown invnum'; $conf = $cust_bill->conf; $agentnum = $cust_bill->cust_main->agentnum; +} elsif ( $cgi->param('quotationnum') =~ /^(\d+)$/ ) { + my $quotationnum = $1; + my $quotation = FS::quotation->by_key($quotationnum) + or die 'unknown quotationnum'; + $conf = $quotation->conf; + $agentnum = $quotation->agentnum; } else { # assume the default config $conf = FS::Conf->new; -- 2.11.0