This commit is contained in:
2021-11-18 19:20:35 +00:00
parent 8e245b415d
commit f22e206b29

View File

@@ -509,11 +509,15 @@
" "
></gz-tag-picker> ></gz-tag-picker>
</v-col> </v-col>
<v-col cols="12"> <v-expansion-panels>
<v-expansion-panel key="a">
<v-expansion-panel-header>
<span class="text-subtitle-1"> <span class="text-subtitle-1">
{{ $ay.t("CustomerAccessWorkOrderReport") }} {{ $ay.t("CustomerAccessWorkOrderReport") }}
</span> </span>
</v-col> </v-expansion-panel-header>
<v-expansion-panel-content>
<v-row>
<v-col cols="12"> <v-col cols="12">
<gz-pick-list <gz-pick-list
:aya-type="ayaTypes().Report" :aya-type="ayaTypes().Report"
@@ -553,7 +557,9 @@
) )
" "
@input=" @input="
fieldValueChanged('customerWorkOrderReport1Tags') fieldValueChanged(
'customerWorkOrderReport1Tags'
)
" "
></gz-tag-picker> ></gz-tag-picker>
</v-col> </v-col>
@@ -575,7 +581,9 @@
) )
" "
@input=" @input="
fieldValueChanged('customerTagWorkOrderReport1Id') fieldValueChanged(
'customerTagWorkOrderReport1Id'
)
" "
></gz-pick-list> ></gz-pick-list>
</v-col> </v-col>
@@ -595,7 +603,9 @@
) )
" "
@input=" @input="
fieldValueChanged('customerWorkOrderReport2Tags') fieldValueChanged(
'customerWorkOrderReport2Tags'
)
" "
></gz-tag-picker> ></gz-tag-picker>
</v-col> </v-col>
@@ -617,7 +627,9 @@
) )
" "
@input=" @input="
fieldValueChanged('customerTagWorkOrderReport2Id') fieldValueChanged(
'customerTagWorkOrderReport2Id'
)
" "
></gz-pick-list> ></gz-pick-list>
</v-col> </v-col>
@@ -637,7 +649,9 @@
) )
" "
@input=" @input="
fieldValueChanged('customerWorkOrderReport3Tags') fieldValueChanged(
'customerWorkOrderReport3Tags'
)
" "
></gz-tag-picker> ></gz-tag-picker>
</v-col> </v-col>
@@ -659,7 +673,9 @@
) )
" "
@input=" @input="
fieldValueChanged('customerTagWorkOrderReport3Id') fieldValueChanged(
'customerTagWorkOrderReport3Id'
)
" "
></gz-pick-list> ></gz-pick-list>
</v-col> </v-col>
@@ -679,7 +695,9 @@
) )
" "
@input=" @input="
fieldValueChanged('customerWorkOrderReport4Tags') fieldValueChanged(
'customerWorkOrderReport4Tags'
)
" "
></gz-tag-picker> ></gz-tag-picker>
</v-col> </v-col>
@@ -701,7 +719,9 @@
) )
" "
@input=" @input="
fieldValueChanged('customerTagWorkOrderReport4Id') fieldValueChanged(
'customerTagWorkOrderReport4Id'
)
" "
></gz-pick-list> ></gz-pick-list>
</v-col> </v-col>
@@ -721,7 +741,9 @@
) )
" "
@input=" @input="
fieldValueChanged('customerWorkOrderReport5Tags') fieldValueChanged(
'customerWorkOrderReport5Tags'
)
" "
></gz-tag-picker> ></gz-tag-picker>
</v-col> </v-col>
@@ -743,17 +765,18 @@
) )
" "
@input=" @input="
fieldValueChanged('customerTagWorkOrderReport5Id') fieldValueChanged(
'customerTagWorkOrderReport5Id'
)
" "
></gz-pick-list> ></gz-pick-list>
</v-col> </v-col>
</template>
</v-row> </v-row>
</v-expansion-panel-content> </v-expansion-panel-content>
</v-expansion-panel> </v-expansion-panel>
<v-expansion-panel key="3"> <v-expansion-panel key="b">
<v-expansion-panel-header> <v-expansion-panel-header>
<span class="text-h6"> <span class="text-subtitle-1">
{{ $ay.t("CustomerAccessWorkOrderWiki") }} {{ $ay.t("CustomerAccessWorkOrderWiki") }}
</span> </span>
</v-expansion-panel-header> </v-expansion-panel-header>
@@ -767,9 +790,14 @@
ref="customerAllowWOWiki" ref="customerAllowWOWiki"
data-cy="customerAllowWOWiki" data-cy="customerAllowWOWiki"
:error-messages=" :error-messages="
form().serverErrors(this, 'customerAllowWOWiki') form().serverErrors(
this,
'customerAllowWOWiki'
)
"
@change="
fieldValueChanged('customerAllowWOWiki')
" "
@change="fieldValueChanged('customerAllowWOWiki')"
></v-checkbox> ></v-checkbox>
</v-col> </v-col>
<template v-if="obj.customerAllowWOWiki"> <template v-if="obj.customerAllowWOWiki">
@@ -791,7 +819,9 @@
) )
" "
@input=" @input="
fieldValueChanged('customerAllowWOWikiInTags') fieldValueChanged(
'customerAllowWOWikiInTags'
)
" "
></gz-tag-picker> ></gz-tag-picker>
</v-col> </v-col>
@@ -799,9 +829,9 @@
</v-row> </v-row>
</v-expansion-panel-content> </v-expansion-panel-content>
</v-expansion-panel> </v-expansion-panel>
<v-expansion-panel key="4"> <v-expansion-panel key="c">
<v-expansion-panel-header> <v-expansion-panel-header>
<span class="text-h6"> <span class="text-subtitle-1">
{{ $ay.t("CustomerAccessWorkOrderAttachments") }} {{ $ay.t("CustomerAccessWorkOrderAttachments") }}
</span> </span>
</v-expansion-panel-header> </v-expansion-panel-header>
@@ -821,14 +851,18 @@
) )
" "
@change=" @change="
fieldValueChanged('customerAllowWOAttachments') fieldValueChanged(
'customerAllowWOAttachments'
)
" "
></v-checkbox> ></v-checkbox>
</v-col> </v-col>
<template v-if="obj.customerAllowWOAttachments"> <template v-if="obj.customerAllowWOAttachments">
<v-col cols="12" sm="6" lg="10"> <v-col cols="12" sm="6" lg="10">
<gz-tag-picker <gz-tag-picker
v-model="obj.customerAllowWOAttachmentsInTags" v-model="
obj.customerAllowWOAttachmentsInTags
"
:readonly="formState.readOnly" :readonly="formState.readOnly"
:label=" :label="
$ay.t( $ay.t(
@@ -854,7 +888,12 @@
</v-row> </v-row>
</v-expansion-panel-content> </v-expansion-panel-content>
</v-expansion-panel> </v-expansion-panel>
<v-expansion-panel key="5"> </v-expansion-panels>
</template>
</v-row>
</v-expansion-panel-content>
</v-expansion-panel>
<v-expansion-panel key="3">
<v-expansion-panel-header> <v-expansion-panel-header>
<span class="text-h6"> <span class="text-h6">
{{ $ay.t("UserSettings") }} {{ $ay.t("UserSettings") }}
@@ -898,7 +937,7 @@
</v-row> </v-row>
</v-expansion-panel-content> </v-expansion-panel-content>
</v-expansion-panel> </v-expansion-panel>
<v-expansion-panel key="6"> <v-expansion-panel key="4">
<v-expansion-panel-header> <v-expansion-panel-header>
<span class="text-h6"> <span class="text-h6">
{{ $ay.t("NotifySubscriptionList") }} {{ $ay.t("NotifySubscriptionList") }}