From: Nik Okuntseff Date: Thu, 6 Dec 2018 20:34:14 +0000 (+0000) Subject: Work in progress on subgroups in invoices. X-Git-Tag: timetracker_1.19-1~466 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=e3df211bb657c8036e7c767eeee660fc402a357e;p=timetracker.git Work in progress on subgroups in invoices. --- diff --git a/WEB-INF/lib/ttGroupHelper.class.php b/WEB-INF/lib/ttGroupHelper.class.php index 1a32124c..3ae408af 100644 --- a/WEB-INF/lib/ttGroupHelper.class.php +++ b/WEB-INF/lib/ttGroupHelper.class.php @@ -389,4 +389,38 @@ class ttGroupHelper { } return false; } + + // The getActiveInvoices returns an array of active invoices for a group. + static function getActiveInvoices() + { + global $user; + $mdb2 = getConnection(); + + $group_id = $user->getGroup(); + $org_id = $user->org_id; + + $addPaidStatus = $user->isPluginEnabled('ps'); + $result = array(); + + if ($user->isClient()) + $client_part = "and i.client_id = $user->client_id"; + + $sql = "select i.id, i.name, i.date, i.client_id, i.status, c.name as client_name from tt_invoices i". + " left join tt_clients c on (c.id = i.client_id)". + " where i.status = 1 and i.group_id = $group_id and i.org_id = $org_id $client_part order by i.name"; + $res = $mdb2->query($sql); + $result = array(); + if (!is_a($res, 'PEAR_Error')) { + $dt = new DateAndTime(DB_DATEFORMAT); + while ($val = $res->fetchRow()) { + // Localize date. + $dt->parseVal($val['date']); + $val['date'] = $dt->toString($user->getDateFormat()); + if ($addPaidStatus) + $val['paid'] = ttInvoiceHelper::isPaid($val['id']); + $result[] = $val; + } + } + return $result; + } } diff --git a/WEB-INF/lib/ttTeamHelper.class.php b/WEB-INF/lib/ttTeamHelper.class.php index 1e626313..16896ac5 100644 --- a/WEB-INF/lib/ttTeamHelper.class.php +++ b/WEB-INF/lib/ttTeamHelper.class.php @@ -363,38 +363,6 @@ class ttTeamHelper { return false; } - // The getActiveInvoices returns an array of active invoices for a group. - static function getActiveInvoices($localizeDates = true) - { - global $user; - $addPaidStatus = $user->isPluginEnabled('ps'); - - $result = array(); - $mdb2 = getConnection(); - - if ($user->isClient()) - $client_part = " and i.client_id = $user->client_id"; - - $sql = "select i.id, i.name, i.date, i.client_id, i.status, c.name as client_name from tt_invoices i - left join tt_clients c on (c.id = i.client_id) - where i.status = 1 and i.group_id = $user->group_id $client_part order by i.name"; - $res = $mdb2->query($sql); - $result = array(); - if (!is_a($res, 'PEAR_Error')) { - $dt = new DateAndTime(DB_DATEFORMAT); - while ($val = $res->fetchRow()) { - if ($localizeDates) { - $dt->parseVal($val['date']); - $val['date'] = $dt->toString($user->date_format); - } - if ($addPaidStatus) - $val['paid'] = ttInvoiceHelper::isPaid($val['id']); - $result[] = $val; - } - } - return $result; - } - // The getAllInvoices returns an array of all invoices for a group. static function getAllInvoices() { diff --git a/WEB-INF/templates/footer.tpl b/WEB-INF/templates/footer.tpl index e57d10e1..dbb5b1c4 100644 --- a/WEB-INF/templates/footer.tpl +++ b/WEB-INF/templates/footer.tpl @@ -12,7 +12,7 @@
-
 Anuko Time Tracker 1.18.29.4598 | Copyright © Anuko | +  Anuko Time Tracker 1.18.29.4599 | Copyright © Anuko | {$i18n.footer.credits} | {$i18n.footer.license} | {$i18n.footer.improve} diff --git a/invoices.php b/invoices.php index 1723a8d1..eb89e0ea 100644 --- a/invoices.php +++ b/invoices.php @@ -28,7 +28,7 @@ require_once('initialize.php'); import('form.Form'); -import('ttTeamHelper'); +import('ttGroupHelper'); // Access checks. if (!(ttAccessAllowed('manage_invoices') || ttAccessAllowed('view_own_invoices'))) { @@ -40,7 +40,7 @@ if (!$user->isPluginEnabled('iv')) { exit(); } -$invoices = ttTeamHelper::getActiveInvoices(); +$invoices = ttGroupHelper::getActiveInvoices(); $smarty->assign('invoices', $invoices); $smarty->assign('title', $i18n->get('title.invoices'));