& /elements/header.html, mt('Quotation View'), $menubar &>
<& /elements/init_overlib.html &>
% unless ( $quotation->disabled eq 'Y' ) {
% if ( $curuser->access_right('Order customer package') ) {
<& /elements/order_pkg_link.html,
'label' => emt('Add package'),
'actionlabel' => emt('Add package'),
map { $_ => $quotation->$_ } qw( quotationnum custnum prospectnum )
&>
% }
% if ( $curuser->access_right('One-time charge') ) {
| <& /elements/one_time_charge_link.html,
map { $_ => $quotation->$_ } qw( quotationnum custnum prospectnum )
&>
% }
% if ( 1 ) { #if ( $curuser->access_right('Send quotations') )
<& /elements/popup_link.html,
'action' => "${p}misc/email-quotation.html".
"?quotationnum=$quotationnum",
'label' => emt('Email this quotation'),
'actionlabel' => emt('Select recipients'),
#'width' => 540,
#'height' => 336,
&>
%# <% mt('Re-print this invoice') |h %>
%#% if ( $conf->exists('hylafax') && length($cust_bill->cust_main->fax) ) {
%# | <% mt('Re-fax this invoice') |h %>
%#% }
% }
% if ( $conf->exists('quotation_latex') ) {
| <% mt('View typeset quotation PDF') |h %>
% }
% if ( $curuser->access_right('New customer') && $quotation->quotation_pkg ) {
Place order
% }
% }
% if ( $curuser->access_right('Disable quotation') ) {
% if ( $quotation->disabled eq 'Y' ) {
<% emt('Enable this quotation') %>
% } else {
<% areyousure_link(
"${p}misc/disable-quotation.html?quotationnum=". $quotation->quotationnum,
emt('Are you sure you want to disable this quotation?'),
emt('Disable this quotation'), #tooltip
emt('Disable this quotation'), #link
) %>
% }
% }
% if ( $error ) {
<% join('', $quotation->print_text() ) %><& /elements/footer.html &> <%init> my $curuser = $FS::CurrentUser::CurrentUser; #die "access denied" # unless $curuser->access_right('View quotations'); my $quotationnum; my($query) = $cgi->keywords; if ( $query =~ /^(\d+)$/ ) { $quotationnum = $1; } else { $quotationnum = $cgi->param('quotationnum'); } my $conf = new FS::Conf; my $quotation = qsearchs({ 'select' => 'quotation.*', 'table' => 'quotation', #'addl_from' => 'LEFT JOIN cust_main USING ( custnum )', 'hashref' => { 'quotationnum' => $quotationnum }, #'extra_sql' => ' AND '. $curuser->agentnums_sql, }); die "Quotation #$quotationnum not found!" unless $quotation; my $error = $quotation->estimate; my $menubar = menubar( $quotation->cust_or_prospect_label_link($p) ); my $link = "quotationnum=$quotationnum"; #$link .= ';template='. uri_escape($template) if $template; #$link .= ';notice_name='. $notice_name if $notice_name; my $preref_callback = sub { areyousure_link("${p}misc/delete-quotation_pkg.html?". shift->quotationpkgnum, emt('Are you sure you want to remove this package from the quotation?'), emt('Remove this package'), #tooltip qq(), #link ); }; sub areyousure_link { my ($url,$msg,$title,$label) = (shift,shift,shift,shift); ''.$label.''; } %init>