This commit is contained in:
2021-11-22 22:26:39 +00:00
parent baa38997f6
commit d268615f0d
4 changed files with 16 additions and 12 deletions

View File

@@ -27,6 +27,10 @@ Currently doing global settings doc page, but should probably move to below item
todo: Urgent - combine part number / name into single Name field, translate as "Part" simply and use key PartName still todo: Urgent - combine part number / name into single Name field, translate as "Part" simply and use key PartName still
there is a case (maybe 4025) about this and thoughts on how to migrate etc there is a case (maybe 4025) about this and thoughts on how to migrate etc
BROKEN ITEMS:
workorder item parts shows name in wrong place and empty part column, probably quote and pm as well
todo: alternateive to "zExampleReport" naming to push to bottom, find out of can ditch the z for something nicer like a unicode symbol or emoji or whatever appears at end and isn't a z todo: alternateive to "zExampleReport" naming to push to bottom, find out of can ditch the z for something nicer like a unicode symbol or emoji or whatever appears at end and isn't a z
Use lightbulb symbol emoji 💡 Use lightbulb symbol emoji 💡

View File

@@ -908,7 +908,7 @@ export default {
headers.push({ headers.push({
text: this.$ay.t("WorkOrderItemPartPartID"), text: this.$ay.t("WorkOrderItemPartPartID"),
align: "left", align: "left",
value: "partViz" value: "partNameViz"
}); });
} }
@@ -940,11 +940,11 @@ export default {
}); });
} }
if (this.form().showMe(this, "PartName")) { if (this.form().showMe(this, "PartDescription")) {
headers.push({ headers.push({
text: this.$ay.t("PartName"), text: this.$ay.t("PartDescription"),
align: "left", align: "left",
value: "partNameViz" value: "partDescriptionViz"
}); });
} }

View File

@@ -863,7 +863,7 @@ export default {
headers.push({ headers.push({
text: this.$ay.t("WorkOrderItemPartPartID"), text: this.$ay.t("WorkOrderItemPartPartID"),
align: "left", align: "left",
value: "partViz" value: "partNameViz"
}); });
} }
@@ -887,11 +887,11 @@ export default {
}); });
} }
if (this.form().showMe(this, "PartName")) { if (this.form().showMe(this, "PartDescription")) {
headers.push({ headers.push({
text: this.$ay.t("PartName"), text: this.$ay.t("PartDescription"),
align: "left", align: "left",
value: "partNameViz" value: "partDescriptionViz"
}); });
} }

View File

@@ -928,7 +928,7 @@ export default {
headers.push({ headers.push({
text: this.$ay.t("WorkOrderItemPartPartID"), text: this.$ay.t("WorkOrderItemPartPartID"),
align: "left", align: "left",
value: "partViz" value: "partNameViz"
}); });
} }
@@ -960,11 +960,11 @@ export default {
}); });
} }
if (this.form().showMe(this, "PartName")) { if (this.form().showMe(this, "PartDescription")) {
headers.push({ headers.push({
text: this.$ay.t("PartName"), text: this.$ay.t("PartDescription"),
align: "left", align: "left",
value: "partNameViz" value: "partDescriptionViz"
}); });
} }