Skip to content

Commit ff82909

Browse files
committed
INSTALL : add new plugins in DB
1 parent 694dd7f commit ff82909

3 files changed

Lines changed: 19 additions & 4 deletions

File tree

install/codevtt_tables.sql

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ CREATE TABLE IF NOT EXISTS "codev_plugin_table" (
501501
INSERT INTO "codev_plugin_table" ("name", "status", "domains", "categories", "version", "description") VALUES
502502
('AvailableWorkforceIndicator', 1, 'Team', 'Planning', '1.0.0', 'Man-days available in period, except leaves and external tasks'),
503503
('BacklogPerUserIndicator', 1, 'Team,User,Project,Command,CommandSet,ServiceContract', 'Activity', '1.0.0', 'Check all the tasks and return the backlog per User'),
504-
('BlogPlugin', 1, 'Homepage', 'Internal', '1.0.0', 'Display messages on the homepage'),
504+
('BlogPlugin', 1, 'Homepage', 'Internal', '1.0.0', 'Display a message wall on the homepage<br>Allows Administrators & team members to send messages that will be displayed on other users\' wall'),
505505
('BudgetDriftHistoryIndicator2', 1, 'Command,CommandSet,ServiceContract', 'Roadmap', '1.0.0', 'Display the budget history'),
506506
('CostsIndicator', 1, 'Task,Command,CommandSet,ServiceContract', 'Financial', '1.0.0', 'Compute costs, using the UserDailyCosts defined in team settings'),
507507
('DeadlineAlertIndicator', 1, 'User,Team,Project,Command,CommandSet,ServiceContract', 'Roadmap', '1.0.0', 'Display unresolved tasks that should have been delivered'),
@@ -516,16 +516,21 @@ INSERT INTO "codev_plugin_table" ("name", "status", "domains", "categories", "ve
516516
('LoadPerProjCategoryIndicator', 1, 'Team,Project,User,Command,CommandSet,ServiceContract', 'Activity', '1.0.0', 'Check all the timetracks of the period and return their repartition per project categories'),
517517
('LoadPerProjectIndicator', 1, 'User,Team,Command,CommandSet,ServiceContract', 'Activity', '1.0.0', 'Check all the timetracks of the period and return their repartition per Project'),
518518
('LoadPerUserIndicator', 1, 'Task,Team,User,Project,Command,CommandSet,ServiceContract', 'Activity', '1.0.0', 'Check all the timetracks of the period and return their repartition per User'),
519+
('ManagementCosts', 1, 'ServiceContract', 'Financial', '1.0.0', 'Sum elapsed time on management sideTasks and compare to the sum of command provisions. Returns a result in man-days and costs'),
519520
('ManagementLoadHistoryIndicator', 1, 'ServiceContract', 'Activity', '1.0.0', 'Compares the elapsed time on management sideTasks to the management provisions'),
520521
('MoveIssueTimetracks', 1, 'Admin,TeamAdmin', 'Admin', '1.0.0', 'Move timetracks from one issue to another'),
521522
('ProgressHistoryIndicator2', 1, 'Command,CommandSet,ServiceContract', 'Roadmap', '1.0.0', 'Display the progress history'),
522523
('ReopenedRateIndicator2', 1, 'Team,Project,Command,CommandSet,ServiceContract', 'Quality', '1.0.0', 'Display the bug reopened rate history'),
523524
('StatusHistoryIndicator2', 1, 'Command,Team,User,Project,CommandSet,ServiceContract', 'Quality', '1.0.0', 'Display Issue Status history'),
525+
('SubmittedResolvedHistoryIndicator', 1, 'Command,Team,User,Project,CommandSet,ServiceContract', 'Roadmap', '1.0.0', 'Display the number of issues submitted/resolved in a period'),
526+
('TasksPivotTable', 1, 'Team,User,Project,Command,CommandSet,ServiceContract', 'Activity', '1.0.0', 'Group tasks by adding multiple filters'),
524527
('TimePerStatusIndicator', 1, 'Task', 'Roadmap', '1.0.0', 'Time allocation by status'),
525528
('TimetrackDetailsIndicator', 1, 'Admin', 'Admin', '1.0.0', 'Display additional info on timetracks'),
526-
('UserTeamList', 1, 'Admin', 'Admin', '1.0.0', 'Display a history of all the teams for a given user');
529+
('TimetrackList', 1, 'Task,Command,CommandSet', 'Activity', '1.0.0', 'List and edit timetracks'),
530+
('UserTeamList', 1, 'Admin', 'Admin', '1.0.0', 'Display a history of all the teams for a given user'),
531+
('WBSExport', 1, 'Command', 'Roadmap', '1.0.0', 'export WBS to CSV file');
527532

528-
-- --------------------------------------------------------
533+
-- '--------------------------------------------------------
529534

530535
--
531536
-- Table structure for table "codev_timetrack_note_table"

install/codevtt_update_v18_v19.sql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@ UPDATE "codev_team_table" SET "administrators" = "leader_id";
1919
-- increase size for message plugin
2020
ALTER TABLE "codev_blog_table" MODIFY "content" VARCHAR(2000);
2121

22+
-- insert new plugins
23+
INSERT INTO "codev_plugin_table" ("name", "status", "domains", "categories", "version", "description") VALUES
24+
('ManagementCosts', 1, 'ServiceContract', 'Financial', '1.0.0', 'Sum elapsed time on management sideTasks and compare to the sum of command provisions. Returns a result in man-days and costs'),
25+
('SubmittedResolvedHistoryIndicator', 1, 'Command,Team,User,Project,CommandSet,ServiceContract', 'Roadmap', '1.0.0', 'Display the number of issues submitted/resolved in a period'),
26+
('TasksPivotTable', 1, 'Team,User,Project,Command,CommandSet,ServiceContract', 'Activity', '1.0.0', 'Group tasks by adding multiple filters'),
27+
('TimetrackList', 1, 'Task,Command,CommandSet', 'Activity', '1.0.0', 'List and edit timetracks'),
28+
('WBSExport', 1, 'Command', 'Roadmap', '1.0.0', 'export WBS to CSV file');
29+
30+
UPDATE "codev_plugin_table" SET "status"='1' WHERE "name"='BlogPlugin';
31+
2232
-- tag version
2333
UPDATE "codev_config_table" SET "value"='19' WHERE "config_id"='database_version';
2434

plugins/WBSExport/WBSExport.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static function getName() {
5454
}
5555

5656
public static function getDesc($isShortDesc = true) {
57-
return T_('...');
57+
return T_('Export WBS to CSV file');
5858
}
5959

6060
public static function getAuthor() {

0 commit comments

Comments
 (0)