This commit is contained in:
@@ -63,6 +63,8 @@ todo: input type email url phone number etc supported on device to activate?
|
||||
CURRENTLY WORKING ON: Customer
|
||||
|
||||
OUTSTANDING
|
||||
Seperate addresses more clearly physical vs mail, sectionize them somehow
|
||||
|
||||
Copy physical to postal
|
||||
Copy postal to physical
|
||||
autocopy as entering if corresponding field is empty?
|
||||
|
||||
@@ -414,6 +414,9 @@
|
||||
</v-tab-item>
|
||||
<v-tab-item class="mt-4">
|
||||
<v-row>
|
||||
<v-col cols="12">
|
||||
<h3>{{ $ay.t("AddressTypePhysical") }}</h3>
|
||||
</v-col>
|
||||
<v-col
|
||||
v-if="form().showMe(this, 'Address')"
|
||||
cols="12"
|
||||
@@ -531,7 +534,9 @@
|
||||
:precision="6"
|
||||
></gz-decimal>
|
||||
</v-col>
|
||||
|
||||
<v-col cols="12">
|
||||
<h3>{{ $ay.t("AddressTypePostal") }}</h3>
|
||||
</v-col>
|
||||
<v-col
|
||||
v-if="form().showMe(this, 'PostAddress')"
|
||||
cols="12"
|
||||
@@ -1333,9 +1338,16 @@ function generateMenu(vm) {
|
||||
});
|
||||
|
||||
menuOptions.menuItems.push({
|
||||
title: "GeoView",
|
||||
icon: "$ayiMapMarked",
|
||||
key: FORM_KEY + ":geoview",
|
||||
title: "AddressCopyToPostal",
|
||||
icon: null,
|
||||
key: FORM_KEY + ":addresscopytopostal",
|
||||
vm: vm
|
||||
});
|
||||
|
||||
menuOptions.menuItems.push({
|
||||
title: "AddressCopyToPhysical",
|
||||
icon: null,
|
||||
key: FORM_KEY + ":addresscopytophysical",
|
||||
vm: vm
|
||||
});
|
||||
|
||||
@@ -1350,6 +1362,13 @@ function generateMenu(vm) {
|
||||
}
|
||||
}
|
||||
|
||||
menuOptions.menuItems.push({
|
||||
title: "GeoView",
|
||||
icon: "$ayiMapMarked",
|
||||
key: FORM_KEY + ":geoview",
|
||||
vm: vm
|
||||
});
|
||||
|
||||
window.$gz.eventBus.$emit("menu-change", menuOptions);
|
||||
}
|
||||
|
||||
@@ -1391,6 +1410,10 @@ async function fetchTranslatedText(vm) {
|
||||
"CustomerPhone4",
|
||||
"CustomerPhone5",
|
||||
"CustomerEmail",
|
||||
"AddressTypePhysical",
|
||||
"AddressTypePostal",
|
||||
"AddressCopyToPostal",
|
||||
"AddressCopyToPhysical",
|
||||
"Address",
|
||||
"AddressPostalDeliveryAddress",
|
||||
"AddressPostalCity",
|
||||
|
||||
Reference in New Issue
Block a user