case 4341

This commit is contained in:
2022-12-14 00:14:57 +00:00
parent 92c69e8b50
commit 1a25c853f4
12 changed files with 182 additions and 7 deletions

View File

@@ -829,6 +829,11 @@ export default {
if (obj.postCode) {
q += obj.postCode + delimiter;
}
if (obj.addressPostal) {
q += obj.addressPostal + delimiter;
}
if (q.length > 1) {
q = q.substring(0, q.length - 1);
}