This commit is contained in:
2022-02-07 16:02:57 +00:00
parent a61e438a9a
commit 8a64702ed0
3 changed files with 22 additions and 25 deletions

View File

@@ -300,17 +300,6 @@ console.log(parseFloat(localeParseFloat("1,100.9", "nl"))); // Dutch locale: rev
- 1 todo: what the fuck is the suggested part quantity, it's not referenced anhywhere but in the docs and doesn't seem to have been coded in the v8 migrate
to ghrough the history of commits and see if there is a time it was removed due to some other changer or is it just not implemented properly as documente din ay-biz=admin-migrate
#### Work order item parts not "Used in service"
v8 work order item part affects inventory immediately when entered and saved but in v7 inventory is not affected until "Used in service" is checkmarked. For this reason, v7 work orders with work order item parts **not** checkmarked Used in service will have those quantities migrated to the "Suggested quantity" field instead of the Quantity field. This is to ensure that inventory remains in balance after migration.
In v8 Users will need to either use the "Realize suggested part quantities" command in the work order to automatically copy the suggested amounts to the Quantity field in all work order item part records for that work order or manually enter each one in the quantity field as appropriate.
-1 todo: why should user be able to open a part inventory transaction record in the first place? It opens to the history form, isn't that weird, theres nothing to see that isn't
in the grid is there??
@@ -318,6 +307,10 @@ in the grid is there??
as they are not allwoed to edit parts normally
- 1 work order items context menu, if there are no suggested parts, hide the "realize suggested part quantities" or move it elsewhere, it's annoying and only related to migration I think
ALSO remove the field from display in the woitemparts section when it's set to zero, as users should not be adding to this field, at least make it read only always, it's not a general feature
- 2 todo: when hide a section in wo like all tasks in customize should hide the add task woitem context menu item too
- 2: the home notify subscription table shows object types but without the square brackets around them and should for consistency
@@ -914,6 +907,7 @@ BUILD 8.0.0-beta.0.14 CHANGES OF NOTE
non ops users can not login during ops only state.
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

View File

@@ -630,13 +630,13 @@ export default {
});
}
if (this.form().showMe(this, "PurchaseOrderItemSerialNumbers")) {
headers.push({
text: this.$ay.t("PurchaseOrderItemSerialNumbers"),
align: "left",
value: "serials"
});
}
// if (this.form().showMe(this, "PurchaseOrderItemSerialNumbers")) {
// headers.push({
// text: this.$ay.t("PurchaseOrderItemSerialNumbers"),
// align: "left",
// value: "serials"
// });
// }
if (this.form().showMe(this, "PartUnitOfMeasureViz")) {
headers.push({

View File

@@ -588,6 +588,7 @@ export default {
value: "quantity"
});
//todo: property indicatingh if this woitem has *any* suggested quantities and removed it if not
if (this.form().showMe(this, "WorkOrderItemPartSuggestedQuantity")) {
headers.push({
text: this.$ay.t("WorkOrderItemPartSuggestedQuantity"),
@@ -620,13 +621,15 @@ export default {
});
}
if (this.form().showMe(this, "PurchaseOrderItemSerialNumbers")) {
headers.push({
text: this.$ay.t("PurchaseOrderItemSerialNumbers"),
align: "left",
value: "serials"
});
}
//not sure about this one, removed it for now
// if (this.form().showMe(this, "PurchaseOrderItemSerialNumbers")) {
// headers.push({
// text: this.$ay.t("PurchaseOrderItemSerialNumbers"),
// align: "left",
// value: "serials"
// });
// }
if (this.form().showMe(this, "PartUnitOfMeasureViz")) {
headers.push({