From a62f2e666d23c8511209a7a451a49b8a42eca5a0 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Fri, 30 Apr 2021 23:28:05 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 1 + ayanova/src/components/work-order-address.vue | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index ea261f4c..070819fd 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -292,6 +292,7 @@ todo: many biz objects are not using new PUT methodology + CURRENTLY DOING: front end full in Address diff --git a/ayanova/src/components/work-order-address.vue b/ayanova/src/components/work-order-address.vue index d541e7e6..b4a1e846 100644 --- a/ayanova/src/components/work-order-address.vue +++ b/ayanova/src/components/work-order-address.vue @@ -352,12 +352,16 @@ export default { this.value.postCity = this.value.city; this.value.postRegion = this.value.region; this.value.postCountry = this.value.country; + //flag form dirty + this.pvm.formState.dirty = true; }, AddressCopyToPhysical() { this.value.address = this.value.postAddress; this.value.city = this.value.postCity; this.value.region = this.value.postRegion; this.value.country = this.value.postCountry; + //flag form dirty + this.pvm.formState.dirty = true; }, AddressCopyPhysicalToClipBoard() { let ret = "";