X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/098a79f0819ebb89b7d48df4a6b154af4560f68e..9a23a8c0a51b7ec38a96f525484134f3cb85dc7e:/WEB-INF/lib/ttExpenseHelper.class.php?ds=sidebyside diff --git a/WEB-INF/lib/ttExpenseHelper.class.php b/WEB-INF/lib/ttExpenseHelper.class.php new file mode 100644 index 00000000..b73208ac --- /dev/null +++ b/WEB-INF/lib/ttExpenseHelper.class.php @@ -0,0 +1,193 @@ +quote($date).", $user_id, ".$mdb2->quote($client_id).", ".$mdb2->quote($project_id). + ", ".$mdb2->quote($name).", ".$mdb2->quote($cost).", ".$mdb2->quote($invoice_id).", ".$mdb2->quote($status).")"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) + return false; + + $id = $mdb2->lastInsertID('tt_expense_items', 'id'); + return $id; + } + + // update - updates a record in tt_expense_items table. + static function update($fields) + { + $mdb2 = getConnection(); + + $id = (int) $fields['id']; + $date = $fields['date']; + $user_id = (int) $fields['user_id']; + $client_id = $fields['client_id']; + $project_id = $fields['project_id']; + $name = $fields['name']; + $cost = str_replace(',', '.', $fields['cost']); + $invoice_id = $fields['invoice_id']; + + $sql = "UPDATE tt_expense_items set date = ".$mdb2->quote($date).", user_id = $user_id, client_id = ".$mdb2->quote($client_id). + ", project_id = ".$mdb2->quote($project_id).", name = ".$mdb2->quote($name). + ", cost = ".$mdb2->quote($cost).", invoice_id = ".$mdb2->quote($invoice_id). + " WHERE id = $id"; + + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) + return false; + + return true; + } + + // markDeleted - marks an item as deleted in tt_expense_items table. + static function markDeleted($id, $user_id) { + $mdb2 = getConnection(); + + $sql = "update tt_expense_items set status = NULL where id = $id and user_id = $user_id"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) + return false; + + return true; + } + + // getTotalForDay - gets total expenses for a user for a specific date. + static function getTotalForDay($user_id, $date) { + global $user; + + $mdb2 = getConnection(); + + $sql = "select sum(cost) as sm from tt_expense_items where user_id = $user_id and date = ".$mdb2->quote($date)." and status = 1"; + $res = $mdb2->query($sql); + if (!is_a($res, 'PEAR_Error')) { + $val = $res->fetchRow(); + $val['sm'] = str_replace('.', $user->decimal_mark, $val['sm']); + return $val['sm']; + } + return false; + } + + // getItem - retrieves an entry from tt_expense_items table. + static function getItem($id, $user_id) { + global $user; + + $mdb2 = getConnection(); + + $client_field = null; + if (in_array('cl', explode(',', $user->plugins))) + $client_field = ", c.name as client_name"; + + $left_joins = ""; + $left_joins = " left join tt_projects p on (ei.project_id = p.id)"; + if (in_array('cl', explode(',', $user->plugins))) + $left_joins .= " left join tt_clients c on (ei.client_id = c.id)"; + + $sql = "select ei.id, ei.date, ei.client_id, ei.project_id, ei.name, ei.cost, ei.invoice_id $client_field, p.name as project_name + from tt_expense_items ei + $left_joins + where ei.id = $id and ei.user_id = $user_id and ei.status = 1"; + $res = $mdb2->query($sql); + if (!is_a($res, 'PEAR_Error')) { + if (!$res->numRows()) { + return false; + } + if ($val = $res->fetchRow()) { + $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']); + return $val; + } + } + return false; + } + + /* + // getAllItems - returns all expense items for a certain user. + static function getAllItems($user_id) { + $result = array(); + + $mdb2 = getConnection(); + + $sql = "select * from tt_expense_items where user_id = $user_id order by id"; + $res = $mdb2->query($sql); + if (!is_a($res, 'PEAR_Error')) { + while ($val = $res->fetchRow()) { + $result[] = $val; + } + } else return false; + + return $result; + }*/ + + // getItems - returns expense items for a user for a given date. + static function getItems($user_id, $date) { + global $user; + + $result = array(); + $mdb2 = getConnection(); + + $client_field = null; + if (in_array('cl', explode(',', $user->plugins))) + $client_field = ", c.name as client"; + + $left_joins = ""; + $left_joins = " left join tt_projects p on (ei.project_id = p.id)"; + if (in_array('cl', explode(',', $user->plugins))) + $left_joins .= " left join tt_clients c on (ei.client_id = c.id)"; + + $sql = "select ei.id as id $client_field, p.name as project, ei.name as item, ei.cost as cost, + ei.invoice_id from tt_expense_items ei + $left_joins + where ei.date = ".$mdb2->quote($date)." and ei.user_id = $user_id and ei.status = 1 + order by ei.id"; + + $res = $mdb2->query($sql); + if (!is_a($res, 'PEAR_Error')) { + while ($val = $res->fetchRow()) { + $val['cost'] = str_replace('.', $user->decimal_mark, $val['cost']); + $result[] = $val; + } + } else return false; + + return $result; + } +} +?> \ No newline at end of file