Implemented an Items tab for attachments and modified the existing setup attachments.
[fa-stable.git] / includes / ui / attachment.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 include_once($path_to_root. '/includes/ui/simple_crud_class.inc');
13
14 /*
15         View/Edit class for attachments
16 */
17 class attachments extends simple_crud {
18         var $selected_id;
19         var $entity;
20         var $sub_class;
21         var $class;
22         
23         function __construct($name, $id, $class, $subclass=null) {
24                 $fields = array('type_no', 'trans_no','description','filename','tran_date' => 'date');
25                 parent::__construct($name, $fields);
26                 $this->class = $class;
27                 $this->subclass = $subclass;
28                 $this->entity = $id;
29                 
30         }
31
32         function list_view() {
33                 global $Ajax, $path_to_root, $session_debtor_no, $session_supplier_id;
34                 br();
35                 if(isset($_POST['attachmentDownload'])){
36                         $keys =  array_keys($_POST['attachmentDownload']);
37                         $sql = "SELECT * FROM ".TB_PREF."attachments WHERE id = ".db_escape($keys[0]);
38                         $row = db_fetch(db_query($sql), "Cannot retrieve attachment $keys[0]");
39
40                         
41                         if ($row['unique_name'] != ""){
42                                 if(in_ajax()) {
43                                         $Ajax->redirect($path_to_root.'/admin/attachments.php?dl='.$keys[0]);
44                                 } else {                                        
45                                 Header("Content-type: 'application/octet-stream' ");
46                                 //header('Content-Length: '.$row['filesize']);
47                                 header('Content-Disposition: attachment; filename="'.$row['filename'].'"');
48                                 echo file_get_contents(company_path()."/attachments/".$row['unique_name']);
49                                 exit();
50                                 }
51                         }
52                 }
53                 if(isset($_POST['attachmentView'])){
54                         $keys =  array_keys($_POST['attachmentView']);
55                         $sql = "SELECT * FROM ".TB_PREF."attachments WHERE id = ".db_escape($keys[0]);
56                         $row = db_fetch(db_query($sql), "Cannot retrieve attachment $keys[0]");
57                         
58                         if ($row['unique_name'] != ""){
59
60                                 $Ajax->redirect($path_to_root.'/admin/attachments.php?vw='.$keys[0]);   
61                                 /*if(in_ajax()) {
62                                         
63                                 } else {                                        
64                                 $type_no = ($row['filetype']) ? $row['filetype'] : 'application/octet-stream';  
65                                 header("Content-type: ".$type_no);
66                                         header("Content-Disposition: inline");
67                                 echo file_get_contents(company_path(). "/attachments/".$row['unique_name']);
68                                 exit();
69                                 }*/
70                         }
71                 }
72                 $filters = array('trans_no' => $this->entity, 'type_no' => (isset($_GET['type_no']) ? $_GET['type_no'] : ST_CUSTOMER)); // default ST_CUSTOMER
73
74                 if($session_debtor_no || $session_supplier_id)
75                         $filters['visible'] = 1;
76
77                 $sql = "SELECT * FROM ".TB_PREF."attachments WHERE trans_no=".db_escape($this->entity)." AND type_no = ".db_escape(isset($_GET['type_no']) ? $_GET['type_no'] : ST_CUSTOMER);
78                 $result = db_query($sql, "Could not get data from ".TB_PREF."attachments table");
79                 $attachments = Array();
80                 while($row = db_fetch_assoc($result))
81                         $attachments[] = $row;
82
83                 start_table(TABLESTYLE, "width=80%");
84                 $th = array(_("ID"), _("Doc Title"), _("Filename"), _("Size"), _("Filetype"), _("Doc Date"),  "",  "", "", ""); 
85                 table_header($th);      
86                 if($attachments){       
87                         foreach($attachments as $de) {
88                                 label_cell($de['id']);
89                                 label_cell($de['description']);
90                                 label_cell($de['filename']);
91                                 label_cell($de['filesize']);
92                                 label_cell($de['filetype']);
93                                 label_cell(sql2date($de['tran_date']));
94                                 edit_button_cell("{$this->name}Edit[{$de['id']}]", _("Edit"));
95                                 label_cell('<a target="_blank" class="viewlink" href="'.$path_to_root.'/admin/attachments.php?vw='.$de['id'].'" onclick="javascript:openWindow(this.href,this.target); return false;" accesskey="V"><img src="'.$path_to_root.'/themes/default/images/view.gif" style="vertical-align:middle;width:12px;height:12px;border:0;"></a>', 'style="text-align: center;" ');
96                                 button_cell("{$this->name}Download[{$de['id']}]", _("Download"), false, ICON_DOWN);
97                                 
98                                 delete_button_cell("{$this->name}Delete[{$de['id']}]", _("Delete"));
99                                 end_row();      
100                         }
101                 }
102                 end_table(1);
103         }
104         
105         function editor_view(){
106                 //global $Ajax;
107                 br();
108                 div_start('Attachment_Details');
109                 start_outer_table(TABLESTYLE);
110         
111                 table_section(1);
112                 table_section_title(_("Attachment Detail"));
113                 
114                 if($this->selected_id != null && $this->selected_id != "") {
115                         $sql = "SELECT * FROM ".TB_PREF."attachments WHERE id = ".db_escape($this->selected_id);
116                         $row = db_fetch(db_query($sql), "Cannot retrieve attachment $this->selected_id");
117                         hidden('unique_name', $row['unique_name']);
118                         $_POST['tran_date'] = sql2date($row['tran_date']);
119                         $_POST['title'] = $row['description'];
120                         $_POST['trans_no'] = $row['trans_no'];
121                 } else {
122                         $_POST['trans_no'] = $this->entity;
123                         $_POST['tran_date'] = Today();
124                         hidden('unique_name', '');
125                 }
126
127                 $type_no= $_GET['type_no'];
128
129                 
130                 if($type_no==ST_CUSTOMER) // 5
131                         $id_word = _("Customer ID");
132                 elseif($type_no==ST_SUPPLIER) // 6
133                         $id_word = _("Supplier ID");
134                 elseif($type_no==ST_ITEM) // 7
135                         $id_word = _("Item ID");
136
137                 label_row(_($id_word), $_POST['trans_no']);     
138                 date_row(_("Date"), 'tran_date');
139                 text_row_ex(_("Doc Title").':', 'description', 40);
140                 if ($this->selected_id)
141                         label_row(_("File:"), sprintf(_("%s [%s bytes]"), $row['filename'], $row['filesize']));
142                 file_row( ($this->selected_id ? _("File change") : _("Select file")) . ":", 'file_attachment_name', 'file_attachment_name');
143                 hidden('type_no', $_GET['type_no']);
144                 end_outer_table(1);     
145                 div_end();
146         }
147
148         function _bottom_controls()     {
149                 $title=false;
150                 $async='both';
151                 $base=$this->name;
152
153                 $cancel = $async;
154
155                 if ($async === 'both') {
156                         $async = 'default'; $cancel = 'cancel';
157                 } 
158                 else if ($async === 'default')
159                         $cancel = true;
160                 else if ($async === 'cancel')
161                         $async = true;
162                 echo "<center>";
163
164                 if ($this->Mode == '' || $this->Mode == 'RESET')
165                         submit("{$base}NEW", _("Add new"), true, $title, $async);
166                 else {
167                         if ($this->Mode == 'NEW' || $this->selected_id==$this->_none)
168                                 
169                                 submit("{$base}ADD", _("Add"), true, $title, $async);
170                         else {
171                                 submit("{$base}UPDATE[{$this->selected_id}]", _("Update"), true, _("Submit changes"), $async);                          
172                         }
173                         submit("{$base}RESET", _("Cancel"), true, _("Cancel edition"), $cancel);
174                 }
175                 echo "</center>";
176         }
177         
178         function db_insert() {
179                 $dat = $this->data;             
180                 if(!isset($max_image_size))
181                 $max_image_size = 5000;
182                 $upload_file = "";
183                 if (isset($_FILES['file_attachment_name']) && $_FILES['file_attachment_name']['name'] <> '') {
184                         
185                         $result = $_FILES['file_attachment_name']['error'];
186                         $upload_file = 'Yes'; 
187                         $attr_dir = company_path().'/attachments' ; 
188                         if (!file_exists($attr_dir)){                   
189                                 mkdir($attr_dir);
190                         }
191                         $attach_dir = $attr_dir;
192                         if (!file_exists($attach_dir)){
193                                 mkdir($attach_dir);
194                         }       
195                         
196                         if(isset($_POST['unique_name']) && $_POST['unique_name'] <> '')
197                                 $attachment_file_name = $_POST['unique_name'];                  
198                         else
199                                 $attachment_file_name = uniqid(); 
200                                 
201                         $filesize = $_FILES['file_attachment_name']['size'];
202                         $filetype = $_FILES['file_attachment_name']['type'];
203
204                         $filename = $attach_dir."/".$attachment_file_name; 
205                         
206                         if (file_exists($filename)){
207                                 $result = unlink($filename);
208                                 if (!$result)   {
209                                         display_error(_('The existing Docs could not be removed'));
210                                         $upload_file ='No';
211                                 }
212                         }       
213                         if ($upload_file == 'Yes'){
214                                 $actual_file_nam = $_FILES['file_attachment_name']['name'];
215                                 $result  =  move_uploaded_file($_FILES['file_attachment_name']['tmp_name'], $filename);
216                                 $sql = "INSERT INTO ".TB_PREF."attachments (trans_no, type_no, `description`, `filename`, unique_name, tran_date, `filesize`, `filetype`) VALUES ("
217                                            . db_escape($this->entity) . ","
218                                            . db_escape($dat['type_no']) . ","
219                                            . db_escape($_POST['description']) . ","
220                                            . db_escape($actual_file_nam) . ","
221                                            . db_escape($attachment_file_name) . ","
222                                            . db_escape(date2sql($_POST['tran_date'])) . ","
223                                            . db_escape($filesize) . ","
224                                            . db_escape($filetype) . ")";
225                                 if(db_query($sql, 'Could not add Attachment'))
226                                         display_notification(_("A New Attachment Added Successfully"));
227                         }
228                 }
229         }
230
231         function db_update() {
232                 $dat = $this->data;
233                 if(!isset($max_image_size))
234                         $max_image_size = 5000;
235                 $upload_file = "";
236                 if (isset($_FILES['file_attachment_name']) && $_FILES['file_attachment_name']['name'] != '') {
237                         
238                         $result = $_FILES['file_attachment_name']['error'];
239                         $upload_file = 'Yes'; 
240                         $attr_dir = company_path().'/attachments' ; 
241                         if (!file_exists($attr_dir)){
242                                 mkdir($attr_dir);
243                         }
244                         $attach_dir = $attr_dir;
245                         if (!file_exists($attach_dir)){
246                                 mkdir($attach_dir);
247                         }       
248                         
249                         if(isset($_POST['unique_name']) && $_POST['unique_name'] == '')
250                                 $attachment_file_name = uniqid();
251                         else
252                                 $attachment_file_name = $_POST['unique_name']; 
253                                 
254                         $filesize = $_FILES['file_attachment_name']['size'];
255                         $filetype = $_FILES['file_attachment_name']['type'];
256
257                         $filename = $attach_dir."/".$attachment_file_name; 
258                         if (file_exists($filename)){
259                                 $result = unlink($filename);
260                                 if (!$result)   {
261                                         display_error(_('The existing Docs could not be removed'));
262                                         $upload_file ='No';
263                                 }
264                         }
265                         if ($upload_file == 'Yes'){
266                                 $actual_file_nam = $_FILES['file_attachment_name']['name'];
267                                 $result  =  move_uploaded_file($_FILES['file_attachment_name']['tmp_name'], $filename);
268                         }
269                 }
270                         $sql = "UPDATE ".TB_PREF."attachments SET "
271                                       . "trans_no = " . db_escape($this->entity) . ","
272                                            . "type_no = " . db_escape($dat['type_no']) . ","
273                              . "`description` = " . db_escape($_POST['description']) . ","
274                                      . "tran_date = " . db_escape(date2sql($_POST['tran_date']));
275                         if ($upload_file == 'Yes')
276                                 $sql .=  ", unique_name = " . db_escape($attachment_file_name) . ","
277                                         . "`filename` = " . db_escape($actual_file_nam) . ","
278                                         . "`filesize` = " . db_escape($filesize) . ","
279                                         . "`filetype` = " . db_escape($filetype);
280                         $sql .=  " WHERE id = " . db_escape($this->selected_id);
281                                 if(db_query($sql, "Could not Update Attachment $this->selected_id"))
282                                         display_notification(_("The Selected Attachment $this->selected_id Updated Successfully"));
283         }
284
285         function insert_check() {
286                 if (strlen($_POST['description']) == 0) {
287                         display_error(_("Description cannot be empty."));
288                         set_focus('description');
289                         return false;
290                 }
291                 return true; 
292         }
293
294         function db_read() {
295                 $sql = "SELECT * FROM ".TB_PREF."attachments WHERE id=".db_escape($this->selected_id);
296                 $result = db_query($sql, "Could not get all data from ".TB_PREF."attachments table");
297                 $attachments = Array();
298                 return db_fetch_assoc($result);
299         }
300
301         function delete_check() {
302                 return true;
303         }
304         //
305         //      Delete all attachments for Customer / Supplier in current class/entity
306         //
307         function db_delete() {
308                 $sql = "SELECT * FROM ".TB_PREF."attachments WHERE id = ".db_escape($this->selected_id);
309                 $row = db_fetch(db_query($sql), "Cannot retrieve attachment $this->selected_id");
310
311                 $dir =  company_path()."/attachments";
312                 if ($row['unique_name'] && file_exists($dir."/".$row['unique_name']))
313                         unlink($dir."/".$row['unique_name']);
314
315                 $sql = "DELETE FROM ".TB_PREF."attachments WHERE id = ".db_escape($this->selected_id);
316                 if(db_query($sql, "Could not Delete Attachment $this->selected_id"))
317                         display_notification(_("The Selected Attachment is Deleted Successfully"));
318                 return false;
319         }
320 }
321