This commit is contained in:
2021-06-11 23:29:53 +00:00
parent c830dcd3b3
commit 9d56cbb05d
8 changed files with 59 additions and 64 deletions

View File

@@ -180,7 +180,7 @@
]"
@input="
fieldValueChanged(
`Items[${activeWoItemIndex}].loans[ ${activeItemIndex} ].quantity`
`Items[${activeWoItemIndex}].loans[${activeItemIndex}].quantity`
)
"
></gz-decimal>
@@ -351,7 +351,7 @@
]"
@input="
fieldValueChanged(
`Items[${activeWoItemIndex}].loans[ ${activeItemIndex} ].priceOverride`
`Items[${activeWoItemIndex}].loans[${activeItemIndex}].priceOverride`
)
"
></gz-currency>
@@ -368,16 +368,14 @@
:error-messages="
form().serverErrors(
this,
`Items[${activeWoItemIndex}].loans[ ${activeItemIndex} ].notes`
`Items[${activeWoItemIndex}].loans[${activeItemIndex}].notes`
)
"
:ref="
`Items[${activeWoItemIndex}].loans[ ${activeItemIndex} ].notes`
"
:ref="`Items[${activeWoItemIndex}].loans[${activeItemIndex}].notes`"
data-cy="loanUnitNotes"
@input="
fieldValueChanged(
`Items[${activeWoItemIndex}].loans[ ${activeItemIndex} ].notes`
`Items[${activeWoItemIndex}].loans[${activeItemIndex}].notes`
)
"
auto-grow