@@ -290,7 +290,7 @@ export default {
},
columMap: {
case_number: "APP_NUMBER",
- case_title: "DEL_TITLE",
+ thread_title: "DEL_TITLE",
process_name: "PRO_TITLE"
},
newCase: {
@@ -310,7 +310,7 @@ export default {
: [
"detail",
"case_number",
- "case_title",
+ "thread_title",
"process_name",
"task",
"send_by",
@@ -326,7 +326,7 @@ export default {
headings: {
detail: this.$i18n.t("ID_DETAIL_CASE"),
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"),
task: this.$i18n.t("ID_TASK"),
send_by: this.$i18n.t("ID_SEND_BY"),
@@ -557,7 +557,7 @@ export default {
_.forEach(response, (v) => {
data.push({
CASE_NUMBER: v.APP_NUMBER,
- CASE_TITLE: v.DEL_TITLE,
+ THREAD_TITLE: v.DEL_TITLE,
PROCESS_NAME: v.PRO_TITLE,
TASK: [
{
diff --git a/resources/assets/js/home/Inbox/defaultMixins.js b/resources/assets/js/home/Inbox/defaultMixins.js
index 89cd28a9f..badbe4d69 100644
--- a/resources/assets/js/home/Inbox/defaultMixins.js
+++ b/resources/assets/js/home/Inbox/defaultMixins.js
@@ -52,7 +52,7 @@ export default {
},
headings: {
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"),
task: this.$i18n.t("ID_TASK"),
send_by: this.$i18n.t("ID_SEND_BY"),
@@ -63,7 +63,7 @@ export default {
},
columns: [
"case_number",
- "case_title",
+ "thread_title",
"process_name",
"due_date",
"delegation_date",
diff --git a/resources/assets/js/home/MyCases/MyCases.vue b/resources/assets/js/home/MyCases/MyCases.vue
index e61031700..7ddc57793 100644
--- a/resources/assets/js/home/MyCases/MyCases.vue
+++ b/resources/assets/js/home/MyCases/MyCases.vue
@@ -126,7 +126,7 @@ export default {
headers: [],
columMap: {
case_number: "APP_NUMBER",
- case_title: "DEL_TITLE",
+ thread_title: "DEL_TITLE",
process_name: "PRO_TITLE",
},
random: _.random(0,1000000000),
diff --git a/resources/assets/js/home/Paused/Paused.vue b/resources/assets/js/home/Paused/Paused.vue
index 83da9bcd7..79aaf6538 100644
--- a/resources/assets/js/home/Paused/Paused.vue
+++ b/resources/assets/js/home/Paused/Paused.vue
@@ -42,8 +42,8 @@
{{ props.row.CASE_NUMBER }}
-
- {{ props.row.CASE_TITLE }}
+
+ {{ props.row.THREAD_TITLE }}
{{ props.row.PROCESS_NAME }}
@@ -95,12 +95,12 @@
>{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}
-
+
{{ props["headings"][props.column] }} :
- {{ props["item"]["CASE_TITLE"] }}
+
+ {{ props["item"]["THREAD_TITLE"] }}
@@ -176,12 +176,12 @@
>{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}
-
+
{{ props["headings"][props.column] }} :
- {{ props["item"]["CASE_TITLE"] }}
+
+ {{ props["item"]["THREAD_TITLE"] }}
@@ -290,7 +290,7 @@ export default {
},
columMap: {
case_number: "APP_NUMBER",
- case_title: "DEL_TITLE",
+ thread_title: "DEL_TITLE",
process_name: "PRO_TITLE"
},
newCase: {
@@ -310,7 +310,7 @@ export default {
: [
"detail",
"case_number",
- "case_title",
+ "thread_title",
"process_name",
"task",
"send_by",
@@ -326,7 +326,7 @@ export default {
headings: {
detail: this.$i18n.t("ID_DETAIL_CASE"),
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"),
task: this.$i18n.t("ID_TASK"),
send_by: this.$i18n.t("ID_SEND_BY"),
@@ -556,7 +556,7 @@ export default {
_.forEach(response, (v) => {
data.push({
CASE_NUMBER: v.APP_NUMBER,
- CASE_TITLE: v.DEL_TITLE,
+ THREAD_TITLE: v.DEL_TITLE,
PROCESS_NAME: v.PRO_TITLE,
TASK: [{
TITLE: v.TAS_TITLE,
diff --git a/resources/assets/js/home/Paused/defaultMixins.js b/resources/assets/js/home/Paused/defaultMixins.js
index 262fa2d2a..09d157b4d 100644
--- a/resources/assets/js/home/Paused/defaultMixins.js
+++ b/resources/assets/js/home/Paused/defaultMixins.js
@@ -51,7 +51,7 @@ export default {
},
headings: {
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"),
task: this.$i18n.t("ID_TASK"),
send_by: this.$i18n.t("ID_SEND_BY"),
@@ -62,7 +62,7 @@ export default {
},
columns: [
"case_number",
- "case_title",
+ "thread_title",
"process_name",
"due_date",
"delegation_date",
diff --git a/resources/assets/js/home/Unassigned/Unassigned.vue b/resources/assets/js/home/Unassigned/Unassigned.vue
index b58762ff0..4542910b3 100644
--- a/resources/assets/js/home/Unassigned/Unassigned.vue
+++ b/resources/assets/js/home/Unassigned/Unassigned.vue
@@ -40,8 +40,8 @@
{{ props.row.CASE_NUMBER }}
-
- {{ props.row.CASE_TITLE }}
+
+ {{ props.row.THREAD_TITLE }}
{{ props.row.PROCESS_NAME }}
@@ -90,12 +90,12 @@
>{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}
-
+
{{ props["headings"][props.column] }} :
- {{ props["item"]["CASE_TITLE"] }}
+
+ {{ props["item"]["THREAD_TITLE"] }}
@@ -171,12 +171,12 @@
>{{ props["headings"][props.column] }} : {{ props["item"]["CASE_NUMBER"] }}
-
+
{{ props["headings"][props.column] }} :
- {{ props["item"]["CASE_TITLE"] }}
+
+ {{ props["item"]["THREAD_TITLE"] }}
@@ -286,7 +286,7 @@ export default {
},
columMap: {
case_number: "APP_NUMBER",
- case_title: "DEL_TITLE",
+ thread_title: "DEL_TITLE",
process_name: "PRO_TITLE"
},
newCase: {
@@ -306,7 +306,7 @@ export default {
: [
"detail",
"case_number",
- "case_title",
+ "thread_title",
"process_name",
"task",
"send_by",
@@ -321,7 +321,7 @@ export default {
headings: {
detail: this.$i18n.t("ID_DETAIL_CASE"),
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"),
task: this.$i18n.t("ID_TASK"),
send_by: this.$i18n.t("ID_SEND_BY"),
@@ -521,7 +521,7 @@ export default {
_.forEach(response, (v) => {
data.push({
CASE_NUMBER: v.APP_NUMBER,
- CASE_TITLE: v.DEL_TITLE,
+ THREAD_TITLE: v.DEL_TITLE,
PROCESS_NAME: v.PRO_TITLE,
TASK: [{
TITLE: v.TAS_TITLE,
diff --git a/resources/assets/js/home/Unassigned/defaultMixins.js b/resources/assets/js/home/Unassigned/defaultMixins.js
index 67e7173a6..c8ed8c93a 100644
--- a/resources/assets/js/home/Unassigned/defaultMixins.js
+++ b/resources/assets/js/home/Unassigned/defaultMixins.js
@@ -51,7 +51,7 @@ export default {
},
headings: {
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"),
task: this.$i18n.t("ID_TASK"),
send_by: this.$i18n.t("ID_SEND_BY"),
@@ -62,7 +62,7 @@ export default {
},
columns: [
"case_number",
- "case_title",
+ "thread_title",
"process_name",
"due_date",
"delegation_date",