This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
import authorizationroles from "./authorizationroles";
|
import authorizationroles from "./authorizationroles";
|
||||||
const role = authorizationroles.AUTHORIZATION_ROLES;
|
const role = authorizationroles.AUTHORIZATION_ROLES;
|
||||||
/*
|
/*
|
||||||
WorkOrderOverdueAllList
|
|
||||||
*/
|
*/
|
||||||
export default {
|
export default {
|
||||||
registry: [
|
registry: [
|
||||||
@@ -15,9 +15,7 @@ export default {
|
|||||||
settings: {
|
settings: {
|
||||||
customTitle: null,
|
customTitle: null,
|
||||||
wotags: [],
|
wotags: [],
|
||||||
woitemtags: [],
|
woitemtags: []
|
||||||
techtags: [],
|
|
||||||
userid: null
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -49,20 +49,6 @@
|
|||||||
</v-card-title>
|
</v-card-title>
|
||||||
|
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
|
|
||||||
<gz-pick-list
|
|
||||||
v-model="localSettings.userid"
|
|
||||||
allow-no-selection
|
|
||||||
:aya-type="$ay.ayt().User"
|
|
||||||
variant="tech"
|
|
||||||
:label="$ay.t('WorkOrderItemLaborUserID')"
|
|
||||||
></gz-pick-list>
|
|
||||||
|
|
||||||
<gz-tag-picker
|
|
||||||
v-model="localSettings.techtags"
|
|
||||||
:label="$ay.t('Tags') + ' - ' + $ay.t('User')"
|
|
||||||
></gz-tag-picker>
|
|
||||||
|
|
||||||
<gz-tag-picker
|
<gz-tag-picker
|
||||||
v-model="localSettings.wotags"
|
v-model="localSettings.wotags"
|
||||||
:label="$ay.t('Tags') + ' - ' + $ay.t('WorkOrder')"
|
:label="$ay.t('Tags') + ' - ' + $ay.t('WorkOrder')"
|
||||||
@@ -143,7 +129,7 @@ export default {
|
|||||||
try {
|
try {
|
||||||
this.errorMessage = null;
|
this.errorMessage = null;
|
||||||
const res = await window.$gz.api.post("kpi", {
|
const res = await window.$gz.api.post("kpi", {
|
||||||
KPIName: "WorkOrderOverduePersonalList",
|
KPIName: "WorkOrderOverdueAllList",
|
||||||
criteria: {
|
criteria: {
|
||||||
wotags: this.settings.wotags,
|
wotags: this.settings.wotags,
|
||||||
woitemtags: this.settings.woitemtags
|
woitemtags: this.settings.woitemtags
|
||||||
|
|||||||
@@ -93,6 +93,7 @@ import GzDashLaborHoursEveryoneBar from "../components/dash-labor-hours-everyone
|
|||||||
import GzDashWorkorderUnscheduledOpenList from "../components/dash-workorder-unscheduled-open-list.vue";
|
import GzDashWorkorderUnscheduledOpenList from "../components/dash-workorder-unscheduled-open-list.vue";
|
||||||
import GzDashCSROpenList from "../components/dash-csr-open-list.vue";
|
import GzDashCSROpenList from "../components/dash-csr-open-list.vue";
|
||||||
import GzDashWorkorderOverduePersonalList from "../components/dash-workorder-overdue-personal-list.vue";
|
import GzDashWorkorderOverduePersonalList from "../components/dash-workorder-overdue-personal-list.vue";
|
||||||
|
import GzDashWorkorderOverdueAllList from "../components/dash-workorder-overdue-all-list.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
@@ -105,7 +106,8 @@ export default {
|
|||||||
GzDashCSROpenList,
|
GzDashCSROpenList,
|
||||||
GzDashLaborHoursEveryoneLine,
|
GzDashLaborHoursEveryoneLine,
|
||||||
GzDashLaborHoursEveryoneBar,
|
GzDashLaborHoursEveryoneBar,
|
||||||
GzDashWorkorderOverduePersonalList
|
GzDashWorkorderOverduePersonalList,
|
||||||
|
GzDashWorkorderOverdueAllList
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|||||||
Reference in New Issue
Block a user