Skip to content
Snippets Groups Projects
Commit c7873e62 authored by Johannes Hörmann's avatar Johannes Hörmann
Browse files

remove ticket buttons in task

parent 20a68fcb
No related branches found
No related tags found
No related merge requests found
......@@ -418,25 +418,6 @@
</entityParameter>
</children>
</entityConsumer>
<entityActionGroup>
<name>tableActions</name>
<children>
<entityActionField>
<name>newBugTicket</name>
<title>New Bugticket</title>
<onActionProcess>%aditoprj%/entity/Task_entity/entityfields/tableactions/children/newbugticket/onActionProcess.js</onActionProcess>
<iconId>VAADIN:PUZZLE_PIECE</iconId>
<tooltip>New Bugticket</tooltip>
</entityActionField>
<entityActionField>
<name>newSupportTicket</name>
<title>New Supportticket</title>
<onActionProcess>%aditoprj%/entity/Task_entity/entityfields/tableactions/children/newsupportticket/onActionProcess.js</onActionProcess>
<iconId>VAADIN:QUESTION</iconId>
<tooltip>New Supportticket</tooltip>
</entityActionField>
</children>
</entityActionGroup>
<entityField>
<name>TYPE</name>
<valueProcess>%aditoprj%/entity/Task_entity/entityfields/type/valueProcess.js</valueProcess>
......
import("system.vars");
import("ActivityTask_lib");
import("KeywordRegistry_basic");
import("Context_lib");
// no parentid as tickets do not use them
TaskUtils.createNewTask(undefined, undefined, ContextUtils.getCurrentContextId(), undefined, {Type_param: $KeywordRegistry.taskType$bugTicket()});
\ No newline at end of file
import("system.vars");
import("ActivityTask_lib");
import("KeywordRegistry_basic");
import("Context_lib");
// no parentid as tickets do not use them
TaskUtils.createNewTask(undefined, undefined, ContextUtils.getCurrentContextId(), undefined, {Type_param: $KeywordRegistry.taskType$supportTicket()});
\ No newline at end of file
......@@ -34,7 +34,6 @@
<children>
<timelineViewTemplate>
<name>TasksTimeline</name>
<favoriteActionGroup1>tableActions</favoriteActionGroup1>
<dateField>MATURITY_DATE</dateField>
<titleField>SUBJECT_DETAILS</titleField>
<descriptionField>DESCRIPTION</descriptionField>
......@@ -43,7 +42,6 @@
</timelineViewTemplate>
<tableViewTemplate>
<name>TasksTable</name>
<favoriteActionGroup1>tableActions</favoriteActionGroup1>
<entityField>#ENTITY</entityField>
<title></title>
<columns>
......@@ -88,7 +86,6 @@
</tableViewTemplate>
<treeTableViewTemplate>
<name>TasksTreeTable</name>
<favoriteActionGroup1>tableActions</favoriteActionGroup1>
<defaultGroupFields>
<element>TYPE</element>
</defaultGroupFields>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment