Added plugin where users monthly quota can be set and tracked by users.
authorAnže Videnič <anze.videnic@gmail.com>
Mon, 23 May 2016 14:52:09 +0000 (16:52 +0200)
committerAnže Videnič <anze.videnic@gmail.com>
Mon, 23 May 2016 14:52:09 +0000 (16:52 +0200)
24 files changed:
.gitignore
WEB-INF/lib/ttTimeHelper.class.php
WEB-INF/resources/de.lang.php
WEB-INF/resources/en.lang.php
WEB-INF/resources/es.lang.php
WEB-INF/resources/fa.lang.php
WEB-INF/resources/fi.lang.php
WEB-INF/resources/fr.lang.php
WEB-INF/resources/he.lang.php
WEB-INF/resources/nl.lang.php
WEB-INF/resources/pl.lang.php
WEB-INF/resources/pt-br.lang.php
WEB-INF/resources/ru.lang.php
WEB-INF/resources/sk.lang.php
WEB-INF/resources/sr.lang.php
WEB-INF/templates/cf_monthly_quota.tpl [new file with mode: 0644]
WEB-INF/templates/profile_edit.tpl
WEB-INF/templates/time.tpl
cf_monthly_quota.php [new file with mode: 0644]
dbinstall.php
mysql.sql
plugins/MonthlyQuota.class.php [new file with mode: 0644]
profile_edit.php
time.php

