From 461689ceac87fd28a15a25194121040cab70d466 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 17 Jun 2021 18:52:40 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 4 ---- ayanova/src/components/work-order-item-labors.vue | 6 +++--- ayanova/src/components/work-order-item-travels.vue | 6 +++--- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 1e48fac6..d6f05b83 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -384,10 +384,6 @@ todo: many biz objects are not using new PUT methodology CURRENTLY DOING: -todo: squeeze in more fields for workorder list shwoing customer etc?? - headoffice sb there - workorder last status sb there and openable - may have to add a mirror field to wo to ease query time as ordering and filtering each status may be underperformant todo: check Joyce's cases diff --git a/ayanova/src/components/work-order-item-labors.vue b/ayanova/src/components/work-order-item-labors.vue index 7f0aeee2..f931fb33 100644 --- a/ayanova/src/components/work-order-item-labors.vue +++ b/ayanova/src/components/work-order-item-labors.vue @@ -484,7 +484,7 @@ export default { taxCodeChange(newName) { this.value.items[this.activeWoItemIndex].labors[ this.activeItemIndex - ].taxCodeSaleViz = newName; + ].TaxCodeViz = newName; }, newItem() { let newIndex = this.value.items[this.activeWoItemIndex].labors.length; @@ -775,7 +775,7 @@ export default { headers.push({ text: this.$ay.t("Tax"), align: "left", - value: "taxCodeSaleViz" + value: "TaxCodeViz" }); } @@ -856,7 +856,7 @@ export default { this.pvm.languageName, this.pvm.currencyName ), - taxCodeSaleViz: x.taxCodeSaleViz, + TaxCodeViz: x.TaxCodeViz, priceOverride: window.$gz.locale.currencyLocalized( x.priceOverride, this.pvm.languageName, diff --git a/ayanova/src/components/work-order-item-travels.vue b/ayanova/src/components/work-order-item-travels.vue index a6883f56..44ed55af 100644 --- a/ayanova/src/components/work-order-item-travels.vue +++ b/ayanova/src/components/work-order-item-travels.vue @@ -484,7 +484,7 @@ export default { taxCodeChange(newName) { this.value.items[this.activeWoItemIndex].travels[ this.activeItemIndex - ].taxCodeSaleViz = newName; + ].TaxCodeViz = newName; }, newItem() { let newIndex = this.value.items[this.activeWoItemIndex].travels.length; @@ -776,7 +776,7 @@ export default { headers.push({ text: this.$ay.t("Tax"), align: "left", - value: "taxCodeSaleViz" + value: "TaxCodeViz" }); } @@ -857,7 +857,7 @@ export default { this.pvm.languageName, this.pvm.currencyName ), - taxCodeSaleViz: x.taxCodeSaleViz, + TaxCodeViz: x.TaxCodeViz, priceOverride: window.$gz.locale.currencyLocalized( x.priceOverride, this.pvm.languageName,