update translations
This commit is contained in:
@@ -17,7 +17,7 @@
|
|||||||
></b-form-radio-group>
|
></b-form-radio-group>
|
||||||
<b-form-group> </b-form-group>
|
<b-form-group> </b-form-group>
|
||||||
<b-form-checkbox-group
|
<b-form-checkbox-group
|
||||||
id="checkbox-1"
|
id="checkbox-custom-filter"
|
||||||
v-model="selectedCheckbox"
|
v-model="selectedCheckbox"
|
||||||
:options="getFilterColletion('checkbox')"
|
:options="getFilterColletion('checkbox')"
|
||||||
value-field="id"
|
value-field="id"
|
||||||
@@ -61,6 +61,7 @@
|
|||||||
{{ tagContent(tag) }}
|
{{ tagContent(tag) }}
|
||||||
</div>
|
</div>
|
||||||
<component
|
<component
|
||||||
|
:filters="filters"
|
||||||
v-bind:is="tagComponent(tag)"
|
v-bind:is="tagComponent(tag)"
|
||||||
v-bind:info="tagInfo(tag)"
|
v-bind:info="tagInfo(tag)"
|
||||||
v-bind:tag="tag"
|
v-bind:tag="tag"
|
||||||
@@ -82,6 +83,7 @@ import SearchPopover from "./popovers/SearchPopover.vue";
|
|||||||
import CaseNumber from "./popovers/CaseNumber.vue";
|
import CaseNumber from "./popovers/CaseNumber.vue";
|
||||||
import CaseTitle from "./popovers/CaseTitle.vue";
|
import CaseTitle from "./popovers/CaseTitle.vue";
|
||||||
import ProcessName from "./popovers/ProcessName.vue";
|
import ProcessName from "./popovers/ProcessName.vue";
|
||||||
|
import ProcessCategory from "./popovers/ProcessCategory.vue";
|
||||||
import DateFilter from "./popovers/DateFilter.vue";
|
import DateFilter from "./popovers/DateFilter.vue";
|
||||||
import TaskTitle from "./popovers/TaskTitle.vue";
|
import TaskTitle from "./popovers/TaskTitle.vue";
|
||||||
import CurrentUser from "./popovers/CurrentUser.vue";
|
import CurrentUser from "./popovers/CurrentUser.vue";
|
||||||
@@ -97,6 +99,7 @@ export default {
|
|||||||
CaseNumber,
|
CaseNumber,
|
||||||
CaseTitle,
|
CaseTitle,
|
||||||
ProcessName,
|
ProcessName,
|
||||||
|
ProcessCategory,
|
||||||
DateFilter,
|
DateFilter,
|
||||||
TaskTitle,
|
TaskTitle,
|
||||||
CurrentUser,
|
CurrentUser,
|
||||||
@@ -113,11 +116,13 @@ export default {
|
|||||||
selectedCheckbox: [],
|
selectedCheckbox: [],
|
||||||
itemModel: {},
|
itemModel: {},
|
||||||
byProcessName: "",
|
byProcessName: "",
|
||||||
|
byProcessCategory: "",
|
||||||
criteriaItemsRadio: [],
|
criteriaItemsRadio: [],
|
||||||
criteriaItemsCheckbox: [],
|
criteriaItemsCheckbox: [],
|
||||||
showProcessName: true,
|
showProcessName: true,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
mounted(){},
|
||||||
watch: {
|
watch: {
|
||||||
filters: {
|
filters: {
|
||||||
immediate: true,
|
immediate: true,
|
||||||
@@ -365,3 +370,9 @@ export default {
|
|||||||
line-height: 3vw;
|
line-height: 3vw;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
<style>
|
||||||
|
#checkbox-custom-filter > .custom-control-inline{
|
||||||
|
display: block !important;
|
||||||
|
margin-right: 1rem;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -162,7 +162,7 @@ export default {
|
|||||||
headings: {
|
headings: {
|
||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
||||||
process_category: this.$i18n.t("ID_PROCESS_CATEGORY"),
|
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
||||||
status: this.$i18n.t("ID_STATUS"),
|
status: this.$i18n.t("ID_STATUS"),
|
||||||
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
||||||
task: this.$i18n.t("ID_TASK"),
|
task: this.$i18n.t("ID_TASK"),
|
||||||
|
|||||||
@@ -58,7 +58,9 @@
|
|||||||
<div slot="process_name" slot-scope="props">
|
<div slot="process_name" slot-scope="props">
|
||||||
{{ props.row.PROCESS_NAME }}
|
{{ props.row.PROCESS_NAME }}
|
||||||
</div>
|
</div>
|
||||||
|
<div slot="process_category" slot-scope="props">
|
||||||
|
{{ props.row.PROCESS_CATEGORY }}
|
||||||
|
</div>
|
||||||
<div slot="task" slot-scope="props">
|
<div slot="task" slot-scope="props">
|
||||||
<TaskCell :data="props.row.TASK" />
|
<TaskCell :data="props.row.TASK" />
|
||||||
</div>
|
</div>
|
||||||
@@ -136,6 +138,9 @@
|
|||||||
<span v-if="column === 'process_name'" class="v-card-text-highlight">
|
<span v-if="column === 'process_name'" class="v-card-text-highlight">
|
||||||
{{ props["item"]["PROCESS_NAME"] }}
|
{{ props["item"]["PROCESS_NAME"] }}
|
||||||
</span>
|
</span>
|
||||||
|
<span v-if="column === 'process_category'" class="v-card-text-highlight">
|
||||||
|
{{ props["item"]["PROCESS_CATEGORY"] }}
|
||||||
|
</span>
|
||||||
<span v-if="column === 'due_date'" class="v-card-text-highlight">
|
<span v-if="column === 'due_date'" class="v-card-text-highlight">
|
||||||
{{ props["item"]["DUE_DATE"] }}
|
{{ props["item"]["DUE_DATE"] }}
|
||||||
</span>
|
</span>
|
||||||
@@ -195,6 +200,9 @@
|
|||||||
<span v-if="column === 'process_name'" class="v-card-text-highlight">
|
<span v-if="column === 'process_name'" class="v-card-text-highlight">
|
||||||
{{ props["item"]["PROCESS_NAME"] }}
|
{{ props["item"]["PROCESS_NAME"] }}
|
||||||
</span>
|
</span>
|
||||||
|
<span v-if="column === 'process_category'" class="v-card-text-highlight">
|
||||||
|
{{ props["item"]["PROCESS_CATEGORY"] }}
|
||||||
|
</span>
|
||||||
<span v-if="column === 'due_date'" class="v-card-text-highlight">
|
<span v-if="column === 'due_date'" class="v-card-text-highlight">
|
||||||
{{ props["item"]["DUE_DATE"] }}
|
{{ props["item"]["DUE_DATE"] }}
|
||||||
</span>
|
</span>
|
||||||
@@ -332,6 +340,7 @@ export default {
|
|||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
||||||
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
||||||
|
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
||||||
task: this.$i18n.t("ID_TASK"),
|
task: this.$i18n.t("ID_TASK"),
|
||||||
send_by: this.$i18n.t("ID_SEND_BY"),
|
send_by: this.$i18n.t("ID_SEND_BY"),
|
||||||
due_date: this.$i18n.t("ID_DUE_DATE"),
|
due_date: this.$i18n.t("ID_DUE_DATE"),
|
||||||
@@ -408,7 +417,8 @@ export default {
|
|||||||
thread_title: "caseTitle",
|
thread_title: "caseTitle",
|
||||||
delegation_date: "delegationDate",
|
delegation_date: "delegationDate",
|
||||||
send_by: "bySendBy",
|
send_by: "bySendBy",
|
||||||
process_name: "processName"
|
process_name: "processName",
|
||||||
|
process_category: "processCategory"
|
||||||
},
|
},
|
||||||
customItems:{
|
customItems:{
|
||||||
VARCHAR: {
|
VARCHAR: {
|
||||||
@@ -592,6 +602,28 @@ export default {
|
|||||||
return `${this.tagPrefix} ${data[0].options && data[0].options.label || ''}`;
|
return `${this.tagPrefix} ${data[0].options && data[0].options.label || ''}`;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
processCategory: {
|
||||||
|
group: "checkbox",
|
||||||
|
type: "ProcessCategory",
|
||||||
|
id: "processCategory",
|
||||||
|
title: `${this.$i18n.t('ID_FILTER')}: ${this.$i18n.t('ID_BY_PROCESS_CATEGORY')}`,
|
||||||
|
optionLabel: this.$i18n.t('ID_BY_PROCESS_CATEGORY'),
|
||||||
|
detail: "",
|
||||||
|
tagText: "",
|
||||||
|
tagPrefix: this.$i18n.t('ID_SEARCH_BY_PROCESS_CATEGORY'),
|
||||||
|
autoShow: false,
|
||||||
|
items:[
|
||||||
|
{
|
||||||
|
id: "process",
|
||||||
|
value: "",
|
||||||
|
options: [],
|
||||||
|
placeholder: this.$i18n.t('ID_CATEGORY_PROCESS')
|
||||||
|
}
|
||||||
|
],
|
||||||
|
makeTagText: function (params, data) {
|
||||||
|
return `${this.tagPrefix} ${data[0].options && data[0].options.label || ''}`;
|
||||||
|
}
|
||||||
|
},
|
||||||
showUserTooltip: true
|
showUserTooltip: true
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -860,6 +892,7 @@ export default {
|
|||||||
CASE_NUMBER: v.APP_NUMBER,
|
CASE_NUMBER: v.APP_NUMBER,
|
||||||
THREAD_TITLE: v.DEL_TITLE,
|
THREAD_TITLE: v.DEL_TITLE,
|
||||||
PROCESS_NAME: v.PRO_TITLE,
|
PROCESS_NAME: v.PRO_TITLE,
|
||||||
|
PROCESS_CATEGORY: v.CATEGORY,
|
||||||
TASK: [
|
TASK: [
|
||||||
{
|
{
|
||||||
TITLE: v.TAS_TITLE,
|
TITLE: v.TAS_TITLE,
|
||||||
|
|||||||
@@ -315,7 +315,7 @@ export default {
|
|||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
||||||
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
||||||
process_category: this.$i18n.t("ID_PROCESS_CATEGORY"),
|
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
||||||
task: this.$i18n.t("ID_TASK"),
|
task: this.$i18n.t("ID_TASK"),
|
||||||
priority: this.$i18n.t("ID_PRIORITY"),
|
priority: this.$i18n.t("ID_PRIORITY"),
|
||||||
actions: ""
|
actions: ""
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ export default {
|
|||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
||||||
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
||||||
process_category: this.$i18n.t("ID_PROCESS_CATEGORY"),
|
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
||||||
task: this.$i18n.t("ID_TASK"),
|
task: this.$i18n.t("ID_TASK"),
|
||||||
current_user: this.$i18n.t("ID_CURRENT_USER"),
|
current_user: this.$i18n.t("ID_CURRENT_USER"),
|
||||||
due_date: this.$i18n.t("ID_DUE_DATE"),
|
due_date: this.$i18n.t("ID_DUE_DATE"),
|
||||||
|
|||||||
@@ -361,7 +361,7 @@ export default {
|
|||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
||||||
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
||||||
process_category: this.$i18n.t("ID_PROCESS_CATEGORY"),
|
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
||||||
task: this.$i18n.t("ID_TASK"),
|
task: this.$i18n.t("ID_TASK"),
|
||||||
send_by: this.$i18n.t("ID_SEND_BY"),
|
send_by: this.$i18n.t("ID_SEND_BY"),
|
||||||
due_date: this.$i18n.t("ID_DUE_DATE"),
|
due_date: this.$i18n.t("ID_DUE_DATE"),
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ export default {
|
|||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
||||||
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
||||||
process_category: this.$i18n.t("ID_PROCESS_CATEGORY"),
|
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
||||||
task: this.$i18n.t("ID_TASK"),
|
task: this.$i18n.t("ID_TASK"),
|
||||||
send_by: this.$i18n.t("ID_SEND_BY"),
|
send_by: this.$i18n.t("ID_SEND_BY"),
|
||||||
current_user: this.$i18n.t("ID_CURRENT_USER"),
|
current_user: this.$i18n.t("ID_CURRENT_USER"),
|
||||||
|
|||||||
@@ -164,7 +164,7 @@ export default {
|
|||||||
headings: {
|
headings: {
|
||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
||||||
process_category: this.$i18n.t("ID_PROCESS_CATEGORY"),
|
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
||||||
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
||||||
pending_taks: this.$i18n.t("ID_PENDING_TASKS"),
|
pending_taks: this.$i18n.t("ID_PENDING_TASKS"),
|
||||||
status: this.$i18n.t("ID_CASESLIST_APP_STATUS"),
|
status: this.$i18n.t("ID_CASESLIST_APP_STATUS"),
|
||||||
|
|||||||
@@ -361,7 +361,7 @@ export default {
|
|||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
||||||
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
||||||
process_category: this.$i18n.t("ID_PROCESS_CATEGORY"),
|
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
||||||
task: this.$i18n.t("ID_TASK"),
|
task: this.$i18n.t("ID_TASK"),
|
||||||
send_by: this.$i18n.t("ID_SEND_BY"),
|
send_by: this.$i18n.t("ID_SEND_BY"),
|
||||||
due_date: this.$i18n.t("ID_DUE_DATE"),
|
due_date: this.$i18n.t("ID_DUE_DATE"),
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ export default {
|
|||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
||||||
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
||||||
process_category: this.$i18n.t("ID_PROCESS_CATEGORY"),
|
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
||||||
task: this.$i18n.t("ID_TASK"),
|
task: this.$i18n.t("ID_TASK"),
|
||||||
send_by: this.$i18n.t("ID_SEND_BY"),
|
send_by: this.$i18n.t("ID_SEND_BY"),
|
||||||
current_user: this.$i18n.t("ID_CURRENT_USER"),
|
current_user: this.$i18n.t("ID_CURRENT_USER"),
|
||||||
|
|||||||
@@ -353,7 +353,7 @@ export default {
|
|||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
||||||
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
||||||
process_category: this.$i18n.t("ID_PROCESS_CATEGORY"),
|
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
||||||
task: this.$i18n.t("ID_TASK"),
|
task: this.$i18n.t("ID_TASK"),
|
||||||
send_by: this.$i18n.t("ID_SEND_BY"),
|
send_by: this.$i18n.t("ID_SEND_BY"),
|
||||||
due_date: this.$i18n.t("ID_DUE_DATE"),
|
due_date: this.$i18n.t("ID_DUE_DATE"),
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ export default {
|
|||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
||||||
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
process_name: this.$i18n.t("ID_PROCESS_NAME"),
|
||||||
process_category: this.$i18n.t("ID_PROCESS_CATEGORY"),
|
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
||||||
task: this.$i18n.t("ID_TASK"),
|
task: this.$i18n.t("ID_TASK"),
|
||||||
send_by: this.$i18n.t("ID_SEND_BY"),
|
send_by: this.$i18n.t("ID_SEND_BY"),
|
||||||
current_user: this.$i18n.t("ID_CURRENT_USER"),
|
current_user: this.$i18n.t("ID_CURRENT_USER"),
|
||||||
|
|||||||
Reference in New Issue
Block a user