This commit is contained in:
2021-06-21 17:29:18 +00:00
parent 6730a8bcda
commit 8682c7c8b5
5 changed files with 166 additions and 6 deletions

View File

@@ -64,6 +64,35 @@
/>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<GzWoSignature
v-if="
pvm.subRights.states.visible &&
form().showMe(this, 'CustomerSignature')
"
v-model="value"
:form-key="formCustomTemplateKey"
:readonly="formState.readOnly"
:pvm="pvm"
variant="customer"
data-cy="customerSignature"
/>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<GzWoSignature
v-if="
pvm.subRights.states.visible && form().showMe(this, 'TechSignature')
"
v-model="value"
:form-key="formCustomTemplateKey"
:readonly="formState.readOnly"
:pvm="pvm"
variant="tech"
data-cy="techSignature"
/>
</v-col>
<v-col v-if="form().showMe(this, 'WorkOrderSummary')" cols="12">
<v-textarea
v-model="value.notes"
@@ -312,12 +341,12 @@
////////////////////////////////////////////////////////////////////////////////////////////////////////////
import GzWoState from "./work-order-state.vue";
import GzWoAddress from "./work-order-address.vue";
//import GzWoContract from "./work-order-contract.vue";
import GzWoSignature from "./work-order-signature.vue";
export default {
components: {
GzWoState,
GzWoAddress
//, GzWoContract
GzWoAddress,
GzWoSignature
},
data() {
return {