-
-
Notifications
You must be signed in to change notification settings - Fork 499
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[17.0][MIG] mrp_component_operation #1455
base: 17.0
Are you sure you want to change the base?
[17.0][MIG] mrp_component_operation #1455
Conversation
@ThiagoMForgeFlow dependency merged |
Currently translated at 97.8% (45 of 46 strings) Translation: manufacture-14.0/manufacture-14.0-mrp_component_operation Translate-URL: https://translation.odoo-community.org/projects/manufacture-14-0/manufacture-14-0-mrp_component_operation/it/
Manufacturing users should be allowed to operate components and therefore they need to be able to create and write the wizard model.
Currently translated at 100.0% (46 of 46 strings) Translation: manufacture-14.0/manufacture-14.0-mrp_component_operation Translate-URL: https://translation.odoo-community.org/projects/manufacture-14-0/manufacture-14-0-mrp_component_operation/it/
Currently translated at 100.0% (46 of 46 strings) Translation: manufacture-14.0/manufacture-14.0-mrp_component_operation Translate-URL: https://translation.odoo-community.org/projects/manufacture-14-0/manufacture-14-0-mrp_component_operation/it/
Currently translated at 100.0% (46 of 46 strings) Translation: manufacture-14.0/manufacture-14.0-mrp_component_operation Translate-URL: https://translation.odoo-community.org/projects/manufacture-14-0/manufacture-14-0-mrp_component_operation/it/
Currently translated at 100.0% (46 of 46 strings) Translation: manufacture-14.0/manufacture-14.0-mrp_component_operation Translate-URL: https://translation.odoo-community.org/projects/manufacture-14-0/manufacture-14-0-mrp_component_operation/it/
Currently translated at 100.0% (46 of 46 strings) Translation: manufacture-14.0/manufacture-14.0-mrp_component_operation Translate-URL: https://translation.odoo-community.org/projects/manufacture-14-0/manufacture-14-0-mrp_component_operation/it/
aditionally some adjustments have been done: - create_date is a magic field, no need to include it in the vals. - production_id is the inverse name of mo_id.scrap_ids.
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: manufacture-14.0/manufacture-14.0-mrp_component_operation Translate-URL: https://translation.odoo-community.org/projects/manufacture-14-0/manufacture-14-0-mrp_component_operation/
Currently translated at 100.0% (49 of 49 strings) Translation: manufacture-14.0/manufacture-14.0-mrp_component_operation Translate-URL: https://translation.odoo-community.org/projects/manufacture-14-0/manufacture-14-0-mrp_component_operation/it/
Currently translated at 100.0% (49 of 49 strings) Translation: manufacture-14.0/manufacture-14.0-mrp_component_operation Translate-URL: https://translation.odoo-community.org/projects/manufacture-14-0/manufacture-14-0-mrp_component_operation/it/
Currently translated at 100.0% (49 of 49 strings) Translation: manufacture-14.0/manufacture-14.0-mrp_component_operation Translate-URL: https://translation.odoo-community.org/projects/manufacture-14-0/manufacture-14-0-mrp_component_operation/it/
Currently translated at 100.0% (49 of 49 strings) Translation: manufacture-14.0/manufacture-14.0-mrp_component_operation Translate-URL: https://translation.odoo-community.org/projects/manufacture-14-0/manufacture-14-0-mrp_component_operation/es/
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: manufacture-14.0/manufacture-14.0-mrp_component_operation Translate-URL: https://translation.odoo-community.org/projects/manufacture-14-0/manufacture-14-0-mrp_component_operation/
84c73fa
to
c7b0637
Compare
source_location_id = fields.Many2one( | ||
manufacture_location_id = fields.Many2one( | ||
"stock.location", | ||
"Source Location", | ||
"Manufacture Location", | ||
help="The Location where the components are.", | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You will need to provide a migration script for this field rename
c7b0637
to
6928524
Compare
6928524
to
c26d31d
Compare
@@ -3,7 +3,7 @@ | |||
|
|||
{ | |||
"name": "MRP Components Operations", | |||
"version": "14.0.1.2.0", | |||
"version": "17.0.1.2.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Restart count to
17.0.1.0.0
@@ -3,7 +3,7 @@ | |||
|
|||
{ | |||
"name": "MRP Components Operations", | |||
"version": "14.0.1.2.0", | |||
"version": "17.0.1.2.0", | |||
"author": "ForgeFlow, Odoo Community Association (OCA)", | |||
"summary": "Allows to operate the components from a MO", | |||
"website": "https://github.com/OCA/manufacture", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Down in dependencies, we need to wait until stock_restrict_lot dependency is solved (OCA/stock-logistics-workflow#1840 ) to change or not the dependency of stock_move_forced_lot to stock_restrict_lot.
Depends on OCA/stock-logistics-workflow#1816
@ForgeFlow