diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 4810d5aa..e5680eb8 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -346,7 +346,8 @@ CURRENTLY DOING: workorderitem part, front end ORDER: parts, part requests, loans, units, outside service - +todo: prior woitem* override column header using wrong key, repeats priceviz not override + labor, travel etc todo: "DispatchFull" and "DispatchLimited" roles MUST be renamed to "ServiceFull" and "ServiceLimited" to match other roles and intent dispatch is a subset of a service manager job diff --git a/ayanova/src/components/work-order-item-labors.vue b/ayanova/src/components/work-order-item-labors.vue index 12c4fb24..e7bd6321 100644 --- a/ayanova/src/components/work-order-item-labors.vue +++ b/ayanova/src/components/work-order-item-labors.vue @@ -670,7 +670,7 @@ export default { }); } - if (this.form().showMe(this, "LaborPriceViz")) { + if (this.form().showMe(this, "LaborPriceOverrideViz")) { headers.push({ text: this.$ay.t("PriceOverride"), align: "right", diff --git a/ayanova/src/components/work-order-item-parts.vue b/ayanova/src/components/work-order-item-parts.vue index 0255ff5b..00e7cb28 100644 --- a/ayanova/src/components/work-order-item-parts.vue +++ b/ayanova/src/components/work-order-item-parts.vue @@ -683,13 +683,7 @@ export default { }); } - if (this.form().showMe(this, "WorkOrderItemPartNoChargeQuantity")) { - headers.push({ - text: this.$ay.t("WorkOrderItemPartNoChargeQuantity"), - align: "right", - value: "noChargeQuantity" - }); - } + if (this.form().showMe(this, "PartUnitOfMeasureViz")) { headers.push({ @@ -703,7 +697,7 @@ export default { headers.push({ text: this.$ay.t("Cost"), align: "right", - value: "costViz" + value: "cost" }); } @@ -711,7 +705,7 @@ export default { headers.push({ text: this.$ay.t("ListPrice"), align: "right", - value: "listPriceViz" + value: "listPrice" }); } diff --git a/ayanova/src/components/work-order-item-travels.vue b/ayanova/src/components/work-order-item-travels.vue index ca222f9e..645853c4 100644 --- a/ayanova/src/components/work-order-item-travels.vue +++ b/ayanova/src/components/work-order-item-travels.vue @@ -673,7 +673,7 @@ export default { }); } - if (this.form().showMe(this, "TravelPriceViz")) { + if (this.form().showMe(this, "TravelPriceOverrideViz")) { headers.push({ text: this.$ay.t("PriceOverride"), align: "right",