From: Nik Okuntseff Date: Sun, 22 Jul 2018 15:36:43 +0000 (+0000) Subject: Introduced show_work_units field in tt_fav_reports table. X-Git-Tag: timetracker_1.19-1~813 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=a9d5914d51687f6f760b9c0e72fc4e99101f2830;p=timetracker.git Introduced show_work_units field in tt_fav_reports table. --- diff --git a/WEB-INF/lib/ttConfigHelper.class.php b/WEB-INF/lib/ttConfigHelper.class.php index 13a2a851..20af19ad 100644 --- a/WEB-INF/lib/ttConfigHelper.class.php +++ b/WEB-INF/lib/ttConfigHelper.class.php @@ -56,7 +56,6 @@ class ttConfigHelper { $this->config = implode(',', $this->config_array); return; } - } else { // Deleting part. foreach ($this->config_array as $key => $value) { diff --git a/WEB-INF/templates/footer.tpl b/WEB-INF/templates/footer.tpl index c1247253..f33073f1 100644 --- a/WEB-INF/templates/footer.tpl +++ b/WEB-INF/templates/footer.tpl @@ -12,7 +12,7 @@
- - - + +
 Anuko Time Tracker 1.17.92.4280 | Copyright © Anuko | +  Anuko Time Tracker 1.17.92.4281 | Copyright © Anuko | {$i18n.footer.credits} | {$i18n.footer.license} | {$i18n.footer.improve} diff --git a/dbinstall.php b/dbinstall.php index 31d5fbf1..b4982498 100644 --- a/dbinstall.php +++ b/dbinstall.php @@ -805,7 +805,7 @@ if ($_POST) { print "Updated $users_updated users...
\n"; } - if ($_POST["convert11744to11788"]) { + if ($_POST["convert11744to11792"]) { setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.44') set rights = replace(rights, 'override_punch_mode,override_date_lock', 'override_punch_mode,override_own_punch_mode,override_date_lock')"); setChange("UPDATE `tt_site_config` SET param_value = '1.17.48' where param_name = 'version_db' and param_value = '1.17.44'"); setChange("update `tt_users` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.48') set role_id = (select id from tt_roles where team_id = 0 and rank = 512) where role = 324"); @@ -899,6 +899,8 @@ if ($_POST) { setChange("UPDATE `tt_site_config` SET param_value = '1.17.87', modified = now() where param_name = 'version_db' and param_value = '1.17.86'"); setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.87') set rights = replace(rights, 'manage_subgroups', 'manage_subgroups,delete_group') where rank = 512"); setChange("UPDATE `tt_site_config` SET param_value = '1.17.88', modified = now() where param_name = 'version_db' and param_value = '1.17.87'"); + setChange("ALTER TABLE `tt_fav_reports` ADD `show_work_units` tinyint(4) NOT NULL DEFAULT '0' AFTER `show_custom_field_1`"); + setChange("UPDATE `tt_site_config` SET param_value = '1.17.92', modified = now() where param_name = 'version_db' and param_value = '1.17.88'"); } if ($_POST["cleanup"]) { @@ -944,7 +946,7 @@ if ($_POST) {

DB Install

-
Create database structure (v1.17.88) + Create database structure (v1.17.92)
(applies only to new installations, do not execute when updating)
@@ -984,8 +986,8 @@ if ($_POST) {

Update database structure (v1.17.44 to v1.17.88)Update database structure (v1.17.44 to v1.17.92)
diff --git a/mysql.sql b/mysql.sql index 37ad65e7..267d842d 100644 --- a/mysql.sql +++ b/mysql.sql @@ -265,6 +265,7 @@ CREATE TABLE `tt_fav_reports` ( `show_end` tinyint(4) NOT NULL default 0, # whether to show end field `show_note` tinyint(4) NOT NULL default 0, # whether to show note column `show_custom_field_1` tinyint(4) NOT NULL default 0, # whether to show custom field 1 + `show_work_units` tinyint(4) NOT NULL default 0, # whether to show work units `show_totals_only` tinyint(4) NOT NULL default 0, # whether to show totals only `group_by` varchar(20) default NULL, # group by field `status` tinyint(4) default 1, # favorite report status @@ -449,4 +450,4 @@ CREATE TABLE `tt_site_config` ( PRIMARY KEY (`param_name`) ); -INSERT INTO `tt_site_config` (`param_name`, `param_value`, `created`) VALUES ('version_db', '1.17.88', now()); # TODO: change when structure changes. +INSERT INTO `tt_site_config` (`param_name`, `param_value`, `created`) VALUES ('version_db', '1.17.92', now()); # TODO: change when structure changes.