From 61fdb419ab34628b10d6e85db4a9a4b783044018 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Fri, 30 Apr 2021 21:28:13 +0000 Subject: [PATCH] --- ayanova/src/components/work-order-header.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ayanova/src/components/work-order-header.vue b/ayanova/src/components/work-order-header.vue index dbbe1fc4..5d3b8525 100644 --- a/ayanova/src/components/work-order-header.vue +++ b/ayanova/src/components/work-order-header.vue @@ -119,10 +119,16 @@ export default { this.value.alertViz = null; const custId = this.value.customerId; if (custId != null) { - const res = await window.$gz.api.get(`customer/alert/${custId}`); + //------ Alert notes + let res = await window.$gz.api.get(`customer/alert/${custId}`); if (res.data) { this.value.alertViz = res.data; } + //------ Addresses + res = await window.$gz.api.get(`customer/address/${custId}`); + if (res.data) { + console.log("woheaderfldvalchng-address:", res.data); + } } } }