This commit is contained in:
2021-05-24 17:30:21 +00:00
parent 3537233350
commit 64d75b69e0
4 changed files with 858 additions and 5 deletions

View File

@@ -381,6 +381,19 @@
@change="$emit('change')"
/>
</v-col>
<v-col cols="12">
<GzWoItemTravels
v-if="
pvm.subRights.travels.visible &&
form().showMe(this, 'WorkOrderItemTravelList')
"
v-model="value"
:pvm="pvm"
:active-wo-item-index="activeItemIndex"
data-cy="woItemTravels"
@change="$emit('change')"
/>
</v-col>
<v-col cols="12">
<GzWoItemExpenses
v-if="
@@ -404,13 +417,15 @@
////////////////////////////////////////////////////////////////////////////////////////////////////////////
import GzWoItemScheduledUsers from "../components/work-order-item-scheduled-users.vue";
import GzWoItemLabors from "../components/work-order-item-labors.vue";
import GzWoItemTravels from "../components/work-order-item-travels.vue";
import GzWoItemExpenses from "../components/work-order-item-expenses.vue";
export default {
components: {
GzWoItemScheduledUsers,
GzWoItemExpenses,
GzWoItemLabors
GzWoItemLabors,
GzWoItemTravels
},
created() {
this.setDefaultView();