This commit is contained in:
@@ -943,5 +943,6 @@ BUILD 136 CHANGES OF NOTE
|
||||
- Added new option in user settings to use browsers default date and time input controls
|
||||
this means it won't use the Android style pickers but whatever the browsers native date and time input controls are
|
||||
did this for automated testing and also for users who may want to use the native browser controls if they don't suck and for people who don't want to leave the keyboard to select
|
||||
- Work order item misc expense first single line "Description" field incorrect text in English translations, says "Description" should say "Summary" so changed it. Other languages ok.
|
||||
|
||||
|
||||
|
||||
@@ -120,6 +120,7 @@
|
||||
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].name`
|
||||
)
|
||||
"
|
||||
data-cy="expenses.description"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
|
||||
@@ -140,7 +141,7 @@
|
||||
:ref="
|
||||
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].totalCost`
|
||||
"
|
||||
data-cy="expenseTotalCost"
|
||||
data-cy="expenses.totalCost"
|
||||
:error-messages="
|
||||
form().serverErrors(
|
||||
this,
|
||||
@@ -186,7 +187,7 @@
|
||||
:ref="
|
||||
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeAmount`
|
||||
"
|
||||
data-cy="expenseChargeAmount"
|
||||
data-cy="expenses.chargeAmount"
|
||||
:error-messages="
|
||||
form().serverErrors(
|
||||
this,
|
||||
@@ -232,7 +233,7 @@
|
||||
:ref="
|
||||
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeToCustomer`
|
||||
"
|
||||
data-cy="chargeToCustomer"
|
||||
data-cy="expenses.chargeToCustomer"
|
||||
:error-messages="
|
||||
form().serverErrors(
|
||||
this,
|
||||
@@ -264,7 +265,7 @@
|
||||
:ref="
|
||||
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].taxPaid`
|
||||
"
|
||||
data-cy="expenseTaxPaid"
|
||||
data-cy="expenses.taxPaid"
|
||||
:error-messages="
|
||||
form().serverErrors(
|
||||
this,
|
||||
@@ -312,7 +313,7 @@
|
||||
:ref="
|
||||
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeTaxCodeId`
|
||||
"
|
||||
data-cy="expenseChargeTaxCode"
|
||||
data-cy="expenses.chargeTaxCode"
|
||||
:error-messages="
|
||||
form().serverErrors(
|
||||
this,
|
||||
@@ -349,7 +350,7 @@
|
||||
:ref="
|
||||
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].reimburseUser`
|
||||
"
|
||||
data-cy="expenseReimburseUser"
|
||||
data-cy="expenses.reimburseUser"
|
||||
:error-messages="
|
||||
form().serverErrors(
|
||||
this,
|
||||
@@ -386,7 +387,7 @@
|
||||
:ref="
|
||||
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].userId`
|
||||
"
|
||||
data-cy="expenseUser"
|
||||
data-cy="expenses.user"
|
||||
:error-messages="
|
||||
form().serverErrors(
|
||||
this,
|
||||
@@ -423,7 +424,7 @@
|
||||
:ref="
|
||||
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].description`
|
||||
"
|
||||
data-cy="expenseDescription"
|
||||
data-cy="expenses.description"
|
||||
@input="
|
||||
fieldValueChanged(
|
||||
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].description`
|
||||
|
||||
Reference in New Issue
Block a user