This commit is contained in:
@@ -31,7 +31,7 @@ FIRST CLIENT SOURCE CODE COMMIT JAN 3rd 2019
|
|||||||
# SEEDING ISSUES
|
# SEEDING ISSUES
|
||||||
seeder wolabor is being created in the future fucking the kpi stuff or at least looking weird
|
seeder wolabor is being created in the future fucking the kpi stuff or at least looking weird
|
||||||
no labor or date centric items should be created in the future, that's nonsensical
|
no labor or date centric items should be created in the future, that's nonsensical
|
||||||
|
seeder sb some that are not scheduled to show off widget, i.e. newly created with no items or no scheduled users at least
|
||||||
seeder wo created date not set properly, should match the way it's generated
|
seeder wo created date not set properly, should match the way it's generated
|
||||||
seeder wo need new fields and generate data to show off and test kpi widgets and features
|
seeder wo need new fields and generate data to show off and test kpi widgets and features
|
||||||
Add completed date to workorder, should be set when a closed status is set
|
Add completed date to workorder, should be set when a closed status is set
|
||||||
|
|||||||
@@ -10,13 +10,15 @@
|
|||||||
v-on="$listeners"
|
v-on="$listeners"
|
||||||
>
|
>
|
||||||
<template slot="main">
|
<template slot="main">
|
||||||
<v-sheet height="400">
|
<v-sheet height="400" class="overflow-auto">
|
||||||
<!-- {{ obj }} -->
|
<div v-if="obj.length == 0" class="ml-3 mt-1 text-h6">
|
||||||
|
{{ $ay.t("NoData") }}
|
||||||
|
</div>
|
||||||
<template v-for="(item, i) in obj">
|
<template v-for="(item, i) in obj">
|
||||||
<v-list-item :key="i" two-line :to="'/svc-workorders/' + item.id">
|
<v-list-item :key="i" two-line :to="'/svc-workorders/' + item.id">
|
||||||
<v-list-item-content>
|
<v-list-item-content>
|
||||||
<v-list-item-title
|
<v-list-item-title
|
||||||
><span class="text-h6">{{ item.serial }}</span
|
><span class="text-h6 primary--text">{{ item.serial }}</span
|
||||||
><span class="ml-4">{{ $ay.dt(item.servicedate) }}</span>
|
><span class="ml-4">{{ $ay.dt(item.servicedate) }}</span>
|
||||||
<span class="ml-4">{{ item.name }}</span></v-list-item-title
|
<span class="ml-4">{{ item.name }}</span></v-list-item-title
|
||||||
>
|
>
|
||||||
@@ -24,15 +26,6 @@
|
|||||||
</v-list-item-content>
|
</v-list-item-content>
|
||||||
</v-list-item>
|
</v-list-item>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<!-- <template v-for="(item, i) in obj"
|
|
||||||
><span :key="i" class="ml-2"
|
|
||||||
><a :href="'/svc-workorders/' + item.id">{{ item.serial }}</a
|
|
||||||
><span class="ml-2"
|
|
||||||
>{{ $ay.dt(item.servicedate) }} {{ item.name }}</span
|
|
||||||
></span
|
|
||||||
></template
|
|
||||||
> -->
|
|
||||||
</v-sheet>
|
</v-sheet>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -213,7 +206,8 @@ async function fetchTranslatedText() {
|
|||||||
"Name",
|
"Name",
|
||||||
"WorkOrder",
|
"WorkOrder",
|
||||||
"WorkOrderItem",
|
"WorkOrderItem",
|
||||||
"WorkOrderStatus"
|
"WorkOrderStatus",
|
||||||
|
"NoData"
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user