This commit is contained in:
2021-11-09 19:52:37 +00:00
parent c005cfc98f
commit ace826d0fc

View File

@@ -135,14 +135,6 @@ todo: add it as a todo statement in the export log and post export instructions
not setting active forces license compliance and avoids license issues when migrating that might crop up in some scenarios
also it forces them to make a choice in who to activate and allows for downgrade of licenses if they choose to.
todo: unused parts on workorder handling
Add "Suggested quantity" field to workorder item part backed by db column
also add it to PM's so users can bypass inventory temporarily for pm's that generate work orders
Add high level menu item to "Realize suggested part quanitities", probably at workorder level so it's one and done
In migrate, if a part is unused then it's qty goes into suggested and quantity is set to zero
Keep inventory sync as is, it's now correct as the quantities are zero for unused parts so no out of balance issue
Maybe Tag the workorders with "v8migrate-has-suggested-parts"
Make sure serials are handled correctly, I'm guessing as is because they wouldn't be entered if they didn't exist
@@ -974,6 +966,13 @@ BUILD 136 CHANGES OF NOTE
- case 4019
- case 4022
- fixed bug in svc-schedule that was allowing inactive users to be displayed when matching tags were selected but should not have shown any inactive users
- migrate unused parts on workorder handling change
Added "Suggested quantity" field to workorder item part backed by db column
(also added it to PM's for consistency and so users can bypass inventory temporarily for pm's that generate work orders. did not add to quote as redundant)
Added woitem level menu item to wo form to "Realize suggested part quantities" which iterates all woitempart records in that woitem and if
qty is 0 and suggested qty is > 0 then copies to qty from suggested and sets records dirty for save
In v8migrate, if a part is unused then it's qty goes into suggested and quantity is set to zero
Inventory sync no change as it's now correct as the quantities are zero for unused parts so no out of balance issue