From 3e6b291920daf5546efa5355e3ea6199e875d9db Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Tue, 27 Nov 2018 15:19:59 -0800 Subject: select agent and customer fields on attachment report, RT#81809 --- httemplate/search/cust_attachment.html | 216 ++++++++++++++++++++++++++ httemplate/search/report_cust_attachment.html | 42 +++++ 2 files changed, 258 insertions(+) create mode 100755 httemplate/search/cust_attachment.html create mode 100644 httemplate/search/report_cust_attachment.html (limited to 'httemplate/search') diff --git a/httemplate/search/cust_attachment.html b/httemplate/search/cust_attachment.html new file mode 100755 index 000000000..556bb527a --- /dev/null +++ b/httemplate/search/cust_attachment.html @@ -0,0 +1,216 @@ +<% include( 'elements/search.html', + 'title' => 'Attachments', + 'menubar' => '', + 'name' => ($disabled ? 'deleted' : '') .' attachments', + 'html_init' => include('/elements/init_overlib.html') . + ($curuser->access_right('View deleted attachments') ? ( + selflink('Show '.($disabled ? 'active' : 'deleted'), + show_deleted => (1-$disabled))) : ''), + 'html_form' => + qq!
+ + ! + , + 'query' => $query, + 'count_query' => $count_query, + 'header' => [ selflink('#',orderby => 'attachnum'), + #selflink('Customer',orderby => 'custnum'), + FS::UI::Web::cust_header( + $cgi->param('cust_fields') + ), + selflink('Date',orderby => '_date'), + selflink('Filename',orderby => 'filename'), + selflink('Size',orderby => 'length(body)'), + selflink('Uploaded by',orderby => 'otaker'), + selflink('Description',orderby => 'title'), + '', # checkbox column + ], + 'fields' => [ + 'attachnum', + #$sub_cust, + \&FS::UI::Web::cust_fields, + $sub_date, + 'filename', + $sub_size, + 'otaker', + 'title', + $sub_checkbox, + ], + 'links' => [ '', + ( map { $_ ne 'Cust. Status' ? $clink : '' } + FS::UI::Web::cust_header( + $cgi->param('cust_fields') + ) + ), + ], + 'link_onclicks' => [ + '', + ( map '', FS::UI::Web::cust_header( + $cgi->param('cust_fields') + ) + ), + '', + $sub_edit_link, + ], + 'color' => [ + '', + FS::UI::Web::cust_colors(), + ], + 'style' => [ + '', + FS::UI::Web::cust_styles(), + ], + 'align' => 'r'. FS::UI::Web::cust_aligns(), + + #'links' => [ + # '', + # '', + # '', + # '', + # '', + # '', #$acct_link, + # '', + 'html_foot' => $sub_foot, + ) + +%> + + +<%init> + +my $curuser = $FS::CurrentUser::CurrentUser; +die "access denied" if !$curuser->access_right('View attachments') + or !$curuser->access_right('Browse attachments'); + +my $conf = new FS::Conf; + +my $noactions = 1; +my $areboxes = 0; + +my $disabled = 0; + +if($cgi->param('show_deleted')) { + if ($curuser->access_right('View deleted attachments')) { + $disabled = 1; + if ($curuser->access_right('Purge attachment') or + $curuser->access_right('Undelete attachment')) { + $noactions = 0; + } + } + else { + die "access denied"; + } +} +else { + if ($curuser->access_right('Delete attachment')) { + $noactions = 0; + } +} + +my $orderby = $cgi->param('orderby') || 'custnum'; + +my $extra_sql = ''; +if ( $cgi->param('agentnum') && $cgi->param('agentnum') =~ /^(\d+)$/ ) { + $extra_sql = " AND agentnum = $1 "; +} + +my $query = { + table => 'cust_attachment', + hashref => { disabled => $disabled ? { op => '>', value => 0 } : '', }, + order_by => "ORDER BY $orderby", + addl_from => 'JOIN cust_main USING (custnum)', + extra_sql => "$extra_sql AND ". $curuser->agentnums_sql, +}; + +my $count_query = 'SELECT COUNT(*) FROM cust_attachment' + . ' JOIN cust_main USING (custnum)' + . ' WHERE ' . $curuser->agentnums_sql + . ' AND disabled ' . ( $disabled ? '> 0' : 'IS NULL' ); + +#still need to report on attachments with deleted customer? did we ever? +#my $sub_cust = sub { +# my $c = qsearchs('cust_main', { custnum => shift->custnum } ); +# return $c ? encode_entities($c->name) : '(not found)'; +#}; + +my $clink = [ $p.'view/cust_main.cgi?', 'custnum' ]; + +my $sub_date = sub { + time2str("%b %o, %Y", shift->_date); +}; + +my $sub_size = sub { + my $size = shift->size; + return $size if $size < 1024; + return int($size/1024).'K' if $size < 1048576; + return int($size/1048576).'M'; +}; + +my $sub_checkbox = sub { + return '' if $noactions; + my $attach = shift; + my $attachnum = $attach->attachnum; + $areboxes = 1; + return qq!!; +}; + +my $sub_edit_link = sub { + my $attach = shift; + my $attachnum = $attach->attachnum; + my $custnum = $attach->custnum; + return include('/elements/popup_link_onclick.html', + action => popurl(2).'edit/cust_main_attach.cgi?'. + "custnum=$custnum;attachnum=$attachnum", + actionlabel => 'Edit attachment properties', + width => 510, + height => 315, + frame => 'top', + ); +}; + +sub selflink { + my $label = shift; + my %new_param = @_; + my $param = $cgi->Vars; + my %old_param = %$param; + @{$param}{keys(%new_param)} = values(%new_param); + my $link = ''.$label.''; + %$param = %old_param; + return $link; +} + +sub confirm { + my $action = shift; + my $onclick = "return(confirm('$action all selected files?'))"; + return qq!onclick="$onclick"!; +} + +my $sub_foot = sub { + return '' if ($noactions or !$areboxes); + my $foot = +'
+'; + if ($disabled) { + if ($curuser->access_right('Undelete attachment')) { + $foot .= '
'; + } + if ($curuser->access_right('Purge attachment')) { + $foot .= '
'; + } + } + else { + $foot .= '
'; + } + $foot .= +''; + return $foot; +}; + + diff --git a/httemplate/search/report_cust_attachment.html b/httemplate/search/report_cust_attachment.html new file mode 100644 index 000000000..d9d9cb430 --- /dev/null +++ b/httemplate/search/report_cust_attachment.html @@ -0,0 +1,42 @@ +<& /elements/header.html, mt('Customer attachment report') &> + + + +<% emt('Attachment search options') %> + + + <& /elements/tr-select-agent.html &> + +% if ( $curuser->access_right('View deleted attachments') ) { + + <& /elements/tr-checkbox.html, + 'label' => 'Show deleted attachments', + 'field' => 'show_deleted', + 'value' => 1, + &> + +% } + +
+

+ +<% emt('Display options') %> + + + <& /elements/tr-select-cust-fields.html &> + +
+ +
+ + +
+ +<& /elements/footer.html &> +<%init> + +my $curuser = $FS::CurrentUser::CurrentUser; +die "access denied" if !$curuser->access_right('View attachments') + || !$curuser->access_right('Browse attachments'); + + -- cgit v1.2.1