This commit is contained in:
2022-01-26 22:54:09 +00:00
parent 6dff048a19
commit e4607db21d
3 changed files with 7 additions and 6 deletions

View File

@@ -26,7 +26,7 @@ docs completion of #b4beta items
Proofread: docs go over all from start to finish regardless if all completed or not just needs a going over, make sure [under construction] is tagged on incomplete pages
dashboard widgets to replicate v7 and one show off to show biz metrics potential, something practical for each user type would be ideal
Joyce todo when she asks for something todo - onboarding workout eval and auto configuration getting started guide UI
Joyce todo - onboarding workout eval and auto configuration getting started guide UI
what the ui looks like / what features can they pick from,
wizard vs long page: I think a single long page is easiest to deal with as can review it all make changes here and there then press DO IT and have it configure
@@ -853,7 +853,7 @@ BUILD 8.0.0-beta.0.13 CHANGES OF NOTE
- This update requires a fresh database rebuild
- Replaced 5 report templates from FIVERPTSNEEDED_beta.0.12reporttemplates.zip email of 2022-01-21, 5:08 PM
- Fixed issue with wo,quote,pm that prevented form customized Required fields from working
- Fixed issue with wo,quote,pm that prevented some form customized Required fields from working
- Fixed issue with wo and quote that sometimes would give a index out of range error when editing the header and saving
- case 4087 fixed
- case 4092, 4094 fixed

View File

@@ -52,6 +52,7 @@
:form-key="formCustomTemplateKey"
:readonly="formState.readOnly || value.userIsRestrictedType"
:pvm="pvm"
:error-messages="form().serverErrors(this, 'Address')"
data-cy="woAddress"
/>
</v-col>

View File

@@ -86,7 +86,7 @@
>
<v-col
v-if="form().showMe(this, 'WorkOrderItemTaskSequence')"
v-if="form().showMe(this, 'Sequence')"
cols="12"
sm="6"
lg="4"
@@ -197,7 +197,7 @@
:error-messages="
form().serverErrors(
this,
`Items[${activeWoItemIndex}].tasks[${activeItemIndex}].WorkOrderItemTaskUser`
`Items[${activeWoItemIndex}].tasks[${activeItemIndex}].completedByUserId`
)
"
@input="
@@ -231,7 +231,7 @@
:error-messages="
form().serverErrors(
this,
`Items[${activeWoItemIndex}].tasks[${activeItemIndex}].WorkOrderItemTaskCompletedDate`
`Items[${activeWoItemIndex}].tasks[${activeItemIndex}].completedDate`
)
"
@input="
@@ -359,7 +359,7 @@ export default {
headerList: function() {
const headers = [];
if (this.form().showMe(this, "WorkOrderItemTaskSequence")) {
if (this.form().showMe(this, "Sequence")) {
headers.push({
text: this.$ay.t("Sequence"),
align: "left",