diff --git a/ayanova/src/components/work-order-items.vue b/ayanova/src/components/work-order-items.vue index 8a083631..fcaddbbe 100644 --- a/ayanova/src/components/work-order-items.vue +++ b/ayanova/src/components/work-order-items.vue @@ -293,7 +293,7 @@ and it's probably not a big list to fill anyway */ let headers = []; - if (this.form().showMe(this, "Items.Sequence")) { + if (this.form().showMe(this, "WorkOrderItemSequence")) { headers.push({ text: this.$ay.t("Sequence"), align: "left", @@ -307,7 +307,7 @@ and it's probably not a big list to fill anyway value: "notes" }); - if (this.form().showMe(this, "Items.WorkOrderItemWorkOrderStatusID")) { + if (this.form().showMe(this, "WorkOrderItemWorkOrderStatusID")) { headers.push({ text: this.$ay.t("WorkOrderItemWorkOrderStatusID"), align: "left", @@ -315,7 +315,7 @@ and it's probably not a big list to fill anyway }); } - if (this.form().showMe(this, "Items.RequestDate")) { + if (this.form().showMe(this, "WorkOrderItemRequestDate")) { headers.push({ text: this.$ay.t("WorkOrderItemRequestDate"), align: "right", @@ -323,7 +323,7 @@ and it's probably not a big list to fill anyway }); } - if (this.form().showMe(this, "Items.WorkOrderItemPriorityID")) { + if (this.form().showMe(this, "WorkOrderItemPriorityID")) { headers.push({ text: this.$ay.t("WorkOrderItemPriorityID"), align: "left", @@ -331,7 +331,7 @@ and it's probably not a big list to fill anyway }); } - if (this.form().showMe(this, "Items.WorkOrderItemWarrantyService")) { + if (this.form().showMe(this, "WorkOrderItemWarrantyService")) { headers.push({ text: this.$ay.t("WorkOrderItemWarrantyService"), align: "center", @@ -339,7 +339,7 @@ and it's probably not a big list to fill anyway }); } - if (this.form().showMe(this, "Items.Tags")) { + if (this.form().showMe(this, "WorkOrderItemTags")) { headers.push({ text: this.$ay.t("Tags"), align: "left",