This commit is contained in:
@@ -65,7 +65,7 @@
|
||||
value.items[activeWoItemIndex].scheduledUsers[activeItemIndex]
|
||||
.estimatedQuantity
|
||||
"
|
||||
:readonly="formState.readOnly"
|
||||
:readonly="formState.readOnly || isDeleted"
|
||||
:disabled="isDeleted"
|
||||
:label="$ay.t('WorkOrderItemScheduledUserEstimatedQuantity')"
|
||||
ref="scheduledUsers.EstimatedQuantity"
|
||||
@@ -197,11 +197,11 @@ export default {
|
||||
`Items[${this.activeWoItemIndex}].ScheduledUsers[${item.index}].`
|
||||
);
|
||||
|
||||
if (hasError) {
|
||||
ret = "font-weight-black font-italic error--text ";
|
||||
}
|
||||
if (isDeleted) {
|
||||
ret += "text-decoration-line-through text--disabled";
|
||||
ret += this.form().tableRowDeletedClass();
|
||||
}
|
||||
if (hasError) {
|
||||
ret += this.form().tableRowErrorClass();
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
@@ -237,11 +237,11 @@ export default {
|
||||
`Items[${item.index}].`
|
||||
);
|
||||
|
||||
if (hasError) {
|
||||
ret = "font-weight-black font-italic error--text ";
|
||||
}
|
||||
if (isDeleted) {
|
||||
ret += "text-decoration-line-through text--disabled";
|
||||
ret += this.form().tableRowDeletedClass();
|
||||
}
|
||||
if (hasError) {
|
||||
ret += this.form().tableRowErrorClass();
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user