[freeside-commits] freeside/httemplate/view/cust_main attachments.html, 1.1, 1.2
Mark Wells
mark at wavetail.420.am
Mon Aug 10 16:04:59 PDT 2009
Update of /home/cvs/cvsroot/freeside/httemplate/view/cust_main
In directory wavetail.420.am:/tmp/cvs-serv15451/httemplate/view/cust_main
Modified Files:
attachments.html
Log Message:
Improve handling of deleted attachments
Index: attachments.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/view/cust_main/attachments.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- attachments.html 9 Aug 2009 09:05:37 -0000 1.1
+++ attachments.html 10 Aug 2009 23:04:57 -0000 1.2
@@ -19,9 +19,19 @@
% my $bgcolor1 = '#eeeeee';
% my $bgcolor2 = '#ffffff';
% my $bgcolor = '';
+% if($cgi->param('show_deleted')) {
+% if ($curuser->access_right('View deleted attachments')) {
+% @attachments = grep { $_->disabled } @attachments;
+% }
+% else {
+% @attachments = ();
+% }
+% }
+% else {
+% @attachments = grep { not $_->disabled } @attachments;
+% }
%
-% foreach my $attach ((grep { $_->disabled } @attachments),
-% (grep { ! $_->disabled } @attachments)) {
+% foreach my $attach (@attachments) {
%
% if ( $bgcolor eq $bgcolor1 ) {
% $bgcolor = $bgcolor2;
@@ -32,42 +42,38 @@
% my $pop = popurl(3);
% my $attachnum = $attach->attachnum;
% my $edit = '';
-% my $download = '';
-% if($attach->disabled) {
-% my $onclick = include('/elements/popup_link_onclick.html',
-% 'action' => popurl(2).
-% 'edit/process/cust_main_attach.cgi'.
-% "?custnum=$custnum;".
-% "attachnum=$attachnum;".
-% "undelete=1",
-% 'actionlabel' => 'Undelete attachment',
-% 'width' => 616,
-% 'height' => 408,
-% 'frame' => 'top',
-% );
-% my $clickjs = qq!onclick="$onclick"!;
-% if($curuser->access_right('Edit attachment')) {
-% $edit = qq! <A HREF="javascript:void(0);" $clickjs>(undelete)</A>!;
+% if($attach->disabled) { # then you can undelete it or purge it.
+% if ($curuser->access_right('Undelete attachment')) {
+% my $clickjs = popup('edit/process/cust_main_attach.cgi?'.
+% "custnum=$custnum;attachnum=$attachnum;".
+% "undelete=1",
+% 'Undelete attachment');
+% $edit .= qq! <A HREF="javascript:void(0);" $clickjs>(undelete)</A>!;
+% }
+% if ($curuser->access_right('Purge attachment')) {
+% my $clickjs = popup('edit/process/cust_main_attach.cgi?'.
+% "custnum=$custnum;attachnum=$attachnum;".
+% "purge=1",
+% 'Purge attachment');
+% $edit .= qq! <A HREF="javascript:void(0);" $clickjs>(purge)</A>!;
% }
% }
-% else {
-% my $onclick = include( '/elements/popup_link_onclick.html',
-% 'action' => popurl(2).
-% 'edit/cust_main_attach.cgi'.
-% "?custnum=$custnum".
-% ";attachnum=$attachnum",
-% 'actionlabel' => 'Edit customer note',
-% 'width' => 616,
-% 'height' => 408,
-% 'frame' => 'top',
-% );
-% my $clickjs = qq!onclick="$onclick"!;
-%
+% else { # you can download or edit it
% if ($curuser->access_right('Edit attachment') ) {
-% $edit = qq! <A HREF="javascript:void(0);" $clickjs>(edit)</A>!;
+% my $clickjs = popup('edit/cust_main_attach.cgi?'.
+% "custnum=$custnum;attachnum=$attachnum",
+% 'Edit attachment properties');
+% $edit .= qq! <A HREF="javascript:void(0);" $clickjs>(edit)</A>!;
+% }
+% if($curuser->access_right('Delete attachment') ) {
+% my $clickjs = popup('edit/process/cust_main_attach.cgi?'.
+% "custnum=$custnum;attachnum=$attachnum;".
+% "delete=1",
+% 'Delete attachment');
+% $edit .= qq! <A HREF="javascript:void(0);" $clickjs>(delete)</A>!;
% }
% if ($curuser->access_right('Download attachment') ) {
-% $download = qq! <A HREF="!.popurl(1).'attachment.html?'.$attachnum.qq!">(download)</A>!;
+% $edit .= qq! <A HREF="!.popurl(1).'attachment.html?'.$attachnum.qq!">(download)</A>!;
% }
% }
@@ -86,10 +92,8 @@
<% size_units( $attach->size ) %>
</TD>
<TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
- <% $edit %>
- <% $download %>
+ <% $edit %>
</TD>
- <% $attach->disabled ? '</I>' : '' %>
</TR>
% } #end display notes
@@ -130,4 +134,18 @@
return int($bytes / 1048576)."M";
}
+sub popup {
+ my ($url, $label) = @_;
+ my $onclick =
+ include('/elements/popup_link_onclick.html',
+ 'action' => popurl(2).$url,
+ 'actionlabel' => $label,
+ 'width' => 616,
+ 'height' => 408,
+ 'frame' => 'top',
+ );
+ return qq!onclick="$onclick"!;
+}
+
+
</%init>
More information about the freeside-commits
mailing list