Refactored and renamed ttSysConfig class.
[timetracker.git] / WEB-INF / lib / ttInvoiceHelper.class.php
1 <?php
2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
10 // |
11 // | There are only two ways to violate the license:
12 // |
13 // | 1. To redistribute this code in source form, with the copyright
14 // |    notice or license removed or altered. (Distributing in compiled
15 // |    forms without embedded copyright notices is permitted).
16 // |
17 // | 2. To redistribute modified versions of this code in *any* form
18 // |    that bears insufficient indications that the modifications are
19 // |    not the work of the original author(s).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 import('ttClientHelper');
30 import('DateAndTime');
31
32 // Class ttInvoiceHelper is used for help with invoices.
33 class ttInvoiceHelper {
34
35   // getInvoice - obtains invoice data from the database.
36   static function getInvoice($invoice_id) {
37     global $user;
38     $mdb2 = getConnection();
39
40     if ($user->isClient()) $client_part = " and client_id = $user->client_id";
41
42     $sql = "select * from tt_invoices where id = $invoice_id and group_id = ".
43             $user->getGroup()."$client_part and status = 1";
44     $res = $mdb2->query($sql);
45     if (!is_a($res, 'PEAR_Error')) {
46       if ($val = $res->fetchRow())
47         return $val;
48     }
49     return false;
50   }
51
52   // The getInvoiceByName looks up an invoice by name.
53   static function getInvoiceByName($invoice_name) {
54
55     $mdb2 = getConnection();
56     global $user;
57
58     $sql = "select id from tt_invoices where group_id = ".
59             $user->getGroup()." and name = ".$mdb2->quote($invoice_name)." and status = 1";
60     $res = $mdb2->query($sql);
61     if (!is_a($res, 'PEAR_Error')) {
62       $val = $res->fetchRow();
63       if ($val['id']) {
64         return $val;
65       }
66     }
67     return false;
68   }
69
70   // The isPaid determines if an invoice is paid by looking at the paid status of its items.
71   // If any non-paid item is found, the entire invoice is considered not paid.
72   // Therefore, the paid status of the invoice is a calculated value.
73   // This is because we maintain the paid status on individual item level.
74   static function isPaid($invoice_id) {
75
76     $mdb2 = getConnection();
77     global $user;
78
79     $sql = "select count(*) as count from tt_log where invoice_id = $invoice_id and status = 1 and paid < 1";
80     $res = $mdb2->query($sql);
81     if (!is_a($res, 'PEAR_Error')) {
82       $val = $res->fetchRow();
83       if ($val['count'] > 0)
84         return false; // A non-paid time item exists.
85     }
86     $sql = "select count(*) as count from tt_expense_items where invoice_id = $invoice_id and status = 1 and paid < 1";
87     $res = $mdb2->query($sql);
88     if (!is_a($res, 'PEAR_Error')) {
89       $val = $res->fetchRow();
90       if ($val['count'] > 0)
91         return false; // A non-paid expense item exists.
92       else
93         return true; // All time and expense items in invoice are paid.
94     }
95     return false;
96   }
97
98   // markPaid marks invoice items as paid.
99   static function markPaid($invoice_id, $mark_paid = true) {
100
101     global $user;
102     $mdb2 = getConnection();
103
104     $paid_status = $mark_paid ? 1 : 0;
105     $sql = "update tt_log set paid = $paid_status where invoice_id = $invoice_id and status = 1";
106     $affected = $mdb2->exec($sql);
107     if (is_a($affected, 'PEAR_Error')) return false;
108
109     $sql = "update tt_expense_items set paid = $paid_status where invoice_id = $invoice_id and status = 1";
110     $affected = $mdb2->exec($sql);
111     if (is_a($affected, 'PEAR_Error')) return false;
112
113     return true;
114   }
115
116   // The getInvoiceItems retrieves tt_log items associated with the invoice. 
117   static function getInvoiceItems($invoice_id) {
118     global $user;
119     $mdb2 = getConnection();
120
121     // At this time only detailed invoice is supported.
122     // It is anticipated to support "totals only" option later on.
123
124     // Our query is different depending on tracking mode.
125     if (MODE_TIME == $user->getTrackingMode()) {
126       // In "time only" tracking mode there is a single user rate.
127       $sql = "select l.date as date, 1 as type, u.name as user_name, p.name as project_name,
128       t.name as task_name, l.comment as note,
129       time_format(l.duration, '%k:%i') as duration,
130       cast(l.billable * u.rate * time_to_sec(l.duration)/3600 as decimal(10, 2)) as cost,
131       l.paid as paid from tt_log l
132       inner join tt_users u on (l.user_id = u.id)
133       left join tt_projects p on (p.id = l.project_id)
134       left join tt_tasks t on (t.id = l.task_id)
135       where l.status = 1 and l.billable = 1 and l.invoice_id = $invoice_id order by l.date, u.name";
136     } else {
137       $sql = "select l.date as date, 1 as type, u.name as user_name, p.name as project_name,
138         t.name as task_name, l.comment as note,
139         time_format(l.duration, '%k:%i') as duration,
140         cast(l.billable * coalesce(upb.rate, 0) * time_to_sec(l.duration)/3600 as decimal(10, 2)) as cost,
141         l.paid as paid from tt_log l
142         inner join tt_users u on (l.user_id = u.id)
143         left join tt_projects p on (p.id = l.project_id)
144         left join tt_tasks t on (t.id = l.task_id)
145         left join tt_user_project_binds upb on (upb.user_id = l.user_id and upb.project_id = l.project_id)
146         where l.status = 1 and l.billable = 1 and l.invoice_id = $invoice_id order by l.date, u.name";
147     }
148
149     // If we have expenses, we need to do a union with a separate query for expense items from tt_expense_items table.
150     if ($user->isPluginEnabled('ex')) {
151       $sql_for_expense_items = "select ei.date as date, 2 as type, u.name as user_name, p.name as project_name,
152         null as task_name, ei.name as note,
153         null as duration, ei.cost as cost,
154         ei.paid as paid from tt_expense_items ei
155         inner join tt_users u on (ei.user_id = u.id)
156         left join tt_projects p on (p.id = ei.project_id)
157         where ei.invoice_id = $invoice_id and ei.status = 1";
158
159       // Construct a union.
160       $sql = "($sql) union all ($sql_for_expense_items)";
161
162       $sort_part = " order by date, user_name, type";
163       $sql .= $sort_part;
164     }
165
166     $res = $mdb2->query($sql);
167     if (!is_a($res, 'PEAR_Error')) {
168       $dt = new DateAndTime(DB_DATEFORMAT);
169       while ($val = $res->fetchRow()) {
170         $dt->parseVal($val['date']);
171         $val['date'] = $dt->toString($user->date_format);
172         $result[] = $val;
173       }
174     }
175     return $result;
176   }
177
178   // delete - deletes the invoice data from the database.
179   static function delete($invoice_id, $delete_invoice_items) {
180     global $user;
181     $mdb2 = getConnection();
182
183     // Handle custom field log records.
184     if ($delete_invoice_items) {
185       $sql = "update tt_custom_field_log set status = NULL where log_id in (select id from tt_log where invoice_id = $invoice_id and status = 1)";
186       $affected = $mdb2->exec($sql);
187       if (is_a($affected, 'PEAR_Error')) return false;
188     }
189
190     // Handle time records.
191     if ($delete_invoice_items)
192       $sql = "update tt_log set status = NULL where invoice_id = $invoice_id";
193     else
194       $sql = "update tt_log set invoice_id = NULL where invoice_id = $invoice_id";
195     $affected = $mdb2->exec($sql);
196     if (is_a($affected, 'PEAR_Error')) return false;
197
198     // Handle expense items.
199     if ($delete_invoice_items)
200       $sql = "update tt_expense_items set status = NULL where invoice_id = $invoice_id";
201     else
202       $sql = "update tt_expense_items set invoice_id = NULL where invoice_id = $invoice_id";
203     $affected = $mdb2->exec($sql);
204     if (is_a($affected, 'PEAR_Error')) return false;
205
206     $sql = "update tt_invoices set status = NULL where id = $invoice_id and group_id = ".$user->getGroup();
207     $affected = $mdb2->exec($sql);
208     return (!is_a($affected, 'PEAR_Error'));
209   }
210
211   // The invoiceableItemsExist determines whether invoiceable records exist in the specified period.
212   static function invoiceableItemsExist($fields) {
213
214     $mdb2 = getConnection();
215     global $user;
216
217     $client_id = (int) $fields['client_id'];
218
219     $start_date = new DateAndTime($user->date_format, $fields['start_date']);
220     $start = $start_date->toString(DB_DATEFORMAT);
221
222     $end_date = new DateAndTime($user->date_format, $fields['end_date']);
223     $end = $end_date->toString(DB_DATEFORMAT);
224
225     if (isset($fields['project_id'])) $project_id = (int) $fields['project_id'];
226
227     // Our query is different depending on tracking mode.
228     if (MODE_TIME == $user->getTrackingMode()) {
229       // In "time only" tracking mode there is a single user rate.
230       $sql = "select count(*) as num from tt_log l, tt_users u
231         where l.status = 1 and l.client_id = $client_id and l.invoice_id is NULL
232         and l.date >= ".$mdb2->quote($start)." and l.date <= ".$mdb2->quote($end)."
233         and l.user_id = u.id
234         and l.billable = 1"; // l.billable * u.rate * time_to_sec(l.duration)/3600 > 0 // See explanation below.
235     } else {
236       // sql part for project id.
237       if ($project_id) $project_part = " and l.project_id = $project_id";
238
239       // When we have projects, rates are defined for each project in tt_user_project_binds table.
240       $sql = "select count(*) as num from tt_log l, tt_user_project_binds upb
241         where l.status = 1 and l.client_id = $client_id $project_part and l.invoice_id is NULL
242         and l.date >= ".$mdb2->quote($start)." and l.date <= ".$mdb2->quote($end)."
243         and upb.user_id = l.user_id and upb.project_id = l.project_id
244         and l.billable = 1"; // l.billable * upb.rate * time_to_sec(l.duration)/3600 > 0
245         // Users with a lot of clients and projects (Jaro) may forget to set user rates properly.
246         // Specifically, user rate may be set to 0 on a project, by mistake. This leads to error.no_invoiceable_items
247         // and increased support cost. Commenting out allows us to include 0 cost items in invoices so that
248         // the problem becomes obvious.
249
250         // TODO: If the above turns out useful, rework the query to simplify it by removing left join.
251     }
252     $res = $mdb2->query($sql);
253     if (!is_a($res, 'PEAR_Error')) {
254       $val = $res->fetchRow();
255       if ($val['num']) {
256         return true;
257       }
258     }
259
260     if ($user->isPluginEnabled('ex')) {
261       // sql part for project id.
262       if ($project_id) $project_part = " and ei.project_id = $project_id";
263
264       $sql = "select count(*) as num from tt_expense_items ei
265         where ei.client_id = $client_id $project_part and ei.invoice_id is NULL
266         and ei.date >= ".$mdb2->quote($start)." and ei.date <= ".$mdb2->quote($end)."
267         and ei.cost <> 0 and ei.status = 1";
268       $res = $mdb2->query($sql);
269       if (!is_a($res, 'PEAR_Error')) {
270         $val = $res->fetchRow();
271         if ($val['num']) {
272           return true;
273         }
274       }
275     }
276
277     return false;
278   }
279
280   // createInvoice - marks items for invoice as belonging to it (with its reference number).
281   static function createInvoice($fields) {
282
283     $mdb2 = getConnection();
284     global $user;
285
286     $name = $fields['name'];
287     if (!$name) return false;
288
289     $client_id = (int) $fields['client_id'];
290
291     $invoice_date = new DateAndTime($user->date_format, $fields['date']);
292     $date = $invoice_date->toString(DB_DATEFORMAT);
293
294     $start_date = new DateAndTime($user->date_format, $fields['start_date']);
295     $start = $start_date->toString(DB_DATEFORMAT);
296
297     $end_date = new DateAndTime($user->date_format, $fields['end_date']);
298     $end = $end_date->toString(DB_DATEFORMAT);
299
300     if (isset($fields['project_id'])) $project_id = (int) $fields['project_id'];
301
302     // Create a new invoice record.
303     $sql = "insert into tt_invoices (group_id, org_id, name, date, client_id) values(".
304       $user->getGroup().", $user->org_id, ".$mdb2->quote($name).", ".$mdb2->quote($date).", $client_id)";
305     $affected = $mdb2->exec($sql);
306     if (is_a($affected, 'PEAR_Error')) return false;
307
308     // Mark associated invoice items with invoice id.
309     $last_id = $mdb2->lastInsertID('tt_invoices', 'id');
310
311     // Our update sql is different depending on tracking mode.
312     if (MODE_TIME == $user->getTrackingMode()) {
313       // In "time only" tracking mode there is a single user rate.
314       $sql = "update tt_log l
315         left join tt_users u on (u.id = l.user_id)
316         set l.invoice_id = $last_id
317         where l.status = 1 and l.client_id = $client_id and l.invoice_id is NULL
318         and l.date >= ".$mdb2->quote($start)." and l.date <= ".$mdb2->quote($end)."
319         and l.billable = 1"; // l.billable * u.rate * time_to_sec(l.duration)/3600 > 0"; // See explanation below.
320     } else {
321        // sql part for project id.
322       if ($project_id) $project_part = " and l.project_id = $project_id";
323
324       // When we have projects, rates are defined for each project in tt_user_project_binds.
325       $sql = "update tt_log l
326         left join tt_user_project_binds upb on (upb.user_id = l.user_id and upb.project_id = l.project_id)
327         set l.invoice_id = $last_id
328         where l.status = 1 and l.client_id = $client_id $project_part and l.invoice_id is NULL
329         and l.date >= ".$mdb2->quote($start)." and l.date <= ".$mdb2->quote($end)."
330         and l.billable = 1"; //  l.billable * upb.rate * time_to_sec(l.duration)/3600 > 0";
331         // Users with a lot of clients and projects (Jaro) may forget to set user rates properly.
332         // Specifically, user rate may be set to 0 on a project, by mistake. This leads to error.no_invoiceable_items
333         // and increased support cost. Commenting out allows us to include 0 cost items in invoices so that
334         // the problem becomes obvious.
335
336         // TODO: If the above turns out useful, rework the query to simplify it by removing left join.
337     }
338     $affected = $mdb2->exec($sql);
339     if (is_a($affected, 'PEAR_Error'))
340       return false;
341
342     // sql part for project id.
343     if ($project_id) $project_part = " and project_id = $project_id";
344
345     $sql = "update tt_expense_items set invoice_id = $last_id where client_id = $client_id $project_part and invoice_id is NULL
346       and date >= ".$mdb2->quote($start)." and date <= ".$mdb2->quote($end)." and cost <> 0 and status = 1";
347     $affected = $mdb2->exec($sql);
348     return (!is_a($affected, 'PEAR_Error'));
349   }
350
351   // prepareInvoiceBody - prepares an email body for invoice.
352   static function prepareInvoiceBody($invoice_id, $comment)
353   {
354     global $user;
355     global $i18n;
356
357     $invoice = ttInvoiceHelper::getInvoice($invoice_id);
358     $client = ttClientHelper::getClient($invoice['client_id'], true);
359     $invoice_items = ttInvoiceHelper::getInvoiceItems($invoice_id);
360
361     $tax_percent = $client['tax'];
362
363     $subtotal = 0;
364     $tax = 0;
365     foreach($invoice_items as $item)
366       $subtotal += $item['cost'];
367     if ($tax_percent) {
368       $tax_expenses = $user->isPluginEnabled('et');
369       foreach($invoice_items as $item) {
370         if ($item['type'] == 2 && !$tax_expenses)
371           continue;
372         $tax += round($item['cost'] * $tax_percent / 100, 2);
373       }
374     }
375     $total = $subtotal + $tax;
376
377     $subtotal = htmlspecialchars($user->currency).' '.str_replace('.', $user->decimal_mark, sprintf('%8.2f', round($subtotal, 2)));
378     if ($tax) $tax = htmlspecialchars($user->currency).' '.str_replace('.', $user->decimal_mark, sprintf('%8.2f', round($tax, 2)));
379     $total = htmlspecialchars($user->currency).' '.str_replace('.', $user->decimal_mark, sprintf('%8.2f', round($total, 2)));
380
381     if ('.' != $user->decimal_mark) {
382       foreach ($invoice_items as &$item) {
383         $item['cost'] = str_replace('.', $user->decimal_mark, $item['cost']);
384       }
385       unset($item); // Unset the reference. If we don't, the foreach loop below modifies the array while printing.
386                     // See http://stackoverflow.com/questions/8220399/php-foreach-pass-by-reference-last-element-duplicating-bug
387     }
388
389     // Define some styles to use in email.
390     $style_title = 'text-align: center; font-size: 15pt; font-family: Arial, Helvetica, sans-serif;';
391     $style_tableHeader = 'font-weight: bold; background-color: #a6ccf7; text-align: left;';
392     $style_tableHeaderCentered = 'font-weight: bold; background-color: #a6ccf7; text-align: center;';
393
394     // Determine tracking mode once for multiple reuse below.
395     $trackingMode = $user->getTrackingMode();
396
397     // Start creating email body.
398     $body = '<html>';
399     $body .= '<head><meta http-equiv="content-type" content="text/html; charset='.CHARSET.'"></head>';
400     $body .= '<body>';
401
402     // Output title.
403     $body .= '<p style="'.$style_title.'">'.$i18n->get('title.invoice').' '.htmlspecialchars($invoice['name']).'</p>';
404
405     // Output comment.
406     if($comment) $body .= '<p>'.htmlspecialchars($comment).'</p>';
407
408     // Output invoice info.
409     $body .= '<table>';
410     $body .= '<tr><td><b>'.$i18n->get('label.date').':</b> '.$invoice['date'].'</td></tr>';
411     $body .= '<tr><td><b>'.$i18n->get('label.client').':</b> '.htmlspecialchars($client['name']).'</td></tr>';
412     $body .= '<tr><td><b>'.$i18n->get('label.client_address').':</b> '.htmlspecialchars($client['address']).'</td></tr>';
413     $body .= '</table>';
414
415     $body .= '<p></p>';
416
417     // Output invoice items.
418     $body .= '<table border="0" cellpadding="4" cellspacing="0" width="100%">';
419     $body .= '<tr>';
420     $body .= '<td style="'.$style_tableHeader.'">'.$i18n->get('label.date').'</td>';
421     $body .= '<td style="'.$style_tableHeader.'">'.$i18n->get('form.invoice.person').'</td>';
422     if (MODE_PROJECTS == $trackingMode || MODE_PROJECTS_AND_TASKS == $trackingMode)
423       $body .= '<td style="'.$style_tableHeader.'">'.$i18n->get('label.project').'</td>';
424     if (MODE_PROJECTS_AND_TASKS == $trackingMode)
425       $body .= '<td style="'.$style_tableHeader.'">'.$i18n->get('label.task').'</td>';
426     $body .= '<td style="'.$style_tableHeader.'">'.$i18n->get('label.note').'</td>';
427     $body .= '<td style="'.$style_tableHeaderCentered.'" width="5%">'.$i18n->get('label.duration').'</td>';
428     $body .= '<td style="'.$style_tableHeaderCentered.'" width="5%">'.$i18n->get('label.cost').'</td>';
429     $body .= '</tr>';
430     foreach ($invoice_items as $item) {
431       $body .= '<tr>';
432       $body .= '<td>'.$item['date'].'</td>';
433       $body .= '<td>'.htmlspecialchars($item['user_name']).'</td>';
434       if (MODE_PROJECTS == $trackingMode || MODE_PROJECTS_AND_TASKS == $trackingMode)
435         $body .= '<td>'.htmlspecialchars($item['project_name']).'</td>';
436       if (MODE_PROJECTS_AND_TASKS == $trackingMode)
437         $body .= '<td>'.htmlspecialchars($item['task_name']).'</td>';
438       $body .= '<td>'.htmlspecialchars($item['note']).'</td>';
439       $body .= '<td align="right">'.$item['duration'].'</td>';
440       $body .= '<td align="right">'.$item['cost'].'</td>';
441       $body .= '</tr>';
442     }
443     // Output summary.
444     $colspan = 4;
445     if (MODE_PROJECTS == $trackingMode)
446       $colspan++;
447     elseif (MODE_PROJECTS_AND_TASKS == $trackingMode)
448       $colspan += 2;
449     $body .= '<tr><td>&nbsp;</td></tr>';
450     if ($tax) {
451       $body .= '<tr><td colspan="'.$colspan.'" align="right"><b>'.$i18n->get('label.subtotal').':</b></td><td nowrap align="right">'.$subtotal.'</td></tr>';
452       $body .= '<tr><td colspan="'.$colspan.'" align="right"><b>'.$i18n->get('label.tax').':</b></td><td nowrap align="right">'.$tax.'</td></tr>';
453     }
454     $body .= '<tr><td colspan="'.$colspan.'" align="right"><b>'.$i18n->get('label.total').':</b></td><td nowrap align="right">'.$total.'</td></tr>';
455     $body .= '</table>';
456
457     // Output footer.
458     if (!defined('REPORT_FOOTER') || !(REPORT_FOOTER == false))
459       $body .= '<p style="text-align: center;">'.$i18n->get('form.mail.footer').'</p>';
460
461     // Finish creating email body.
462     $body .= '</body></html>';
463
464     return $body;
465   }
466 }