case 4038
This commit is contained in:
@@ -24,8 +24,6 @@ Prioritize anything that stands in the way of beta testing
|
|||||||
|
|
||||||
|
|
||||||
TODO:
|
TODO:
|
||||||
|
|
||||||
test restore the big db here privately and confirm
|
|
||||||
testing cases
|
testing cases
|
||||||
#1 issues below in list
|
#1 issues below in list
|
||||||
docs cleanup
|
docs cleanup
|
||||||
@@ -872,7 +870,7 @@ BUILD 8.0.0-beta.0.8 CHANGES OF NOTE
|
|||||||
- Noticed the service dispatch report has a syntax error in it's CSS, there is a comment line with a // for single line comment but this is not valid CSS the only valid CSS comment is a /* */ block on it's own line
|
- Noticed the service dispatch report has a syntax error in it's CSS, there is a comment line with a // for single line comment but this is not valid CSS the only valid CSS comment is a /* */ block on it's own line
|
||||||
It doesn't seem to break anything but I'm not sure if that is always the case better safe than sorry so if you know of any others please fix them up
|
It doesn't seem to break anything but I'm not sure if that is always the case better safe than sorry so if you know of any others please fix them up
|
||||||
|
|
||||||
|
- case 4038
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<div v-if="formState.ready">
|
<div v-if="formState.ready">
|
||||||
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
|
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
|
||||||
<gz-alert :alert-message="obj.alertViz" pop-alert></gz-alert>
|
<gz-alert :alert-message="obj.alertViz" pop-alert></gz-alert>
|
||||||
<gz-alert :alert-message="obj.customerTechNotesViz"></gz-alert>
|
<gz-alert :alert-message="alertTechNotes"></gz-alert>
|
||||||
<!-- SERVERERROR:{{ formState.serverError }} -->
|
<!-- SERVERERROR:{{ formState.serverError }} -->
|
||||||
<v-form ref="form">
|
<v-form ref="form">
|
||||||
<GzPMHeader
|
<GzPMHeader
|
||||||
@@ -294,6 +294,11 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
useInventory() {
|
useInventory() {
|
||||||
return window.$gz.store.state.globalSettings.useInventory;
|
return window.$gz.store.state.globalSettings.useInventory;
|
||||||
|
},
|
||||||
|
alertTechNotes() {
|
||||||
|
return this.obj.customerTechNotesViz
|
||||||
|
? `${this.$ay.t("CustomerTechNotes")}\n${this.obj.customerTechNotesViz}`
|
||||||
|
: null;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -2114,7 +2119,8 @@ async function fetchTranslatedText(vm) {
|
|||||||
"RecentWorkOrders",
|
"RecentWorkOrders",
|
||||||
"WorkOrderGenerateUnit",
|
"WorkOrderGenerateUnit",
|
||||||
"ApplyUnitContract",
|
"ApplyUnitContract",
|
||||||
"CustomerServiceRequest"
|
"CustomerServiceRequest",
|
||||||
|
"CustomerTechNotes"
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<div v-if="formState.ready">
|
<div v-if="formState.ready">
|
||||||
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
|
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
|
||||||
<gz-alert :alert-message="obj.alertViz" pop-alert></gz-alert>
|
<gz-alert :alert-message="obj.alertViz" pop-alert></gz-alert>
|
||||||
<gz-alert :alert-message="obj.customerTechNotesViz"></gz-alert>
|
<gz-alert :alert-message="alertTechNotes"></gz-alert>
|
||||||
<v-form ref="form">
|
<v-form ref="form">
|
||||||
<GzQuoteHeader
|
<GzQuoteHeader
|
||||||
v-model="obj"
|
v-model="obj"
|
||||||
@@ -315,6 +315,11 @@ export default {
|
|||||||
},
|
},
|
||||||
useInventory() {
|
useInventory() {
|
||||||
return window.$gz.store.state.globalSettings.useInventory;
|
return window.$gz.store.state.globalSettings.useInventory;
|
||||||
|
},
|
||||||
|
alertTechNotes() {
|
||||||
|
return this.obj.customerTechNotesViz
|
||||||
|
? `${this.$ay.t("CustomerTechNotes")}\n${this.obj.customerTechNotesViz}`
|
||||||
|
: null;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -2179,7 +2184,8 @@ async function fetchTranslatedText(vm) {
|
|||||||
"WorkOrderGenerateUnit",
|
"WorkOrderGenerateUnit",
|
||||||
"ApplyUnitContract",
|
"ApplyUnitContract",
|
||||||
"CustomerServiceRequest",
|
"CustomerServiceRequest",
|
||||||
"NewStatus"
|
"NewStatus",
|
||||||
|
"CustomerTechNotes"
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<div v-if="formState.ready">
|
<div v-if="formState.ready">
|
||||||
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
|
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
|
||||||
<gz-alert :alert-message="obj.alertViz" pop-alert></gz-alert>
|
<gz-alert :alert-message="obj.alertViz" pop-alert></gz-alert>
|
||||||
<gz-alert :alert-message="obj.customerTechNotesViz"></gz-alert>
|
<gz-alert :alert-message="alertTechNotes"></gz-alert>
|
||||||
<!-- SERVERERROR:{{ formState.serverError }} -->
|
<!-- SERVERERROR:{{ formState.serverError }} -->
|
||||||
<v-form ref="form">
|
<v-form ref="form">
|
||||||
<GzWoHeader
|
<GzWoHeader
|
||||||
@@ -393,6 +393,11 @@ export default {
|
|||||||
},
|
},
|
||||||
useInventory() {
|
useInventory() {
|
||||||
return window.$gz.store.state.globalSettings.useInventory;
|
return window.$gz.store.state.globalSettings.useInventory;
|
||||||
|
},
|
||||||
|
alertTechNotes() {
|
||||||
|
return this.obj.customerTechNotesViz
|
||||||
|
? `${this.$ay.t("CustomerTechNotes")}\n${this.obj.customerTechNotesViz}`
|
||||||
|
: null;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -2382,7 +2387,8 @@ async function fetchTranslatedText(vm) {
|
|||||||
"DuplicateToQuote",
|
"DuplicateToQuote",
|
||||||
"DuplicateToPM",
|
"DuplicateToPM",
|
||||||
"NewStatus",
|
"NewStatus",
|
||||||
"InventoryRoleRequired"
|
"InventoryRoleRequired",
|
||||||
|
"CustomerTechNotes"
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user