case 4243
This commit is contained in:
@@ -153,10 +153,20 @@
|
||||
<!-- NEW ITEM DIALOG -->
|
||||
<template>
|
||||
<v-row dense justify="center">
|
||||
<v-dialog v-model="newItemDialog" max-width="360px" persistent>
|
||||
<v-dialog v-model="newItemDialog" max-width="400px" persistent>
|
||||
<v-card>
|
||||
<v-card-title>{{ $ay.t("New") }}</v-card-title>
|
||||
<v-card-text>
|
||||
<v-col cols="12">
|
||||
<gz-pick-list
|
||||
ref="customerId"
|
||||
v-model="selectedCustomerId"
|
||||
:aya-type="$ay.ayt().Customer"
|
||||
:show-edit-icon="true"
|
||||
:label="$ay.t('Customer')"
|
||||
:can-clear="false"
|
||||
></gz-pick-list>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<v-btn
|
||||
x-large
|
||||
@@ -420,7 +430,8 @@ export default {
|
||||
lastMouseDownMS: null,
|
||||
tags: [],
|
||||
lastStart: null,
|
||||
lastEnd: null
|
||||
lastEnd: null,
|
||||
selectedCustomerId: null
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
@@ -495,6 +506,7 @@ export default {
|
||||
name: "workorder-edit",
|
||||
params: {
|
||||
recordid: 0,
|
||||
customerId: this.selectedCustomerId,
|
||||
add: {
|
||||
type: atype,
|
||||
start: addStart,
|
||||
|
||||
Reference in New Issue
Block a user