This commit is contained in:
2021-06-23 16:59:52 +00:00
parent 99cd8c9f62
commit 5b88e45b32
7 changed files with 28 additions and 9 deletions

View File

@@ -384,7 +384,8 @@ export default {
completedDate: null,
isDirty: true,
workOrderItemId: this.value.items[this.activeWoItemIndex].id,
uid: Date.now()
uid: Date.now(),
completedByUserViz: null
});
});
this.$emit("change");
@@ -429,7 +430,9 @@ export default {
completedDate: null,
isDirty: true,
workOrderItemId: this.value.items[this.activeWoItemIndex].id,
uid: Date.now() //used for error tracking / display
uid: Date.now(),
completedByUserViz: null,
statusViz: null
});
this.$emit("change");
this.selectedRow = [{ index: newIndex }];