This commit is contained in:
@@ -62,9 +62,6 @@ Coded by importance
|
||||
## CLIENT MISC ITEMS
|
||||
|
||||
|
||||
|
||||
- 1 extensions dialog is dismissed if click outside even when it's not completed the job
|
||||
make it undismissable by clicking outside, cancel button sb only way to stop it
|
||||
- 1 Distance field missing from workorder travel section, is defined at server, just not put on to forms
|
||||
- 1 workorderitemexpense list has column named "summary" twice but one is notes column, something fishy there
|
||||
- 2 tag cloud?? wasn't this suppo;sed to be exposed as a feature??
|
||||
@@ -861,5 +858,6 @@ BUILD 129 CHANGES OF NOTE
|
||||
- search fixed issue with icons not showing for some quote/pm subitems
|
||||
- Data table filter creation dialog now disables Save button until at least one filter is added
|
||||
- Customer Quotes and PM's menu items open filtered data lists correctly
|
||||
- Extensions dialog could be dismissed by clicking outside or pressing escape circumventing Exit button; made Exit button only way to close dialog
|
||||
|
||||
|
||||
|
||||
@@ -195,6 +195,48 @@
|
||||
></gz-decimal>
|
||||
</v-col>
|
||||
|
||||
<v-col
|
||||
v-if="form().showMe(this, 'WorkOrderItemTravelDistance')"
|
||||
cols="12"
|
||||
sm="6"
|
||||
lg="4"
|
||||
xl="3"
|
||||
>
|
||||
<gz-decimal
|
||||
v-model="
|
||||
value.items[activeWoItemIndex].travels[activeItemIndex].distance
|
||||
"
|
||||
:readonly="formState.readOnly || isDeleted"
|
||||
:disabled="isDeleted"
|
||||
:label="$ay.t('WorkOrderItemTravelDistance')"
|
||||
:ref="
|
||||
`Items[${activeWoItemIndex}].travels[${activeItemIndex}].distance`
|
||||
"
|
||||
data-cy="travelTravelRateDistance"
|
||||
:error-messages="
|
||||
form().serverErrors(
|
||||
this,
|
||||
`Items[${activeWoItemIndex}].travels[${activeItemIndex}].distance`
|
||||
)
|
||||
"
|
||||
:rules="[
|
||||
form().decimalValid(
|
||||
this,
|
||||
`Items[${activeWoItemIndex}].travels[${activeItemIndex}].distance`
|
||||
),
|
||||
form().required(
|
||||
this,
|
||||
`Items[${activeWoItemIndex}].travels[${activeItemIndex}].distance`
|
||||
)
|
||||
]"
|
||||
@input="
|
||||
fieldValueChanged(
|
||||
`Items[${activeWoItemIndex}].travels[${activeItemIndex}].distance`
|
||||
)
|
||||
"
|
||||
></gz-decimal>
|
||||
</v-col>
|
||||
|
||||
<v-col
|
||||
v-if="form().showMe(this, 'WorkOrderItemTravelServiceRateID')"
|
||||
cols="12"
|
||||
|
||||
Reference in New Issue
Block a user