PMCORE-3362:Relabel Case Title for Case Thead Title in My Cases and Task List for PMCORE_3.7.0

CaseList
This commit is contained in:
Fabio Guachalla
2021-09-28 12:19:49 -04:00
parent ed670e2931
commit 759b0dd5f6
14 changed files with 83 additions and 83 deletions

View File

@@ -19,8 +19,8 @@
<div slot="case_number" slot-scope="props"> <div slot="case_number" slot-scope="props">
{{ props.row.CASE_NUMBER }} {{ props.row.CASE_NUMBER }}
</div> </div>
<div slot="case_title" slot-scope="props"> <div slot="thread_title" slot-scope="props">
{{ props.row.CASE_TITLE }} {{ props.row.THREAD_TITLE }}
</div> </div>
<div slot="process_name" slot-scope="props"> <div slot="process_name" slot-scope="props">
{{ props.row.PROCESS_NAME }} {{ props.row.PROCESS_NAME }}
@@ -85,7 +85,7 @@ export default {
headings: { headings: {
detail: this.$i18n.t("ID_DETAIL_CASE"), detail: this.$i18n.t("ID_DETAIL_CASE"),
case_number: this.$i18n.t("ID_MYCASE_NUMBER"), case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
case_title: this.$i18n.t("ID_CASE_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"),
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"),
@@ -209,7 +209,7 @@ export default {
...v, ...v,
...{ ...{
CASE_NUMBER: v.APP_NUMBER, CASE_NUMBER: v.APP_NUMBER,
CASE_TITLE: v.DEL_TITLE, THREAD_TITLE: v.DEL_TITLE,
PROCESS_NAME: v.PRO_TITLE, PROCESS_NAME: v.PRO_TITLE,
TASK: [ TASK: [
{ {

View File

@@ -132,10 +132,10 @@ export default {
type: "CaseTitle", type: "CaseTitle",
id: "caseTitle", id: "caseTitle",
title: `${this.$i18n.t("ID_FILTER")}: ${this.$i18n.t( title: `${this.$i18n.t("ID_FILTER")}: ${this.$i18n.t(
"ID_BY_CASE_TITLE" "ID_BY_TASK_THREAD_TITLE"
)}`, )}`,
optionLabel: this.$i18n.t("ID_BY_CASE_TITLE"), optionLabel: this.$i18n.t("ID_BY_TASK_THREAD_TITLE"),
tagPrefix: this.$i18n.t("ID_SEARCH_BY_CASE_TITLE"), tagPrefix: this.$i18n.t("ID_SEARCH_BY_TASK_THREAD_TITLE"),
detail: "", detail: "",
tagText: "", tagText: "",
items: [ items: [

View File

@@ -129,7 +129,7 @@ export default {
headers: [], headers: [],
columMap: { columMap: {
case_number: "APP_NUMBER", case_number: "APP_NUMBER",
case_title: "DEL_TITLE", thread_title: "DEL_TITLE",
process_name: "PRO_TITLE", process_name: "PRO_TITLE",
}, },
newCase: { newCase: {

View File

@@ -43,8 +43,8 @@
<div slot="case_number" slot-scope="props"> <div slot="case_number" slot-scope="props">
{{ props.row.CASE_NUMBER }} {{ props.row.CASE_NUMBER }}
</div> </div>
<div slot="case_title" slot-scope="props"> <div slot="thread_title" slot-scope="props">
{{ props.row.CASE_TITLE }} {{ props.row.THREAD_TITLE }}
</div> </div>
<div slot="process_name" slot-scope="props"> <div slot="process_name" slot-scope="props">
{{ props.row.PROCESS_NAME }} {{ props.row.PROCESS_NAME }}
@@ -113,12 +113,12 @@
{{ props["item"]["CASE_NUMBER"] }}</span {{ props["item"]["CASE_NUMBER"] }}</span
> >
</div> </div>
<div slot="case_title" slot-scope="props" class="v-card-text"> <div slot="thread_title" slot-scope="props" class="v-card-text">
<span class="v-card-text-dark" <span class="v-card-text-dark"
>{{ props["headings"][props.column] }} :</span >{{ props["headings"][props.column] }} :</span
> >
<span class="v-card-text-light" <span class="v-card-text-light">
>{{ props["item"]["CASE_TITLE"] }} {{ props["item"]["THREAD_TITLE"] }}
</span> </span>
</div> </div>
<div slot="process_name" slot-scope="props" class="v-card-text"> <div slot="process_name" slot-scope="props" class="v-card-text">
@@ -218,15 +218,15 @@
</b-col> </b-col>
<b-col <b-col
sm="5" sm="5"
slot="case_title" slot="thread_title"
slot-scope="props" slot-scope="props"
class="v-card-text" class="v-card-text"
> >
<span class="v-card-text-dark" <span class="v-card-text-dark"
>{{ props["headings"][props.column] }} :</span >{{ props["headings"][props.column] }} :</span
> >
<span class="v-card-text-light" <span class="v-card-text-light">
>{{ props["item"]["CASE_TITLE"] }} {{ props["item"]["THREAD_TITLE"] }}
</span> </span>
</b-col> </b-col>
<b-col <b-col
@@ -368,7 +368,7 @@ export default {
}, },
columMap: { columMap: {
case_number: "APP_NUMBER", case_number: "APP_NUMBER",
case_title: "DEL_TITLE", thread_title: "DEL_TITLE",
process_name: "PRO_TITLE", process_name: "PRO_TITLE",
}, },
newCase: { newCase: {
@@ -381,7 +381,7 @@ export default {
filters: {}, filters: {},
defaultColumns: [ defaultColumns: [
"case_number", "case_number",
"case_title", "thread_title",
"process_name", "process_name",
"task", "task",
"send_by", "send_by",
@@ -396,7 +396,7 @@ export default {
headings: { headings: {
detail: this.$i18n.t("ID_DETAIL_CASE"), detail: this.$i18n.t("ID_DETAIL_CASE"),
case_number: this.$i18n.t("ID_MYCASE_NUMBER"), case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
case_title: this.$i18n.t("ID_CASE_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"),
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"),
@@ -471,7 +471,7 @@ export default {
}, },
itemMap: { itemMap: {
case_number: "caseNumber", case_number: "caseNumber",
case_title: "caseTitle", thread_title: "caseTitle",
delegation_date: "delegationDate", delegation_date: "delegationDate",
send_by: "bySendBy", send_by: "bySendBy",
process_name: "processName" process_name: "processName"
@@ -548,10 +548,10 @@ export default {
type: "CaseTitle", type: "CaseTitle",
id: "caseTitle", id: "caseTitle",
title: `${this.$i18n.t("ID_FILTER")}: ${this.$i18n.t( title: `${this.$i18n.t("ID_FILTER")}: ${this.$i18n.t(
"ID_BY_CASE_TITLE" "ID_BY_TASK_THREAD_TITLE"
)}`, )}`,
optionLabel: this.$i18n.t("ID_BY_CASE_TITLE"), optionLabel: this.$i18n.t("ID_BY_TASK_THREAD_TITLE"),
tagPrefix: this.$i18n.t("ID_SEARCH_BY_CASE_TITLE"), tagPrefix: this.$i18n.t("ID_SEARCH_BY_TASK_THREAD_TITLE"),
detail: "", detail: "",
tagText: "", tagText: "",
items: [ items: [
@@ -902,7 +902,7 @@ export default {
...v, ...v,
...{ ...{
CASE_NUMBER: v.APP_NUMBER, CASE_NUMBER: v.APP_NUMBER,
CASE_TITLE: v.DEL_TITLE, THREAD_TITLE: v.DEL_TITLE,
PROCESS_NAME: v.PRO_TITLE, PROCESS_NAME: v.PRO_TITLE,
TASK: [ TASK: [
{ {

View File

@@ -11,7 +11,7 @@ export default {
dataCasesList: [], dataCasesList: [],
defaultColumns: [ defaultColumns: [
"case_number", "case_number",
"case_title", "thread_title",
"process_name", "process_name",
"task", "task",
"send_by", "send_by",
@@ -63,7 +63,7 @@ export default {
}, },
headings: { headings: {
case_number: this.$i18n.t("ID_MYCASE_NUMBER"), case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
case_title: this.$i18n.t("ID_CASE_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"),
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"),

View File

@@ -48,8 +48,8 @@
<div slot="case_number" slot-scope="props"> <div slot="case_number" slot-scope="props">
{{ props.row.CASE_NUMBER }} {{ props.row.CASE_NUMBER }}
</div> </div>
<div slot="case_title" slot-scope="props"> <div slot="thread_title" slot-scope="props">
{{ props.row.CASE_TITLE }} {{ props.row.THREAD_TITLE }}
</div> </div>
<div slot="process_name" slot-scope="props"> <div slot="process_name" slot-scope="props">
{{ props.row.PROCESS_NAME }} {{ props.row.PROCESS_NAME }}
@@ -88,12 +88,12 @@
>{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span >{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span
> >
</div> </div>
<div slot="case_title" slot-scope="props" class="v-card-text"> <div slot="thread_title" slot-scope="props" class="v-card-text">
<span class="v-card-text-dark" <span class="v-card-text-dark"
>{{ props["headings"][props.column] }} :</span >{{ props["headings"][props.column] }} :</span
> >
<span class="v-card-text-light" <span class="v-card-text-light">
>{{ props["item"]["CASE_TITLE"] }} {{ props["item"]["THREAD_TITLE"] }}
</span> </span>
</div> </div>
<div slot="process_name" slot-scope="props" class="v-card-text"> <div slot="process_name" slot-scope="props" class="v-card-text">
@@ -162,12 +162,12 @@
>{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span >{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span
> >
</div> </div>
<div slot="case_title" slot-scope="props" class="v-card-text"> <div slot="thread_title" slot-scope="props" class="v-card-text">
<span class="v-card-text-dark" <span class="v-card-text-dark"
>{{ props["headings"][props.column] }} :</span >{{ props["headings"][props.column] }} :</span
> >
<span class="v-card-text-light" <span class="v-card-text-light">
>{{ props["item"]["CASE_TITLE"] }} {{ props["item"]["THREAD_TITLE"] }}
</span> </span>
</div> </div>
<div slot="process_name" slot-scope="props" class="v-card-text"> <div slot="process_name" slot-scope="props" class="v-card-text">
@@ -261,7 +261,7 @@ export default {
}, },
columMap: { columMap: {
case_number: "APP_NUMBER", case_number: "APP_NUMBER",
case_title: "DEL_TITLE", thread_title: "DEL_TITLE",
process_name: "PRO_TITLE" process_name: "PRO_TITLE"
}, },
newCase: { newCase: {
@@ -281,7 +281,7 @@ export default {
: [ : [
"detail", "detail",
"case_number", "case_number",
"case_title", "thread_title",
"process_name", "process_name",
"task", "task",
"priority", "priority",
@@ -294,7 +294,7 @@ export default {
headings: { headings: {
detail: this.$i18n.t("ID_DETAIL_CASE"), detail: this.$i18n.t("ID_DETAIL_CASE"),
case_number: this.$i18n.t("ID_MYCASE_NUMBER"), case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
case_title: this.$i18n.t("ID_CASE_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"),
task: this.$i18n.t("ID_TASK"), task: this.$i18n.t("ID_TASK"),
priority: this.$i18n.t("ID_PRIORITY"), priority: this.$i18n.t("ID_PRIORITY"),
@@ -522,7 +522,7 @@ export default {
_.forEach(response, (v) => { _.forEach(response, (v) => {
data.push({ data.push({
CASE_NUMBER: v.APP_NUMBER, CASE_NUMBER: v.APP_NUMBER,
CASE_TITLE: v.DEL_TITLE, THREAD_TITLE: v.DEL_TITLE,
PROCESS_NAME: v.PRO_TITLE, PROCESS_NAME: v.PRO_TITLE,
TASK: [{ TASK: [{
TITLE: v.TAS_TITLE, TITLE: v.TAS_TITLE,

View File

@@ -52,7 +52,7 @@ export default {
headings: { headings: {
detail: "", detail: "",
case_number: this.$i18n.t("ID_MYCASE_NUMBER"), case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
case_title: this.$i18n.t("ID_CASE_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"),
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"),
@@ -62,7 +62,7 @@ export default {
}, },
columns: [ columns: [
"case_number", "case_number",
"case_title", "thread_title",
"process_name", "process_name",
"due_date", "due_date",
"delegation_date", "delegation_date",

View File

@@ -43,8 +43,8 @@
<div slot="case_number" slot-scope="props"> <div slot="case_number" slot-scope="props">
{{ props.row.CASE_NUMBER }} {{ props.row.CASE_NUMBER }}
</div> </div>
<div slot="case_title" slot-scope="props"> <div slot="thread_title" slot-scope="props">
{{ props.row.CASE_TITLE }} {{ props.row.THREAD_TITLE }}
</div> </div>
<div slot="process_name" slot-scope="props"> <div slot="process_name" slot-scope="props">
{{ props.row.PROCESS_NAME }} {{ props.row.PROCESS_NAME }}
@@ -96,12 +96,12 @@
>{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span >{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span
> >
</div> </div>
<div slot="case_title" slot-scope="props" class="v-card-text"> <div slot="thread_title" slot-scope="props" class="v-card-text">
<span class="v-card-text-dark" <span class="v-card-text-dark"
>{{ props["headings"][props.column] }} :</span >{{ props["headings"][props.column] }} :</span
> >
<span class="v-card-text-light" <span class="v-card-text-light">
>{{ props["item"]["CASE_TITLE"] }} {{ props["item"]["THREAD_TITLE"] }}
</span> </span>
</div> </div>
<div slot="process_name" slot-scope="props" class="v-card-text"> <div slot="process_name" slot-scope="props" class="v-card-text">
@@ -177,12 +177,12 @@
>{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span >{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span
> >
</div> </div>
<div slot="case_title" slot-scope="props" class="v-card-text"> <div slot="thread_title" slot-scope="props" class="v-card-text">
<span class="v-card-text-dark" <span class="v-card-text-dark"
>{{ props["headings"][props.column] }} :</span >{{ props["headings"][props.column] }} :</span
> >
<span class="v-card-text-light" <span class="v-card-text-light">
>{{ props["item"]["CASE_TITLE"] }} {{ props["item"]["THREAD_TITLE"] }}
</span> </span>
</div> </div>
<div slot="process_name" slot-scope="props" class="v-card-text"> <div slot="process_name" slot-scope="props" class="v-card-text">
@@ -290,7 +290,7 @@ export default {
}, },
columMap: { columMap: {
case_number: "APP_NUMBER", case_number: "APP_NUMBER",
case_title: "DEL_TITLE", thread_title: "DEL_TITLE",
process_name: "PRO_TITLE" process_name: "PRO_TITLE"
}, },
newCase: { newCase: {
@@ -310,7 +310,7 @@ export default {
: [ : [
"detail", "detail",
"case_number", "case_number",
"case_title", "thread_title",
"process_name", "process_name",
"task", "task",
"send_by", "send_by",
@@ -326,7 +326,7 @@ export default {
headings: { headings: {
detail: this.$i18n.t("ID_DETAIL_CASE"), detail: this.$i18n.t("ID_DETAIL_CASE"),
case_number: this.$i18n.t("ID_MYCASE_NUMBER"), case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
case_title: this.$i18n.t("ID_CASE_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"),
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"),
@@ -557,7 +557,7 @@ export default {
_.forEach(response, (v) => { _.forEach(response, (v) => {
data.push({ data.push({
CASE_NUMBER: v.APP_NUMBER, CASE_NUMBER: v.APP_NUMBER,
CASE_TITLE: v.DEL_TITLE, THREAD_TITLE: v.DEL_TITLE,
PROCESS_NAME: v.PRO_TITLE, PROCESS_NAME: v.PRO_TITLE,
TASK: [ TASK: [
{ {

View File

@@ -52,7 +52,7 @@ export default {
}, },
headings: { headings: {
case_number: this.$i18n.t("ID_MYCASE_NUMBER"), case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
case_title: this.$i18n.t("ID_CASE_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"),
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"),
@@ -63,7 +63,7 @@ export default {
}, },
columns: [ columns: [
"case_number", "case_number",
"case_title", "thread_title",
"process_name", "process_name",
"due_date", "due_date",
"delegation_date", "delegation_date",

View File

@@ -126,7 +126,7 @@ export default {
headers: [], headers: [],
columMap: { columMap: {
case_number: "APP_NUMBER", case_number: "APP_NUMBER",
case_title: "DEL_TITLE", thread_title: "DEL_TITLE",
process_name: "PRO_TITLE", process_name: "PRO_TITLE",
}, },
random: _.random(0,1000000000), random: _.random(0,1000000000),

View File

@@ -42,8 +42,8 @@
<div slot="case_number" slot-scope="props"> <div slot="case_number" slot-scope="props">
{{ props.row.CASE_NUMBER }} {{ props.row.CASE_NUMBER }}
</div> </div>
<div slot="case_title" slot-scope="props"> <div slot="thread_title" slot-scope="props">
{{ props.row.CASE_TITLE }} {{ props.row.THREAD_TITLE }}
</div> </div>
<div slot="process_name" slot-scope="props"> <div slot="process_name" slot-scope="props">
{{ props.row.PROCESS_NAME }} {{ props.row.PROCESS_NAME }}
@@ -95,12 +95,12 @@
>{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span >{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span
> >
</div> </div>
<div slot="case_title" slot-scope="props" class="v-card-text"> <div slot="thread_title" slot-scope="props" class="v-card-text">
<span class="v-card-text-dark" <span class="v-card-text-dark"
>{{ props["headings"][props.column] }} :</span >{{ props["headings"][props.column] }} :</span
> >
<span class="v-card-text-light" <span class="v-card-text-light">
>{{ props["item"]["CASE_TITLE"] }} {{ props["item"]["THREAD_TITLE"] }}
</span> </span>
</div> </div>
<div slot="process_name" slot-scope="props" class="v-card-text"> <div slot="process_name" slot-scope="props" class="v-card-text">
@@ -176,12 +176,12 @@
>{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span >{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span
> >
</div> </div>
<div slot="case_title" slot-scope="props" class="v-card-text"> <div slot="thread_title" slot-scope="props" class="v-card-text">
<span class="v-card-text-dark" <span class="v-card-text-dark"
>{{ props["headings"][props.column] }} :</span >{{ props["headings"][props.column] }} :</span
> >
<span class="v-card-text-light" <span class="v-card-text-light">
>{{ props["item"]["CASE_TITLE"] }} {{ props["item"]["THREAD_TITLE"] }}
</span> </span>
</div> </div>
<div slot="process_name" slot-scope="props" class="v-card-text"> <div slot="process_name" slot-scope="props" class="v-card-text">
@@ -290,7 +290,7 @@ export default {
}, },
columMap: { columMap: {
case_number: "APP_NUMBER", case_number: "APP_NUMBER",
case_title: "DEL_TITLE", thread_title: "DEL_TITLE",
process_name: "PRO_TITLE" process_name: "PRO_TITLE"
}, },
newCase: { newCase: {
@@ -310,7 +310,7 @@ export default {
: [ : [
"detail", "detail",
"case_number", "case_number",
"case_title", "thread_title",
"process_name", "process_name",
"task", "task",
"send_by", "send_by",
@@ -326,7 +326,7 @@ export default {
headings: { headings: {
detail: this.$i18n.t("ID_DETAIL_CASE"), detail: this.$i18n.t("ID_DETAIL_CASE"),
case_number: this.$i18n.t("ID_MYCASE_NUMBER"), case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
case_title: this.$i18n.t("ID_CASE_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"),
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"),
@@ -556,7 +556,7 @@ export default {
_.forEach(response, (v) => { _.forEach(response, (v) => {
data.push({ data.push({
CASE_NUMBER: v.APP_NUMBER, CASE_NUMBER: v.APP_NUMBER,
CASE_TITLE: v.DEL_TITLE, THREAD_TITLE: v.DEL_TITLE,
PROCESS_NAME: v.PRO_TITLE, PROCESS_NAME: v.PRO_TITLE,
TASK: [{ TASK: [{
TITLE: v.TAS_TITLE, TITLE: v.TAS_TITLE,

View File

@@ -51,7 +51,7 @@ export default {
}, },
headings: { headings: {
case_number: this.$i18n.t("ID_MYCASE_NUMBER"), case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
case_title: this.$i18n.t("ID_CASE_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"),
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"),
@@ -62,7 +62,7 @@ export default {
}, },
columns: [ columns: [
"case_number", "case_number",
"case_title", "thread_title",
"process_name", "process_name",
"due_date", "due_date",
"delegation_date", "delegation_date",

View File

@@ -40,8 +40,8 @@
<div slot="case_number" slot-scope="props"> <div slot="case_number" slot-scope="props">
{{ props.row.CASE_NUMBER }} {{ props.row.CASE_NUMBER }}
</div> </div>
<div slot="case_title" slot-scope="props"> <div slot="thread_title" slot-scope="props">
{{ props.row.CASE_TITLE }} {{ props.row.THREAD_TITLE }}
</div> </div>
<div slot="process_name" slot-scope="props"> <div slot="process_name" slot-scope="props">
{{ props.row.PROCESS_NAME }} {{ props.row.PROCESS_NAME }}
@@ -90,12 +90,12 @@
>{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span >{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span
> >
</div> </div>
<div slot="case_title" slot-scope="props" class="v-card-text"> <div slot="thread_title" slot-scope="props" class="v-card-text">
<span class="v-card-text-dark" <span class="v-card-text-dark"
>{{ props["headings"][props.column] }} :</span >{{ props["headings"][props.column] }} :</span
> >
<span class="v-card-text-light" <span class="v-card-text-light">
>{{ props["item"]["CASE_TITLE"] }} {{ props["item"]["THREAD_TITLE"] }}
</span> </span>
</div> </div>
<div slot="process_name" slot-scope="props" class="v-card-text"> <div slot="process_name" slot-scope="props" class="v-card-text">
@@ -171,12 +171,12 @@
>{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span >{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}</span
> >
</div> </div>
<div slot="case_title" slot-scope="props" class="v-card-text"> <div slot="thread_title" slot-scope="props" class="v-card-text">
<span class="v-card-text-dark" <span class="v-card-text-dark"
>{{ props["headings"][props.column] }} :</span >{{ props["headings"][props.column] }} :</span
> >
<span class="v-card-text-light" <span class="v-card-text-light">
>{{ props["item"]["CASE_TITLE"] }} {{ props["item"]["THREAD_TITLE"] }}
</span> </span>
</div> </div>
<div slot="process_name" slot-scope="props" class="v-card-text"> <div slot="process_name" slot-scope="props" class="v-card-text">
@@ -286,7 +286,7 @@ export default {
}, },
columMap: { columMap: {
case_number: "APP_NUMBER", case_number: "APP_NUMBER",
case_title: "DEL_TITLE", thread_title: "DEL_TITLE",
process_name: "PRO_TITLE" process_name: "PRO_TITLE"
}, },
newCase: { newCase: {
@@ -306,7 +306,7 @@ export default {
: [ : [
"detail", "detail",
"case_number", "case_number",
"case_title", "thread_title",
"process_name", "process_name",
"task", "task",
"send_by", "send_by",
@@ -321,7 +321,7 @@ export default {
headings: { headings: {
detail: this.$i18n.t("ID_DETAIL_CASE"), detail: this.$i18n.t("ID_DETAIL_CASE"),
case_number: this.$i18n.t("ID_MYCASE_NUMBER"), case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
case_title: this.$i18n.t("ID_CASE_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"),
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"),
@@ -521,7 +521,7 @@ export default {
_.forEach(response, (v) => { _.forEach(response, (v) => {
data.push({ data.push({
CASE_NUMBER: v.APP_NUMBER, CASE_NUMBER: v.APP_NUMBER,
CASE_TITLE: v.DEL_TITLE, THREAD_TITLE: v.DEL_TITLE,
PROCESS_NAME: v.PRO_TITLE, PROCESS_NAME: v.PRO_TITLE,
TASK: [{ TASK: [{
TITLE: v.TAS_TITLE, TITLE: v.TAS_TITLE,

View File

@@ -51,7 +51,7 @@ export default {
}, },
headings: { headings: {
case_number: this.$i18n.t("ID_MYCASE_NUMBER"), case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
case_title: this.$i18n.t("ID_CASE_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"),
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"),
@@ -62,7 +62,7 @@ export default {
}, },
columns: [ columns: [
"case_number", "case_number",
"case_title", "thread_title",
"process_name", "process_name",
"due_date", "due_date",
"delegation_date", "delegation_date",