This commit is contained in:
2021-04-30 23:28:05 +00:00
parent ac04b63441
commit a62f2e666d
2 changed files with 5 additions and 0 deletions

View File

@@ -292,6 +292,7 @@ todo: many biz objects are not using new PUT methodology
CURRENTLY DOING: front end full in
Address

View File

@@ -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 = "";