This commit is contained in:
2021-07-30 19:40:25 +00:00
parent f9844d977c
commit a48b670e2b
2 changed files with 6 additions and 4 deletions

View File

@@ -405,6 +405,7 @@ export default {
this.value.postCode = item.src.postCode;
this.pvm.formState.dirty = true;
this.value.isDirty = true;
} else {
//physical
this.value.address = item.src.address;
@@ -418,6 +419,7 @@ export default {
this.value.longitude = item.src.longitude;
}
this.pvm.formState.dirty = true;
this.value.isDirty = true;
}
},
async AddressSelectAlternatePostal() {
@@ -436,6 +438,7 @@ export default {
this.value.postRegion = this.value.region;
this.value.postCountry = this.value.country;
this.pvm.formState.dirty = true;
this.value.isDirty = true;
},
AddressCopyToPhysical() {
this.value.address = this.value.postAddress;
@@ -443,6 +446,7 @@ export default {
this.value.region = this.value.postRegion;
this.value.country = this.value.postCountry;
this.pvm.formState.dirty = true;
this.value.isDirty = true;
},
AddressCopyPhysicalToClipBoard() {
let ret = "";