summaryrefslogtreecommitdiff
path: root/httemplate/search/cust_attachment.html
blob: 556bb527a4fb49d65f7a21f111472aa2aa7a906b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
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!<FORM NAME="attachForm" ACTION="$p/misc/cust_attachment.cgi" METHOD="POST">
                    <INPUT TYPE="hidden" NAME="orderby" VALUE="$orderby">
                    <INPUT TYPE="hidden" NAME="show_deleted" VALUE="$disabled">!
                    , 
                 '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) : '<FONT COLOR="red"><B>(not found)</B></FONT>';
#};

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!<INPUT NAME="attachnum$attachnum" TYPE="checkbox" VALUE="1">!;
};

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 = '<a href="'.$cgi->self_url.'">'.$label.'</a>';
  %$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 = 
'<BR><INPUT TYPE="button" VALUE="Select all" onClick="setAll(true)">
<INPUT TYPE="button" VALUE="Unselect all" onClick="setAll(false)">';
  if ($disabled) {
    if ($curuser->access_right('Undelete attachment')) {
      $foot .= '<BR><INPUT TYPE="submit" NAME="action" VALUE="Undelete selected">';
    }
    if ($curuser->access_right('Purge attachment')) {
      $foot .= '<BR><INPUT TYPE="submit" NAME="action" VALUE="Purge selected" '.confirm('Purge').'>';
    }
  }
  else {
    $foot .= '<BR><INPUT TYPE="submit" NAME="action" VALUE="Delete selected" '.confirm('Delete').'>';
  }
  $foot .= 
'<SCRIPT TYPE="text/javascript">
  function setAll(setTo) { 
    theForm = document.attachForm;
    for (i=0,n=theForm.elements.length;i<n;i++)
      if (theForm.elements[i].name.indexOf("attachnum") != -1)
        theForm.elements[i].checked = setTo;
  }
</SCRIPT>';
  return $foot;
};

</%init>