diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 72cc23f5..fed4da06 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -908,6 +908,7 @@ BUILD 8.0.0-beta.0.14 CHANGES OF NOTE Ops users can do ops things during ops state but no business object stuff even if they ahve the role as that's controlled in each api route individually - Changed Material date picker to show adjacent months days - work order item parts, removed serials from the table so it only displays in the edit form as during documentation realized it's eating up huge screen real estate +- Work order item labor, removed the service details from the Table so it only displays in the edit form as it's eating up a large amount of UI space unnecessarily. diff --git a/ayanova/src/components/pm-item-labors.vue b/ayanova/src/components/pm-item-labors.vue index c85ca581..a21318c2 100644 --- a/ayanova/src/components/pm-item-labors.vue +++ b/ayanova/src/components/pm-item-labors.vue @@ -517,13 +517,14 @@ export default { }); } - if (this.form().showMe(this, "WorkOrderItemLaborServiceDetails")) { - headers.push({ - text: this.$ay.t("WorkOrderItemLaborServiceDetails"), - align: "left", - value: "serviceDetails" - }); - } + //removed due to taking up a lot of space, maybe in future make this it's own customize option for shops that enter few details + // if (this.form().showMe(this, "WorkOrderItemLaborServiceDetails")) { + // headers.push({ + // text: this.$ay.t("WorkOrderItemLaborServiceDetails"), + // align: "left", + // value: "serviceDetails" + // }); + // } if (this.form().showMe(this, "WorkOrderItemLaborUserID")) { headers.push({ diff --git a/ayanova/src/components/quote-item-labors.vue b/ayanova/src/components/quote-item-labors.vue index 23c27a43..01d2912e 100644 --- a/ayanova/src/components/quote-item-labors.vue +++ b/ayanova/src/components/quote-item-labors.vue @@ -517,13 +517,14 @@ export default { }); } - if (this.form().showMe(this, "WorkOrderItemLaborServiceDetails")) { - headers.push({ - text: this.$ay.t("WorkOrderItemLaborServiceDetails"), - align: "left", - value: "serviceDetails" - }); - } + //removed due to taking up a lot of space, maybe in future make this it's own customize option for shops that enter few details + // if (this.form().showMe(this, "WorkOrderItemLaborServiceDetails")) { + // headers.push({ + // text: this.$ay.t("WorkOrderItemLaborServiceDetails"), + // align: "left", + // value: "serviceDetails" + // }); + // } if (this.form().showMe(this, "WorkOrderItemLaborUserID")) { headers.push({ diff --git a/ayanova/src/components/work-order-item-labors.vue b/ayanova/src/components/work-order-item-labors.vue index d8956711..bf0eeafd 100644 --- a/ayanova/src/components/work-order-item-labors.vue +++ b/ayanova/src/components/work-order-item-labors.vue @@ -517,13 +517,14 @@ export default { }); } - if (this.form().showMe(this, "WorkOrderItemLaborServiceDetails")) { - headers.push({ - text: this.$ay.t("WorkOrderItemLaborServiceDetails"), - align: "left", - value: "serviceDetails" - }); - } + //removed due to taking up a lot of space, maybe in future make this it's own customize option for shops that enter few details + // if (this.form().showMe(this, "WorkOrderItemLaborServiceDetails")) { + // headers.push({ + // text: this.$ay.t("WorkOrderItemLaborServiceDetails"), + // align: "left", + // value: "serviceDetails" + // }); + // } if (this.form().showMe(this, "WorkOrderItemLaborUserID")) { headers.push({