index 883ae87..c1b019f 100644 (file)
@@ -2,4 +2,6 @@ config.php
 WEB-INF/templates_c/*.php
 WEB-INF/templates_c/*.png
 WEB-INF/lib/tcpdf/
-nbproject/
\ No newline at end of file
+nbproject/
+upload/
+.vscode/
\ No newline at end of file
index 29b7414..f378d0c 100644 (file)
@@ -146,13 +146,10 @@ class ttTimeHelper {
     return (int)@$time_a[1] + ((int)@$time_a[0]) * 60;
   }
   
-  // toDuration - calculates duration between start and finish times in 00:00 format.
-  static function toDuration($start, $finish) {
-    $duration_minutes = ttTimeHelper::toMinutes($finish) - ttTimeHelper::toMinutes($start);
-    if ($duration_minutes <= 0) return false;
-    
-    $hours = (string)((int)($duration_minutes / 60));
-    $mins = (string)($duration_minutes % 60);
+  // fromMinutes - converts a number of minutes to format 00:00
+  static function fromMinutes($minutes){
+    $hours = (string)((int)($minutes / 60));
+    $mins = (string)(abs($minutes % 60));
     if (strlen($hours) == 1)
       $hours = '0'.$hours;
     if (strlen($mins) == 1)
@@ -160,6 +157,14 @@ class ttTimeHelper {
     return $hours.':'.$mins;
   }
   
+  // toDuration - calculates duration between start and finish times in 00:00 format.
+  static function toDuration($start, $finish) {
+    $duration_minutes = ttTimeHelper::toMinutes($finish) - ttTimeHelper::toMinutes($start);
+    if ($duration_minutes <= 0) return false;
+    
+    return ttTimeHelper::fromMinutes($duration_minutes);
+  }
+  
   // The to12HourFormat function converts a 24-hour time value (such as 15:23) to 12 hour format (03:23 PM).
   static function to12HourFormat($value) {
        if ('24:00' == $value) return '12:00 AM';
@@ -488,6 +493,21 @@ class ttTimeHelper {
     return 0;
   }
   
+  // getTimeForMonth - gets total time for a user for a given month.
+  static function getTimeForMonth($user_id, $date){
+    import('Period');
+    $mdb2 = getConnection();
+    
+    $period = new Period(INTERVAL_THIS_MONTH, $date);
+    $sql = "select sum(time_to_sec(duration)) as sm from tt_log where user_id = $user_id and date >= '".$period->getBeginDate(DB_DATEFORMAT)."' and date <= '".$period->getEndDate(DB_DATEFORMAT)."' and status = 1";
+    $res = $mdb2->query($sql);
+    if (!is_a($res, 'PEAR_Error')) {
+      $val = $res->fetchRow();
+      return sec_to_time_fmt_hm($val['sm']);
+    }
+    return 0;
+  }
+  
   // getUncompleted - retrieves an uncompleted record for user, if one exists.
   static function getUncompleted($user_id) {
     $mdb2 = getConnection();
index b3b37fd..24f18b6 100644 (file)
@@ -154,6 +154,9 @@ $i18n_key_words = array(
 'label.cost' => 'Kosten',
 'label.week_total' => 'Summe (Woche)',
 'label.day_total' => 'Summe (Tag)',
+// 'label.month_total' => 'Month total',
+// 'label.month_left' => 'Time until quota is met',
+// 'label.month_over' => 'Over monthly quota',
 'label.today' => 'Heute',
 'label.total_hours' => 'Gesamtstunden',
 'label.total_cost' => 'Totale Kosten',
@@ -197,6 +200,9 @@ $i18n_key_words = array(
 // TODO: translate the following strings.
 // 'label.cron_schedule' => 'Cron schedule',
 // 'label.what_is_it' => 'What is it?',
+// 'label.year' => 'Year',
+// 'label.month' => 'Month',
+// 'label.quota' => 'Quota',
 
 // Form titles.
 'title.login' => 'Anmelden',
@@ -243,6 +249,7 @@ $i18n_key_words = array(
 // 'title.add_notification' => 'Adding Notification',
 // 'title.edit_notification' => 'Editing Notification',
 // 'title.delete_notification' => 'Deleting Notification',
+// 'title.monthly_quota' => 'Monthly quota',
 'title.export' => 'Daten exportieren',
 'title.import' => 'Daten importieren',
 'title.options' => 'Optionen',
index 8a4fe50..f540a93 100644 (file)
@@ -153,6 +153,9 @@ $i18n_key_words = array(
 'label.cost' => 'Cost',
 'label.week_total' => 'Week total',
 'label.day_total' => 'Day total',
+'label.month_total' => 'Month total',
+'label.month_left' => 'Time until quota is met',
+'label.month_over' => 'Over monthly quota',
 'label.today' => 'Today',
 'label.total_hours' => 'Total hours',
 'label.total_cost' => 'Total cost',
@@ -193,6 +196,9 @@ $i18n_key_words = array(
 'label.fav_report' => 'Favorite report',
 'label.cron_schedule' => 'Cron schedule',
 'label.what_is_it' => 'What is it?',
+'label.year' => 'Year',
+'label.month' => 'Month',
+'label.quota' => 'Quota',
 
 // Form titles.
 'title.login' => 'Login',
@@ -238,6 +244,7 @@ $i18n_key_words = array(
 'title.add_notification' => 'Adding Notification',
 'title.edit_notification' => 'Editing Notification',
 'title.delete_notification' => 'Deleting Notification',
+'title.monthly_quota' => 'Monthly quota',
 'title.export' => 'Exporting Team Data',
 'title.import' => 'Importing Team Data',
 'title.options' => 'Options',
index 153df47..dfdaba3 100644 (file)
@@ -178,6 +178,9 @@ $i18n_key_words = array(
 // 'label.cost' => 'Cost',
 // 'label.week_total' => 'Week total',
 // 'label.day_total' => 'Day total',
+// 'label.month_total' => 'Month total',
+// 'label.month_left' => 'Time until quota is met',
+// 'label.month_over' => 'Over monthly quota',
 'label.today' => 'Hoy',
 'label.total_hours' => 'Horas totales',
 // TODO: translate the following strings.
@@ -228,6 +231,9 @@ $i18n_key_words = array(
 // TODO: translate the following strings.
 // 'label.cron_schedule' => 'Cron schedule',
 // 'label.what_is_it' => 'What is it?',
+// 'label.year' => 'Year',
+// 'label.month' => 'Month',
+// 'label.quota' => 'Quota',
 
 // Form titles.
 'title.login' => 'Sesión iniciada',
@@ -281,6 +287,7 @@ $i18n_key_words = array(
 // 'title.add_notification' => 'Adding Notification',
 // 'title.edit_notification' => 'Editing Notification',
 // 'title.delete_notification' => 'Deleting Notification',
+// 'title.monthly_quota' => 'Monthly quota',
 'title.export' => 'Exportar datos',
 'title.import' => 'Importar datos',
 'title.options' => 'Opciones',
index 22b04cb..d63ec4f 100644 (file)
@@ -162,6 +162,9 @@ $i18n_key_words = array(
 'label.cost' => 'هزینه',
 'label.week_total' => 'کل هفته',
 'label.day_total' => 'کل روز',
+// 'label.month_total' => 'Month total',
+// 'label.month_left' => 'Time until quota is met',
+// 'label.month_over' => 'Over monthly quota',
 'label.today' => 'امروز',
 'label.total_hours' => 'مجموع ساعت',
 'label.total_cost' => 'مجموع هزینه ها',
@@ -205,6 +208,9 @@ $i18n_key_words = array(
 // TODO: translate the following strings.
 // 'label.cron_schedule' => 'Cron schedule',
 // 'label.what_is_it' => 'What is it?',
+// 'label.year' => 'Year',
+// 'label.month' => 'Month',
+// 'label.quota' => 'Quota',
 
 // Form titles.
 'title.login' => 'ورود',
@@ -252,6 +258,7 @@ $i18n_key_words = array(
 // 'title.add_notification' => 'Adding Notification',
 // 'title.edit_notification' => 'Editing Notification',
 // 'title.delete_notification' => 'Deleting Notification',
+// 'title.monthly_quota' => 'Monthly quota',
 'title.export' => 'پشتیانی گرفتن از اطلاعات تیم',
 'title.import' => 'وارد کردن اطلاعات تیم',
 'title.options' => 'گزینه ها',
index 88f08e1..be0b52d 100644 (file)
@@ -156,6 +156,9 @@ $i18n_key_words = array(
 'label.cost' => 'Hinta',
 'label.week_total' => 'Viikko yhteensä',
 'label.day_total' => 'Päivä yhteensä',
+// 'label.month_total' => 'Month total',
+// 'label.month_left' => 'Time until quota is met',
+// 'label.month_over' => 'Over monthly quota',
 'label.today' => 'Tänään',
 'label.total_hours' => 'Tunnit yhteensä',
 'label.total_cost' => 'Hinta yhteensä',
@@ -197,6 +200,9 @@ $i18n_key_words = array(
 'label.fav_report' => 'Raporttipohja',
 'label.cron_schedule' => 'Cron-ajoitus',
 'label.what_is_it' => 'Mikä se on?',
+// 'label.year' => 'Year',
+// 'label.month' => 'Month',
+// 'label.quota' => 'Quota',
 
 // TODO? missing?
 'label.page' => 'Sivu',
@@ -245,6 +251,7 @@ $i18n_key_words = array(
 'title.add_notification' => 'Ilmoituksen lisäys',
 'title.edit_notification' => 'Ilmoituksen muokkaus',
 'title.delete_notification' => 'Ilmoituksen poisto',
+// 'title.monthly_quota' => 'Monthly quota',
 'title.export' => 'Tiimitietojen vienti',
 'title.import' => 'Tiimitietojen tunti',
 'title.options' => 'Optiot',
index 52b17db..e9e71fd 100644 (file)
@@ -166,6 +166,9 @@ $i18n_key_words = array(
 'label.week_total' => 'Total hebdomadaire',
 // TODO: translate the following string.
 // 'label.day_total' => 'Day total',
+// 'label.month_total' => 'Month total',
+// 'label.month_left' => 'Time until quota is met',
+// 'label.month_over' => 'Over monthly quota',
 'label.today' => 'Aujourd\\\'hui',
 'label.total_hours' => 'Total d\\\'heures',
 'label.total_cost' => 'Coût total',
@@ -210,6 +213,9 @@ $i18n_key_words = array(
 // TODO: translate the following strings.
 // 'label.cron_schedule' => 'Cron schedule',
 // 'label.what_is_it' => 'What is it?',
+// 'label.year' => 'Year',
+// 'label.month' => 'Month',
+// 'label.quota' => 'Quota',
 
 // Form titles.
 'title.login' => 'Connexion',
@@ -260,6 +266,7 @@ $i18n_key_words = array(
 // 'title.add_notification' => 'Adding Notification',
 // 'title.edit_notification' => 'Editing Notification',
 // 'title.delete_notification' => 'Deleting Notification',
+// 'title.monthly_quota' => 'Monthly quota',
 'title.export' => 'Exporter les données', // TODO: use a noun.
 'title.import' => 'Importer les données', // TODO: use a noun.
 'title.options' => 'Options',
index 698a92b..e3ef87a 100644 (file)
@@ -167,6 +167,9 @@ $i18n_key_words = array(
 'label.cost' => 'עלות',
 'label.week_total' => 'סיכום שבועי',
 'label.day_total' => 'סיכום יומי',
+// 'label.month_total' => 'Month total',
+// 'label.month_left' => 'Time until quota is met',
+// 'label.month_over' => 'Over monthly quota',
 'label.today' => 'היום',
 'label.total_hours' => 'סך הכל שעות',
 'label.total_cost' => 'סך הכל עלות',
@@ -210,6 +213,9 @@ $i18n_key_words = array(
 // TODO: translate the following strings.
 // 'label.cron_schedule' => 'Cron schedule',
 // 'label.what_is_it' => 'What is it?',
+// 'label.year' => 'Year',
+// 'label.month' => 'Month',
+// 'label.quota' => 'Quota',
 
 // Form titles.
 'title.login' => 'כניסה',
@@ -258,6 +264,7 @@ $i18n_key_words = array(
 // 'title.add_notification' => 'Adding Notification',
 // 'title.edit_notification' => 'Editing Notification',
 // 'title.delete_notification' => 'Deleting Notification',
+// 'title.monthly_quota' => 'Monthly quota',
 'title.export' => 'ייצוא נתוני צוות',
 'title.import' => 'ייבוא נתוני צוות',
 'title.options' => 'אפשרויות',
index 187bc81..e3862ad 100644 (file)
@@ -153,6 +153,9 @@ $i18n_key_words = array(
 'label.cost' => 'Kosten',
 'label.week_total' => 'Week totaal',
 'label.day_total' => 'Dag totaal',
+// 'label.month_total' => 'Month total',
+// 'label.month_left' => 'Time until quota is met',
+// 'label.month_over' => 'Over monthly quota',
 'label.today' => 'Vandaag',
 'label.total_hours' => 'Uren totaal',
 'label.total_cost' => 'Totale kosten',
@@ -193,6 +196,9 @@ $i18n_key_words = array(
 'label.fav_report' => 'Standaard rapport',
 'label.cron_schedule' => 'Cron schema',
 'label.what_is_it' => 'Wat betekent dit?',
+// 'label.year' => 'Year',
+// 'label.month' => 'Month',
+// 'label.quota' => 'Quota',
 
 // Form titles.
 'title.login' => 'Aanmelden',
@@ -238,6 +244,7 @@ $i18n_key_words = array(
 'title.add_notification' => 'Notificatie toevoegen',
 'title.edit_notification' => 'Notificatie bewerken',
 'title.delete_notification' => 'Notificatie verwijderen',
+// 'title.monthly_quota' => 'Monthly quota',
 'title.export' => 'Exporteer teamgegevens',
 'title.import' => 'Importeer teamgegevens',
 'title.options' => 'Opties',
index b2abad4..59257b1 100644 (file)
@@ -156,6 +156,9 @@ $i18n_key_words = array(
 'label.cost' => 'Koszt',
 'label.week_total' => 'W tym tygodniu',
 'label.day_total' => 'Dziś',
+// 'label.month_total' => 'Month total',
+// 'label.month_left' => 'Time until quota is met',
+// 'label.month_over' => 'Over monthly quota',
 'label.today' => 'Dziś',
 'label.total_hours' => 'Całkowita liczba godzin',
 'label.total_cost' => 'Koszt całkowity',
@@ -197,6 +200,9 @@ $i18n_key_words = array(
 'label.fav_report' => 'Ulubiony raport',
 'label.cron_schedule' => 'Harmonogram crona',
 'label.what_is_it' => 'Co to jest?',
+// 'label.year' => 'Year',
+// 'label.month' => 'Month',
+// 'label.quota' => 'Quota',
 
 // Form titles.
 'title.login' => 'Logowanie',
@@ -242,6 +248,7 @@ $i18n_key_words = array(
 'title.add_notification' => 'Dodawanie powiadomienia',
 'title.edit_notification' => 'Edytowanie powiadomienia',
 'title.delete_notification' => 'Usuwanie powiadomienia',
+// 'title.monthly_quota' => 'Monthly quota',
 'title.export' => 'Eksport danych zespołu',
 'title.import' => 'Import danych zespołu',
 'title.options' => 'Opcje',
index 1dd84e3..f52a9df 100644 (file)
@@ -151,6 +151,9 @@ $i18n_key_words = array(
 'label.cost' => 'Custo',
 'label.week_total' => 'Total semanal',
 'label.day_total' => 'Total diário',
+// 'label.month_total' => 'Month total',
+// 'label.month_left' => 'Time until quota is met',
+// 'label.month_over' => 'Over monthly quota',
 'label.today' => 'Hoje',
 'label.total_hours' => 'Total de horas',
 'label.total_cost' => 'Custo total',
@@ -191,6 +194,9 @@ $i18n_key_words = array(
 'label.fav_report' => 'Relatório favorito',
 'label.cron_schedule' => 'Agenda cron',
 'label.what_is_it' => 'O que é?',
+// 'label.year' => 'Year',
+// 'label.month' => 'Month',
+// 'label.quota' => 'Quota',
 
 // Form titles.
 'title.login' => 'Login',
@@ -236,6 +242,7 @@ $i18n_key_words = array(
 'title.add_notification' => 'Adicionando notificação',
 'title.edit_notification' => 'Editando notificação',
 'title.delete_notification' => 'Apagando notificação',
+// 'title.monthly_quota' => 'Monthly quota',
 'title.export' => 'Exportando dados de equipe',
 'title.import' => 'Importando dados de equipe',
 'title.options' => 'Opções',
index 9c99e14..932f0a9 100644 (file)
@@ -153,6 +153,9 @@ $i18n_key_words = array(
 'label.cost' => 'Стоимость',
 'label.week_total' => 'Итог за неделю',
 'label.day_total' => 'Итог за день',
+// 'label.month_total' => 'Month total',
+// 'label.month_left' => 'Time until quota is met',
+// 'label.month_over' => 'Over monthly quota',
 'label.today' => 'Сегодня',
 'label.total_hours' => 'Итого часов',
 'label.total_cost' => 'Итоговая стоимость',
@@ -193,6 +196,9 @@ $i18n_key_words = array(
 'label.fav_report' => 'Стандартный отчёт',
 'label.cron_schedule' => 'Расписание cron',
 'label.what_is_it' => 'Что это?',
+// 'label.year' => 'Year',
+// 'label.month' => 'Month',
+// 'label.quota' => 'Quota',
 
 // Form titles.
 'title.login' => 'Вход в систему',
@@ -238,6 +244,7 @@ $i18n_key_words = array(
 'title.add_notification' => 'Добавление уведомления',
 'title.edit_notification' => 'Редактирование уведомления',
 'title.delete_notification' => 'Удаление уведомления',
+// 'title.monthly_quota' => 'Monthly quota',
 'title.export' => 'Экспортирование данных команды',
 'title.import' => 'Импортирование данных команды',
 'title.options' => 'Опции',
index bd3abd8..6ee28ba 100644 (file)
@@ -164,6 +164,9 @@ $i18n_key_words = array(
 'label.week_total' => 'Týždeň celkom',
 // TODO: translate the following string.
 // 'label.day_total' => 'Day total',
+// 'label.month_total' => 'Month total',
+// 'label.month_left' => 'Time until quota is met',
+// 'label.month_over' => 'Over monthly quota',
 'label.today' => 'Dnes',
 'label.total_hours' => 'Hodín celkom',
 'label.total_cost' => 'Náklady celkom',
@@ -207,6 +210,9 @@ $i18n_key_words = array(
 // TODO: translate the following strings.
 // 'label.cron_schedule' => 'Cron schedule',
 // 'label.what_is_it' => 'What is it?',
+// 'label.year' => 'Year',
+// 'label.month' => 'Month',
+// 'label.quota' => 'Quota',
 
 // Form titles.
 'title.login' => 'Prihlásenie',
@@ -255,6 +261,7 @@ $i18n_key_words = array(
 // 'title.add_notification' => 'Adding Notification',
 // 'title.edit_notification' => 'Editing Notification',
 // 'title.delete_notification' => 'Deleting Notification',
+// 'title.monthly_quota' => 'Monthly quota',
 'title.export' => 'Exportovanie údajov o tíme',
 'title.import' => 'Importovanie údajov o tíme',
 'title.options' => 'Nastavenia',
index 8e42f96..b24a57b 100644 (file)
@@ -153,6 +153,9 @@ $i18n_key_words = array(
 'label.cost' => 'Cena',
 'label.week_total' => 'Zbir časova nedeljno',
 'label.day_total' => 'Zbir časova dnevno',
+// 'label.month_total' => 'Month total',
+// 'label.month_left' => 'Time until quota is met',
+// 'label.month_over' => 'Over monthly quota',
 'label.today' => 'Danas',
 'label.total_hours' => 'Ukupno časova',
 'label.total_cost' => 'Ukupna cena',
@@ -193,6 +196,9 @@ $i18n_key_words = array(
 'label.fav_report' => 'Omiljeni izveštaji',
 'label.cron_schedule' => 'Sredi raspored',
 'label.what_is_it' => 'Šta je ovo?',
+// 'label.year' => 'Year',
+// 'label.month' => 'Month',
+// 'label.quota' => 'Quota',
 
 // Form titles.
 'title.login' => 'Prijava',
@@ -238,6 +244,7 @@ $i18n_key_words = array(
 'title.add_notification' => 'Dodavanje napomene',
 'title.edit_notification' => 'Izmena napomene',
 'title.delete_notification' => 'Brisanje napomene',
+// 'title.monthly_quota' => 'Monthly quota',
 'title.export' => 'Izvoz podataka tim-a',
 'title.import' => 'Uvoz podataka tim-a',
 'title.options' => 'Opcije',
diff --git a/WEB-INF/templates/cf_monthly_quota.tpl b/WEB-INF/templates/cf_monthly_quota.tpl
new file mode 100644 (file)
index 0000000..8243eb1
--- /dev/null
@@ -0,0 +1,43 @@
+{$forms.monthlyQuotaForm.open}
+<table>
+    <tr>
+        <td>{$i18n.label.year}</td>
+        <td>{$forms.monthlyQuotaForm.years.control}</td>
+    </tr>
+    <tr>
+        <td colspan="2">
+            <table> 
+            <tr>
+                <td class="tableHeader">{$i18n.label.month}</td>
+                <td class="tableHeader">{$i18n.label.quota}</td>
+            </tr>
+ {foreach $months as $month}
+                <tr>
+                    <td>{$month}</td>
+                    <td>{$forms.monthlyQuotaForm.$month.control}</td>
+                </tr>
+ {/foreach}         
+                <tr>
+                    <td colspan="2" style="text-align:center;">
+                        <input type="submit" value="{$i18n.button.save}">
+                    </td>
+                </tr>
+            </table>
+        </td>
+    </tr>
+</table>
+{$forms.monthlyQuotaForm.close}
+<script>
+function yearChange(value){
+    var url = window.location.href;
+    
+    if (url.indexOf('?') > 0){
+        var parameter = url.substring(url.indexOf('?') + 1, url.length);
+        url = url.replace(parameter, 'year=' + value);
+    } else {
+        url = '?year=' + value;
+    }
+    
+    window.location = url;
+}
+</script>
\ No newline at end of file
index 8d68c3e..2da8041 100644 (file)
@@ -52,6 +52,15 @@ function handlePluginCheckboxes() {
   } else {
     configureLabel.style.visibility = "hidden";
   }
+  
+  var monthlyQuotaCheckBox = document.getElementById("monthly_quota");
+  configureLabel = document.getElementById("monthly_quota_config");
+  if (monthlyQuotaCheckBox.checked){
+    configureLabel.style.visibility = "visible";
+  } else {
+  configureLabel.style.visibility = "hidden";
+  }
+  
 }
 </script>
 
@@ -181,7 +190,11 @@ function handlePluginCheckboxes() {
           </tr>
           <tr>
             <td align="right" nowrap>{$forms.profileForm.locking.control}</td>
-            <td><label for="notifications">{$i18n.title.locking}</label> <span id="locking_config"><a href="locking.php">{$i18n.label.configure}</a></span></td>
+            <td><label for="locking">{$i18n.title.locking}</label> <span id="locking_config"><a href="locking.php">{$i18n.label.configure}</a></span></td>
+          </tr>
+          <tr>
+            <td align="right" nowrap>{$forms.profileForm.monthly_quota.control}</td>
+            <td><label for="monthly_quota">{$i18n.title.monthly_quota}</label> <span id="monthly_quota_config"><a href="cf_monthly_quota.php">{$i18n.label.configure}</a></span></td>
           </tr>
 {/if}
 
index 089e57c..da04410 100644 (file)
@@ -354,6 +354,16 @@ function get_time() {
     <td align="left">{$i18n.label.week_total}: {$week_total}</td>
     <td align="right">{$i18n.label.day_total}: {$day_total}</td>
   </tr>
+  {if $month_total}
+  <tr>
+    <td align="left">{$i18n.label.month_total}: {$month_total}</td>
+    {if $month_left|strpos:'-' === 0}
+    <td align="right">{$i18n.label.month_over}: <span style="color: green;">{$month_left|substr:1}</span></td>
+    {else}
+    <td align="right">{$i18n.label.month_left}: <span style="color: red;">{$month_left}</span></td>
+    {/if}
+  </tr>
+  {/if}
 </table>
 {/if}
 {$forms.timeRecordForm.close}
diff --git a/cf_monthly_quota.php b/cf_monthly_quota.php
new file mode 100644 (file)
index 0000000..0264684
--- /dev/null
@@ -0,0 +1,53 @@
+<?php
+
+require_once('initialize.php');
+require_once('plugins/MonthlyQuota.class.php');
+import('form.Form');
+
+// Access check.
+if (!ttAccessCheck(right_manage_team)) {
+  header('Location: access_denied.php');
+  exit();
+}
+
+$form = new Form('monthlyQuotaForm');
+// months are zero indexed
+$months = $i18n->monthNames;
+$years = array();
+for ($i=1990; $i < 2040; $i++) { 
+  array_push($years, array('id'=>$i, 'name'=>$i));
+}
+
+$year = $request->getParameter("year");
+if (!$year or !ttValidInteger($year)){
+  $year = date("Y");
+}else {
+  $year = intval($year);
+}
+
+$quota = new MonthlyQuota();
+
+if ($request->isPost()){
+  $postedYear = $request->getParameter("years");
+  $year = intval($postedYear);
+  for ($i=0; $i < count($months); $i++){
+    $quota->update($postedYear, $i+1, $request->getParameter($months[$i]));
+  }
+}
+
+// returns months where January is month 1, not 0
+$monthsData = $quota->get($year);
+
+$form->addInput(array('type'=>'combobox', 'name'=>'years', 'data'=>$years, 'datakeys'=>array('id', 'name'), 'value'=>$year, 'onchange'=>'yearChange(this.value);'));
+for ($i=0; $i < count($months); $i++) { 
+  $value = "";
+  if (array_key_exists($i+1, $monthsData)){
+    $value = $monthsData[$i+1];
+  }
+  $name = $months[$i];
+  $form->addInput(array('type'=>'text', 'name'=>$name, 'maxlength'=>3, 'value'=> $value, 'style'=>'width:50px'));
+}
+$smarty->assign('months', $months);
+$smarty->assign('forms', array($form->getName()=>$form->toArray()));
+$smarty->assign('content_page_name', 'cf_monthly_quota.tpl');
+$smarty->display('index.tpl');
index 39c967a..8964d93 100644 (file)
@@ -519,6 +519,10 @@ if ($_POST) {
     setChange("ALTER TABLE tt_teams ADD COLUMN lock_spec varchar(255) default NULL");
     setChange("ALTER TABLE tt_teams DROP locktime");
   }
+  
+  if ($_POST["convert1900to1930"]){
+    setChange("CREATE TABLE `timetracker`.`tt_monthly_quota` ( `year` SMALLINT UNSIGNED NOT NULL , `month` TINYINT UNSIGNED NOT NULL , `quota` SMALLINT UNSIGNED NOT NULL , PRIMARY KEY (`year`, `month`))");
+  }
 
   // The update_clients function updates projects field in tt_clients table.
   if ($_POST["update_clients"]) {
@@ -622,7 +626,7 @@ if ($_POST) {
 <h2>DB Install</h2>
 <table width="80%" border="1" cellpadding="10" cellspacing="0">
   <tr>
-    <td width="80%"><b>Create database structure (v1.9)</b>
+    <td width="80%"><b>Create database structure (v1.9.30)</b>
     <br>(applies only to new installations, do not execute when updating)</br></td><td><input type="submit" name="crstructure" value="Create"></td>
   </tr>
 </table>
@@ -657,6 +661,10 @@ if ($_POST) {
     <td>Update database structure (v1.6 to v1.9)</td>
     <td><input type="submit" name="convert1600to1900" value="Update"><br></td>
   </tr>
+  <tr valign="top">
+    <td>Update database structure (v1.9 to v1.9.30)</td>
+    <td><input type="submit" name="convert1900to1930" value="Update"><br></td>
+  </tr>
 </table>
 
 <h2>DB Maintenance</h2>
index f566df7..1734852 100644 (file)
--- a/mysql.sql
+++ b/mysql.sql
@@ -338,3 +338,15 @@ create index user_idx on tt_expense_items(user_id);
 create index client_idx on tt_expense_items(client_id);
 create index project_idx on tt_expense_items(project_id);
 create index invoice_idx on tt_expense_items(invoice_id);
+
+#
+# Structure for table tt_monthly_quota.
+# This table lists expense items.
+#
+
+CREATE TABLE `tt_monthly_quota` ( 
+  `year` SMALLINT UNSIGNED NOT NULL ,   # year we'setting monthly quota for
+  `month` TINYINT UNSIGNED NOT NULL ,   # month we're settng monthly quota for
+  `quota` SMALLINT UNSIGNED NOT NULL ,  # the monthly quota
+  PRIMARY KEY (`year`, `month`)
+);
diff --git a/plugins/MonthlyQuota.class.php b/plugins/MonthlyQuota.class.php
new file mode 100644 (file)
index 0000000..ed1c9f8
--- /dev/null
@@ -0,0 +1,141 @@
+<?php
+
+class MonthlyQuota {
+    
+    var $db;
+    var $holidays;
+    // Old style constructors are DEPRECATED in PHP 7.0, and will be removed in a future version. You should always use __construct() in new code.
+    function __construct() {
+        $this->db = getConnection();
+        $i18n = $GLOBALS['I18N'];
+        $this->holidays = $i18n->holidays;
+    }
+    
+    public function update($year, $month, $quota) {
+        $deleteSql = "DELETE FROM tt_monthly_quota WHERE year = $year AND month = $month";
+        $this->db->exec($deleteSql);
+        $insertSql = "INSERT INTO tt_monthly_quota (year, month, quota) values ($year, $month, $quota)";
+        $affected = $this->db->exec($insertSql);
+        return (!is_a($affected, 'PEAR_Error'));
+    }
+        
+    public function get($year, $month) {
+        
+        if (is_null($month)){
+            return $this->getMany($year);
+        }
+        
+        return $this->getSingle($year, $month);
+    }
+    
+    private function getSingle($year, $month) {
+        
+        $sql = "SELECT quota FROM tt_monthly_quota WHERE year = $year AND month = $month";
+        $reader = $this->db->query($sql);
+        if (is_a($reader, 'PEAR_Error')) {
+            return false;
+        }
+        
+        $row = $reader->fetchRow();
+        
+        // if we don't find a record, return calculated monthly quota
+        if (is_null($row)){
+            
+            $holidaysWithYear = array();
+            foreach ($this->holidays as $day) {
+                $parts = explode("/", $day);
+                $holiday = "$year-$parts[0]-$parts[1]";
+                array_push($holidaysWithYear, $holiday);
+            }
+            
+            $daysInMonth = cal_days_in_month(CAL_GREGORIAN, $month, $year);
+            return $this->getWorkingDays("$year-$month-01", "$year-$month-$daysInMonth", $holidaysWithYear) * 8;
+        }
+        
+        return $row["quota"];  
+    }
+    
+    private function getMany($year){
+        $sql = "SELECT year, month, quota FROM tt_monthly_quota WHERE year = $year";
+        $result = array();
+        $res = $this->db->query($sql);
+        if (is_a($res, 'PEAR_Error')) {
+            return false;
+        }
+        
+        while ($val = $res->fetchRow()) {
+            $result[$val["month"]] = $val["quota"];
+            // $result[] = $val;
+        }        
+        
+        return $result;
+    }
+    
+    //The function returns the no. of business days between two dates and it skips the holidays
+    private function getWorkingDays($startDate, $endDate, $holidays) {
+        // do strtotime calculations just once
+        $endDate = strtotime($endDate);
+        $startDate = strtotime($startDate);
+
+        //The total number of days between the two dates. We compute the no. of seconds and divide it to 60*60*24
+        //We add one to inlude both dates in the interval.
+        $days = ($endDate - $startDate) / 86400 + 1;
+
+        $noOfFullWeeks = floor($days / 7);
+        $noOfRemainingDays = fmod($days, 7);
+
+        //It will return 1 if it's Monday,.. ,7 for Sunday
+        $firstDayofWeek = date("N", $startDate);
+        $lastDayofWeek = date("N", $endDate);
+
+        //---->The two can be equal in leap years when february has 29 days, the equal sign is added here
+        //In the first case the whole interval is within a week, in the second case the interval falls in two weeks.
+        if ($firstDayofWeek <= $lastDayofWeek) {
+            if ($firstDayofWeek <= 6 && 6 <= $lastDayofWeek) {
+                $noOfRemainingDays--;                
+            }
+            
+            if ($firstDayofWeek <= 7 && 7 <= $lastDayofWeek) {
+                $noOfRemainingDays--;
+            }
+        }
+        else {
+            // (edit by Tokes to fix an edge case where the start day was a Sunday
+            // and the end day was NOT a Saturday)
+
+            // the day of the week for start is later than the day of the week for end
+            if ($firstDayofWeek == 7) {
+                // if the start date is a Sunday, then we definitely subtract 1 day
+                $noOfRemainingDays--;
+
+                if ($lastDayofWeek == 6) {
+                    // if the end date is a Saturday, then we subtract another day
+                    $noOfRemainingDays--;
+                }
+            }
+            else {
+                // the start date was a Saturday (or earlier), and the end date was (Mon..Fri)
+                // so we skip an entire weekend and subtract 2 days
+                $noOfRemainingDays -= 2;
+            }
+        }
+
+        //T he no. of business days is: (number of weeks between the two dates) * (5 working days) + the remainder
+        // ---->february in none leap years gave a remainder of 0 but still calculated weekends between first and last day, this is one way to fix it
+        $workingDays = $noOfFullWeeks * 5;
+        if ($noOfRemainingDays > 0 ) {
+            $workingDays += $noOfRemainingDays;
+        }
+
+        // We subtract the holidays
+        foreach($holidays as $holiday){
+            $timeStamp = strtotime($holiday);
+            // If the holiday doesn't fall in weekend
+            // TODO: add handling for countries where they move non working day to first working day if holiday is on weekends
+            if ($startDate <= $timeStamp && $timeStamp <= $endDate && date("N", $timeStamp) != 6 && date("N", $timeStamp ) != 7)
+                $workingDays--;
+        }
+
+        return $workingDays;
+    }
+}
\ No newline at end of file
index 5ccccf5..d5c4967 100644 (file)
@@ -69,6 +69,7 @@ if ($request->isPost()) {
     $cl_tax_expenses = $request->getParameter('tax_expenses');
     $cl_notifications = $request->getParameter('notifications');
     $cl_locking = $request->getParameter('locking');
+    $cl_monthly_quota = $request->getParameter('monthly_quota');
   }
 } else {
   $cl_name = $user->name;
@@ -92,11 +93,12 @@ if ($request->isPost()) {
     $cl_clients = in_array('cl', $plugins);
     $cl_client_required = in_array('cm', $plugins);
     $cl_invoices = in_array('iv', $plugins);
-    $cl_custom_fields = in_array('cf', $plugins);
+    $cl_custom_fields = in_array('cf', $plugins);    
     $cl_expenses = in_array('ex', $plugins);
     $cl_tax_expenses = in_array('et', $plugins);
     $cl_notifications = in_array('no', $plugins);
     $cl_locking = in_array('lk', $plugins);
+    $cl_monthly_quota = in_array('mq', $plugins);
   }
 }
 
@@ -176,6 +178,7 @@ if ($user->canManageTeam()) {
   $form->addInput(array('type'=>'checkbox','name'=>'tax_expenses','data'=>1,'value'=>$cl_tax_expenses));
   $form->addInput(array('type'=>'checkbox','name'=>'notifications','data'=>1,'value'=>$cl_notifications,'onchange'=>'handlePluginCheckboxes()'));
   $form->addInput(array('type'=>'checkbox','name'=>'locking','data'=>1,'value'=>$cl_locking,'onchange'=>'handlePluginCheckboxes()'));
+  $form->addInput(array('type'=>'checkbox','name'=>'monthly_quota','data'=>1,'value'=>$cl_monthly_quota,'onchange'=>'handlePluginCheckboxes()'));
 }
 $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->getKey('button.save')));
 
@@ -226,6 +229,8 @@ if ($request->isPost()) {
         $plugins .= ',no';
       if ($cl_locking)
         $plugins .= ',lk';
+      if ($cl_monthly_quota)
+        $plugins .= ',mq';
       $plugins = trim($plugins, ',');
 
       $update_result = ttTeamHelper::update($user->team_id, array(
index f0f2c7d..9a34d30 100644 (file)
--- a/time.php
+++ b/time.php
@@ -63,6 +63,17 @@ if ($user->isPluginEnabled('cf')) {
   $smarty->assign('custom_fields', $custom_fields);
 }
 
+if ($user->isPluginEnabled('mq')){
+  require_once('plugins/MonthlyQuota.class.php');
+  $quota = new MonthlyQuota();
+  $monthlyQuota = $quota->get($selected_date->mYear, $selected_date->mMonth);
+  $month_total = ttTimeHelper::getTimeForMonth($user->getActiveUser(), $selected_date);
+  $minutesLeft = ttTimeHelper::toMinutes($monthlyQuota) - ttTimeHelper::toMinutes($month_total);
+  
+  $smarty->assign('month_total', $month_total);
+  $smarty->assign('month_left', ttTimeHelper::fromMinutes($minutesLeft));
+}
+
 // Initialize variables.
 $cl_start = trim($request->getParameter('start'));
 $cl_finish = trim($request->getParameter('finish'));