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.
 
  11 // | There are only two ways to violate the license:
 
  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).
 
  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).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  29 // The ttExpenseHelper is a class to help with expense items.
 
  30 class ttExpenseHelper {
 
  31   // insert - inserts an entry into tt_expense_items table.
 
  32   static function insert($fields)
 
  35     $mdb2 = getConnection();
 
  37     $date = $fields['date'];
 
  38     $user_id = (int) $fields['user_id'];
 
  39     $group_id = (int) $fields['group_id'];
 
  40     $client_id = $fields['client_id'];
 
  41     $project_id = $fields['project_id'];
 
  42     $name = $fields['name'];
 
  43     $cost = str_replace(',', '.', $fields['cost']);
 
  44     $invoice_id = $fields['invoice_id'];
 
  45     $status = $fields['status'];
 
  46     $paid = (int) $fields['paid'];
 
  47     $created = ', now(), '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', '.$mdb2->quote($user->id);
 
  49     $sql = "insert into tt_expense_items (date, user_id, group_id, client_id, project_id, name, cost, invoice_id, paid, created, created_ip, created_by, status) ".
 
  50       "values (".$mdb2->quote($date).", $user_id, $group_id, ".$mdb2->quote($client_id).", ".$mdb2->quote($project_id).
 
  51       ", ".$mdb2->quote($name).", ".$mdb2->quote($cost).", ".$mdb2->quote($invoice_id).", $paid $created, ".$mdb2->quote($status).")";
 
  52     $affected = $mdb2->exec($sql);
 
  53     if (is_a($affected, 'PEAR_Error'))
 
  56     $id = $mdb2->lastInsertID('tt_expense_items', 'id');
 
  60   // update - updates a record in tt_expense_items table.
 
  61   static function update($fields)
 
  64     $mdb2 = getConnection();
 
  66     $id = (int) $fields['id'];
 
  67     $date = $fields['date'];
 
  68     $user_id = (int) $fields['user_id'];
 
  69     $client_id = $fields['client_id'];
 
  70     $project_id = $fields['project_id'];
 
  71     $name = $fields['name'];
 
  72     $cost = str_replace(',', '.', $fields['cost']);
 
  73     $invoice_id = $fields['invoice_id'];
 
  76     if ($user->can('manage_invoices') && $user->isPluginEnabled('ps')) {
 
  77       $paid_part = $fields['paid'] ? ', paid = 1' : ', paid = 0';
 
  79     $modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$mdb2->quote($user->id);
 
  81     $sql = "UPDATE tt_expense_items set date = ".$mdb2->quote($date).", user_id = $user_id, client_id = ".$mdb2->quote($client_id).
 
  82       ", project_id = ".$mdb2->quote($project_id).", name = ".$mdb2->quote($name).
 
  83       ", cost = ".$mdb2->quote($cost)."$paid_part $modified_part, invoice_id = ".$mdb2->quote($invoice_id).
 
  86     $affected = $mdb2->exec($sql);
 
  87     if (is_a($affected, 'PEAR_Error'))
 
  93   // markDeleted - marks an item as deleted in tt_expense_items table.
 
  94   static function markDeleted($id, $user_id) {
 
  95     $mdb2 = getConnection();
 
  97     $sql = "update tt_expense_items set status = NULL where id = $id and user_id = $user_id";
 
  98     $affected = $mdb2->exec($sql);
 
  99     if (is_a($affected, 'PEAR_Error'))
 
 105   // getTotalForDay - gets total expenses for a user for a specific date.
 
 106   static function getTotalForDay($user_id, $date) {
 
 109     $mdb2 = getConnection();
 
 111     $sql = "select sum(cost) as sm from tt_expense_items where user_id = $user_id and date = ".$mdb2->quote($date)." and status = 1";
 
 112     $res = $mdb2->query($sql);
 
 113     if (!is_a($res, 'PEAR_Error')) {
 
 114       $val = $res->fetchRow();
 
 115       $val['sm'] = str_replace('.', $user->decimal_mark, $val['sm']);
 
 121   // getItem - retrieves an entry from tt_expense_items table.
 
 122   static function getItem($id, $user_id) {
 
 125     $mdb2 = getConnection();
 
 127     $client_field = null;
 
 128     if ($user->isPluginEnabled('cl'))
 
 129       $client_field = ", c.name as client_name";
 
 132     $left_joins = " left join tt_projects p on (ei.project_id = p.id)";
 
 133     if ($user->isPluginEnabled('cl'))
 
 134       $left_joins .= " left join tt_clients c on (ei.client_id = c.id)";
 
 136     $sql = "select ei.id, ei.date, ei.client_id, ei.project_id, ei.name, ei.cost, ei.invoice_id, ei.paid $client_field, p.name as project_name
 
 137       from tt_expense_items ei
 
 139       where ei.id = $id and ei.user_id = $user_id and ei.status = 1";
 
 140     $res = $mdb2->query($sql);
 
 141     if (!is_a($res, 'PEAR_Error')) {
 
 142       if (!$res->numRows()) {
 
 145       if ($val = $res->fetchRow()) {
 
 146         $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);
 
 153   // getItems - returns expense items for a user for a given date.
 
 154   static function getItems($user_id, $date) {
 
 158     $mdb2 = getConnection();
 
 160     $client_field = null;
 
 161     if ($user->isPluginEnabled('cl'))
 
 162       $client_field = ", c.name as client";
 
 165     $left_joins = " left join tt_projects p on (ei.project_id = p.id)";
 
 166     if ($user->isPluginEnabled('cl'))
 
 167       $left_joins .= " left join tt_clients c on (ei.client_id = c.id)";
 
 169     $sql = "select ei.id as id $client_field, p.name as project, ei.name as item, ei.cost as cost,
 
 170       ei.invoice_id from tt_expense_items ei
 
 172       where ei.date = ".$mdb2->quote($date)." and ei.user_id = $user_id and ei.status = 1
 
 175     $res = $mdb2->query($sql);
 
 176     if (!is_a($res, 'PEAR_Error')) {
 
 177       while ($val = $res->fetchRow()) {
 
 178         $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']);