[freeside-commits] freeside/httemplate/view/cust_main attachments.html, NONE, 1.1
Mark Wells
mark at wavetail.420.am
Sun Aug 9 02:05:39 PDT 2009
- Previous message: [freeside-commits] freeside/httemplate/edit/process cust_main_attach.cgi, NONE, 1.1
- Next message: [freeside-commits] freeside/FS/FS cust_attachment.pm, NONE, 1.1 AccessRight.pm, 1.40, 1.41 Conf.pm, 1.307, 1.308 Record.pm, 1.191, 1.192 Schema.pm, 1.161, 1.162 Mason.pm, 1.14, 1.15
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/cvsroot/freeside/httemplate/view/cust_main
In directory wavetail.420.am:/tmp/cvs-serv5591/httemplate/view/cust_main
Added Files:
attachments.html
Log Message:
Add cust_attachment stuff
--- NEW FILE: attachments.html ---
% if ( scalar(@attachments) ) {
<% include('/elements/init_overlib.html') %>
<% include("/elements/table-grid.html") %>
<TR>
<TH CLASS="grid" BGCOLOR="#cccccc">Date</TH>
% if ( $conf->exists('cust_main_note-display_times') ) {
<TH CLASS="grid" BGCOLOR="#cccccc">Time</TH>
% }
<TH CLASS="grid" BGCOLOR="#cccccc">Person</TH>
<TH CLASS="grid" BGCOLOR="#cccccc">Filename</TH>
<TH CLASS="grid" BGCOLOR="#cccccc">Type</TH>
<TH CLASS="grid" BGCOLOR="#cccccc">Size</TH>
<TH CLASS="grid" BGCOLOR="#cccccc"></TH>
</TR>
% my $bgcolor1 = '#eeeeee';
% my $bgcolor2 = '#ffffff';
% my $bgcolor = '';
%
% foreach my $attach ((grep { $_->disabled } @attachments),
% (grep { ! $_->disabled } @attachments)) {
%
% if ( $bgcolor eq $bgcolor1 ) {
% $bgcolor = $bgcolor2;
% } else {
% $bgcolor = $bgcolor1;
% }
%
% 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>!;
% }
% }
% 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"!;
%
% if ($curuser->access_right('Edit attachment') ) {
% $edit = qq! <A HREF="javascript:void(0);" $clickjs>(edit)</A>!;
% }
% if ($curuser->access_right('Download attachment') ) {
% $download = qq! <A HREF="!.popurl(1).'attachment.html?'.$attachnum.qq!">(download)</A>!;
% }
% }
<TR>
<% note_datestr($attach,$conf,$bgcolor) %>
<TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
<% $attach->otaker%>
</TD>
<TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
<% $attach->filename %>
</TD>
<TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
<% $attach->mime_type %>
</TD>
<TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
<% size_units( $attach->size ) %>
</TD>
<TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
<% $edit %>
<% $download %>
</TD>
<% $attach->disabled ? '</I>' : '' %>
</TR>
% } #end display notes
</TABLE>
% }
<%init>
my $conf = new FS::Conf;
my $curuser = $FS::CurrentUser::CurrentUser;
my(%opt) = @_;
my $custnum = $opt{'custnum'};
my $cust_main = qsearchs('cust_main', {'custnum' => $custnum} );
die "Customer not found!" unless $cust_main;
my (@attachments) = qsearch('cust_attachment', {'custnum' => $custnum});
#subroutines
sub note_datestr {
my($note, $conf, $bgcolor) = @_ or return '';
my $td = qq{<TD CLASS="grid" BGCOLOR="$bgcolor" ALIGN="right">};
my $format = "$td%b %o, %Y</TD>";
$format .= "$td%l:%M%P</TD>"
if $conf->exists('cust_main_note-display_times');
( my $strip = time2str($format, $note->_date) ) =~ s/ (\d)/$1/g;
$strip;
}
sub size_units {
my $bytes = shift;
return $bytes if $bytes < 1024;
return int($bytes / 1024)."K" if $bytes < 1048576;
return int($bytes / 1048576)."M";
}
</%init>
- Previous message: [freeside-commits] freeside/httemplate/edit/process cust_main_attach.cgi, NONE, 1.1
- Next message: [freeside-commits] freeside/FS/FS cust_attachment.pm, NONE, 1.1 AccessRight.pm, 1.40, 1.41 Conf.pm, 1.307, 1.308 Record.pm, 1.191, 1.192 Schema.pm, 1.161, 1.162 Mason.pm, 1.14, 1.15
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the freeside-commits
mailing list