From: Ivan Kohler Date: Thu, 6 Nov 2014 00:46:34 +0000 (-0800) Subject: agent-virtualize quotation logos, RT#31135 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=8fa2d4df960414f50c33f1c0e57a9bab02db517e agent-virtualize quotation logos, RT#31135 --- 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;