diff --git a/cw_mrp/README.rst b/cw_mrp/README.rst new file mode 100644 index 000000000..417614e53 --- /dev/null +++ b/cw_mrp/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Catch Weight - Manufacturing +============================ +* Enables management of Catch weight of products in Manufacturing module + +Configuration +============= +* No additional configurations needed + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer:(V14) Ammu Raj, Contact : odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/cw_mrp/__init__.py b/cw_mrp/__init__.py new file mode 100644 index 000000000..d9e93b8e8 --- /dev/null +++ b/cw_mrp/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import models diff --git a/cw_mrp/__manifest__.py b/cw_mrp/__manifest__.py new file mode 100644 index 000000000..e47949f83 --- /dev/null +++ b/cw_mrp/__manifest__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +{ + 'name': "Catch Weight - Manufacturing", + 'version': '14.0.1.0.0', + 'category': 'Manufacturing', + 'summary': "Enables management of Catch weight of products in" + "Manufacturing module", + 'description': "Catch weight is simply a parallel unit of measure used to" + "manage variable-weight products. This module brings the" + "catch weight system in the manufacturing module.We can" + "manufacture, scrap and unbuild products based on the catch" + "weight of the product.", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['mrp_subcontracting', 'cw_stock'], + 'data': [ + 'views/mrp_bom_views.xml', + 'views/mrp_production_views.xml', + 'views/mrp_unbuild_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/cw_mrp/doc/RELEASE_NOTES.md b/cw_mrp/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..c6e96134a --- /dev/null +++ b/cw_mrp/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 07.11.2023 +#### Version 14.0.1.0.0 +#### ADD + +- Initial commit for Catch Weight- Manufacturing diff --git a/cw_mrp/models/__init__.py b/cw_mrp/models/__init__.py new file mode 100644 index 000000000..f4ec2b9cb --- /dev/null +++ b/cw_mrp/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import mrp_bom +from . import mrp_production +from . import mrp_unbuild diff --git a/cw_mrp/models/mrp_bom.py b/cw_mrp/models/mrp_bom.py new file mode 100644 index 000000000..e409247b5 --- /dev/null +++ b/cw_mrp/models/mrp_bom.py @@ -0,0 +1,107 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import api, fields, models + + +class MrpBom(models.Model): + """Inherits mrp.bom for adding catch weight fields and functions""" + _inherit = 'mrp.bom' + + cw_qty = fields.Float(related='product_tmpl_id.average_cw_qty', + string='CW-Qty', digits=(16, 4), + help="Catch weight quantity", readonly=False) + category_id = fields.Many2one('uom.category', string="Category", + help="Category of the Product", + default=lambda self: self.env.ref( + 'uom.product_uom_categ_kgm')) + cw_uom_id = fields.Many2one('uom.uom', related='product_tmpl_id.cw_uom_id', + string='CW-Uom', + help="Catch weight unit of measure", + domain="[('category_id', '=', category_id)]", + store=True) + toggle_cw = fields.Boolean(related='product_tmpl_id.catch_weight_ok', + string='Is CW Product', + help="True for catch weight products") + + @api.onchange('cw_qty') + def _onchange_cw_qty(self): + """Calculates value of product_qty""" + if self.toggle_cw and self.product_tmpl_id.average_cw_qty != 0: + self.product_qty = self.cw_qty / self.product_tmpl_id.average_cw_qty + + @api.onchange('product_qty') + def _onchange_product_qty(self): + """Method for calculating the value of cw_qty""" + if self.toggle_cw: + self.cw_qty = self.product_tmpl_id.average_cw_qty * self.product_qty + + +class MrpBomLine(models.Model): + """Inherits mrp.bom.line for adding catch weight fields and functions""" + _inherit = 'mrp.bom.line' + + cw_qty = fields.Float(string='CW-Qty', digits=(16, 4), + help="Catch weight quantity") + category_id = fields.Many2one('uom.category', string='Category', + help="Category of the" + " Product", + default=lambda self: self.env.ref( + 'uom.product_uom_categ_kgm')) + cw_uom_id = fields.Many2one('uom.uom', + related='product_id.cw_uom_id', + string='CW-Uom', help='Catch weight uom of the' + ' product', + domain="[('category_id', '=', category_id)]", + store=True) + cw_hide = fields.Boolean(related='product_id.catch_weight_ok', + string='CW-Hide', + help="True for catch weight products") + + @api.onchange('product_id', 'product_qty') + def _onchange_product_id(self): + """Method for calculating the value of cw_qty if product_id or + product_qty changed""" + for rec in self: + if rec.cw_uom_id == rec.product_uom_id: + rec.cw_qty = rec.product_qty + else: + rec.cw_qty = rec.product_qty * rec.product_id.average_cw_qty + + @api.onchange('cw_qty') + def _onchange_cw_qty(self): + """Method for calculating product qty if the value of cw_qty changed""" + for rec in self: + if rec.product_id.catch_weight_ok and rec.product_qty and \ + rec.cw_qty != 0 and rec.product_id.average_cw_qty != 0: + if rec.cw_uom_id == rec.product_uom_id: + rec.product_qty = rec.cw_qty + else: + rec.product_qty = rec.cw_qty / rec.product_id.average_cw_qty + + @api.onchange('product_uom_id', 'cw_uom_id') + def _onchange_product_uom_id(self): + """Method for calculating the value of cw_qty if value of + product_uom_id or cw_uom_id changed""" + for rec in self: + if rec.product_id.catch_weight_ok and rec.cw_uom_id and \ + rec.product_uom_id.category_id == rec.cw_uom_id.category_id: + rec.cw_qty = rec.cw_uom_id.factor / rec.product_uom_id.factor diff --git a/cw_mrp/models/mrp_production.py b/cw_mrp/models/mrp_production.py new file mode 100644 index 000000000..4fec373dc --- /dev/null +++ b/cw_mrp/models/mrp_production.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import api, fields, models + + +class MrpProduction(models.Model): + """Inherits mrp.bom for adding extra fields and functions""" + _inherit = 'mrp.production' + + cw_qty = fields.Float(related='product_tmpl_id.average_cw_qty', + string='CW-Qty', digits=(16, 4), readonly=False, + help="Catch weight quantity") + category_id = fields.Many2one('uom.category', string='Category', + help="Category of the" + " Product", + default=lambda self: self.env.ref( + 'uom.product_uom_categ_kgm')) + cw_uom_id = fields.Many2one('uom.uom', related='product_tmpl_id.cw_uom_id', + string='CW-Uom', + help="Catch weight unit of measure", + domain="[('category_id', '=', category_id)]", + store=True) + toggle_cw = fields.Boolean(related='product_tmpl_id.catch_weight_ok', + string='Is CW Product', + help="True for catch weight products") + + @api.onchange('cw_qty') + def _onchange_cw_qty(self): + """Method for calculating product qty based on the value of cw_qty""" + if self.toggle_cw and self.product_tmpl_id.average_cw_qty != 0: + self.product_qty = self.cw_qty / self.product_tmpl_id.average_cw_qty + + @api.onchange('product_qty') + def _onchange_product_qty(self): + """Method for calculating cw_qty based on the value of product_qty""" + if self.toggle_cw: + self.cw_qty = self.product_tmpl_id.average_cw_qty * self.product_qty diff --git a/cw_mrp/models/mrp_unbuild.py b/cw_mrp/models/mrp_unbuild.py new file mode 100644 index 000000000..eccec4ca0 --- /dev/null +++ b/cw_mrp/models/mrp_unbuild.py @@ -0,0 +1,75 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import api, fields, models + + +class MrpUnbuild(models.Model): + """Inherits mrp.unbuild for adding catch weight fields and functions""" + _inherit = 'mrp.unbuild' + + cw_qty = fields.Float(string='CW-Qty', digits=(16, 4), + help="Catch weight quantity") + category_id = fields.Many2one('uom.category', string='Category', + help='Uom category of the product', + default=lambda self: self.env.ref( + 'uom.product_uom_categ_kgm'), ) + cw_uom_id = fields.Many2one('uom.uom', related='product_id.cw_uom_id', + string='CW-Uom', + help="Catch weight unit of measure", + domain="[('category_id', '=', category_id)]", + store=True) + toggle_cw = fields.Boolean(related='product_id.catch_weight_ok', + string='Is CW Product', + help="True for catch weight products") + + @api.onchange('product_id') + def _onchange_product_id(self): + """method for calculating the value of cw_qty based on the value of + product_id""" + self.cw_qty = self.product_id.average_cw_qty * self.product_qty + return super()._onchange_product_id() + + @api.onchange('cw_qty') + def _onchange_cw_qty(self): + """method for calculating value of product_qty based on cw_qty""" + if self.toggle_cw and self.product_id.average_cw_qty != 0: + if self.cw_uom_id == self.product_uom_id: + self.product_qty = self.cw_qty + else: + self.product_qty = self.cw_qty / self.product_id.average_cw_qty + + @api.onchange('product_qty') + def _onchange_product_qty(self): + """Method for calculating the value of cw_qty based on product_qty""" + if self.toggle_cw: + if self.cw_uom_id == self.product_uom_id: + self.cw_qty = self.product_qty + else: + self.cw_qty = self.product_id.average_cw_qty * self.product_qty + + @api.onchange('product_uom_id', 'cw_uom_id') + def _onchange_product_uom_id(self): + """Method for calculating the value of cw_qty if value of + product_uom_id or cw_uom_id changed""" + if self.product_id.catch_weight_ok and self.cw_uom_id and \ + self.product_uom_id.category_id == self.cw_uom_id.category_id: + self.cw_qty = self.cw_uom_id.factor / self.product_uom_id.factor diff --git a/cw_mrp/static/description/assets/icons/check.png b/cw_mrp/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/cw_mrp/static/description/assets/icons/check.png differ diff --git a/cw_mrp/static/description/assets/icons/chevron.png b/cw_mrp/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/cw_mrp/static/description/assets/icons/chevron.png differ diff --git a/cw_mrp/static/description/assets/icons/cogs.png b/cw_mrp/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/cw_mrp/static/description/assets/icons/cogs.png differ diff --git a/cw_mrp/static/description/assets/icons/consultation.png b/cw_mrp/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/cw_mrp/static/description/assets/icons/consultation.png differ diff --git a/cw_mrp/static/description/assets/icons/ecom-black.png b/cw_mrp/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/cw_mrp/static/description/assets/icons/ecom-black.png differ diff --git a/cw_mrp/static/description/assets/icons/education-black.png b/cw_mrp/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/cw_mrp/static/description/assets/icons/education-black.png differ diff --git a/cw_mrp/static/description/assets/icons/hotel-black.png b/cw_mrp/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/cw_mrp/static/description/assets/icons/hotel-black.png differ diff --git a/cw_mrp/static/description/assets/icons/license.png b/cw_mrp/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/cw_mrp/static/description/assets/icons/license.png differ diff --git a/cw_mrp/static/description/assets/icons/lifebuoy.png b/cw_mrp/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/cw_mrp/static/description/assets/icons/lifebuoy.png differ diff --git a/cw_mrp/static/description/assets/icons/logo.png b/cw_mrp/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/cw_mrp/static/description/assets/icons/logo.png differ diff --git a/cw_mrp/static/description/assets/icons/manufacturing-black.png b/cw_mrp/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/cw_mrp/static/description/assets/icons/manufacturing-black.png differ diff --git a/cw_mrp/static/description/assets/icons/pos-black.png b/cw_mrp/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/cw_mrp/static/description/assets/icons/pos-black.png differ diff --git a/cw_mrp/static/description/assets/icons/puzzle.png b/cw_mrp/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/cw_mrp/static/description/assets/icons/puzzle.png differ diff --git a/cw_mrp/static/description/assets/icons/restaurant-black.png b/cw_mrp/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/cw_mrp/static/description/assets/icons/restaurant-black.png differ diff --git a/cw_mrp/static/description/assets/icons/service-black.png b/cw_mrp/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/cw_mrp/static/description/assets/icons/service-black.png differ diff --git a/cw_mrp/static/description/assets/icons/trading-black.png b/cw_mrp/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/cw_mrp/static/description/assets/icons/trading-black.png differ diff --git a/cw_mrp/static/description/assets/icons/training.png b/cw_mrp/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/cw_mrp/static/description/assets/icons/training.png differ diff --git a/cw_mrp/static/description/assets/icons/update.png b/cw_mrp/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/cw_mrp/static/description/assets/icons/update.png differ diff --git a/cw_mrp/static/description/assets/icons/user.png b/cw_mrp/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/cw_mrp/static/description/assets/icons/user.png differ diff --git a/cw_mrp/static/description/assets/icons/wrench.png b/cw_mrp/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/cw_mrp/static/description/assets/icons/wrench.png differ diff --git a/cw_mrp/static/description/assets/modules/1.png b/cw_mrp/static/description/assets/modules/1.png new file mode 100644 index 000000000..b470725a1 Binary files /dev/null and b/cw_mrp/static/description/assets/modules/1.png differ diff --git a/cw_mrp/static/description/assets/modules/2.png b/cw_mrp/static/description/assets/modules/2.png new file mode 100644 index 000000000..08f6e4e9f Binary files /dev/null and b/cw_mrp/static/description/assets/modules/2.png differ diff --git a/cw_mrp/static/description/assets/modules/3.png b/cw_mrp/static/description/assets/modules/3.png new file mode 100644 index 000000000..48aec7199 Binary files /dev/null and b/cw_mrp/static/description/assets/modules/3.png differ diff --git a/cw_mrp/static/description/assets/modules/4.png b/cw_mrp/static/description/assets/modules/4.png new file mode 100644 index 000000000..eb4e651aa Binary files /dev/null and b/cw_mrp/static/description/assets/modules/4.png differ diff --git a/cw_mrp/static/description/assets/modules/5.png b/cw_mrp/static/description/assets/modules/5.png new file mode 100644 index 000000000..052be5bf5 Binary files /dev/null and b/cw_mrp/static/description/assets/modules/5.png differ diff --git a/cw_mrp/static/description/assets/modules/6.png b/cw_mrp/static/description/assets/modules/6.png new file mode 100644 index 000000000..48303274f Binary files /dev/null and b/cw_mrp/static/description/assets/modules/6.png differ diff --git a/cw_mrp/static/description/assets/screenshots/Screenshot1.png b/cw_mrp/static/description/assets/screenshots/Screenshot1.png new file mode 100644 index 000000000..8866f9dc6 Binary files /dev/null and b/cw_mrp/static/description/assets/screenshots/Screenshot1.png differ diff --git a/cw_mrp/static/description/assets/screenshots/Screenshot2.png b/cw_mrp/static/description/assets/screenshots/Screenshot2.png new file mode 100644 index 000000000..17fcb13e2 Binary files /dev/null and b/cw_mrp/static/description/assets/screenshots/Screenshot2.png differ diff --git a/cw_mrp/static/description/assets/screenshots/Screenshot3.png b/cw_mrp/static/description/assets/screenshots/Screenshot3.png new file mode 100644 index 000000000..e6db2de83 Binary files /dev/null and b/cw_mrp/static/description/assets/screenshots/Screenshot3.png differ diff --git a/cw_mrp/static/description/assets/screenshots/Screenshot4.png b/cw_mrp/static/description/assets/screenshots/Screenshot4.png new file mode 100644 index 000000000..5b01f27f6 Binary files /dev/null and b/cw_mrp/static/description/assets/screenshots/Screenshot4.png differ diff --git a/cw_mrp/static/description/assets/screenshots/Screenshot5.png b/cw_mrp/static/description/assets/screenshots/Screenshot5.png new file mode 100644 index 000000000..c38eafa9b Binary files /dev/null and b/cw_mrp/static/description/assets/screenshots/Screenshot5.png differ diff --git a/cw_mrp/static/description/assets/screenshots/hero.gif b/cw_mrp/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..f84c96db0 Binary files /dev/null and b/cw_mrp/static/description/assets/screenshots/hero.gif differ diff --git a/cw_mrp/static/description/banner.png b/cw_mrp/static/description/banner.png new file mode 100644 index 000000000..e6d80b241 Binary files /dev/null and b/cw_mrp/static/description/banner.png differ diff --git a/cw_mrp/static/description/icon.png b/cw_mrp/static/description/icon.png new file mode 100644 index 000000000..88899e019 Binary files /dev/null and b/cw_mrp/static/description/icon.png differ diff --git a/cw_mrp/static/description/index.html b/cw_mrp/static/description/index.html new file mode 100644 index 000000000..f4129be84 --- /dev/null +++ b/cw_mrp/static/description/index.html @@ -0,0 +1,625 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+
+
+

+ Catch Weight - Manufacturing

+

+ This Module Facilitates the Catch Weight Management in + Manufacturing Module. +

+ +
+
+ +
+
+

+ Overview +

+
+ +
+

+ Catch weight is simply a parallel unit of measure used to manage + variable-weight products. This module brings the catch weight + system in the manufacturing module. We can manufacture, scrap and + unbuild products based on the catch weight of the product.

+
+
+
+
+

+ Features +

+
+
+
+ +
+
+

+ Bill of Material based on Catch Weight.

+
+
+
+
+ +
+
+

+ Manufacturing Orders based on Catch Weight.

+
+
+
+
+ +
+
+

+ Unbild Orders based on Catch Weight.

+
+
+
+
+ +
+
+

+ Stock Move based on Catch Weight

+
+
+
+
+
+
+

+ Screenshots +

+
+
+

+ Enable Catch Weight Product

+

+ We can click on the checkbox "Catch Weight Product" to Enable The + Catch weight on the selected product. Also + add Catch weight UoM and + Catch Weight.

+ +
+
+

+ Bill of Material Based On Catch Weight

+

+ While we select the product and components, if the product has Catch + Weight, then Catch weight UoM and + Catch Weight will be displayed there.

+ +
+
+

+ Manufacturing Order based on Catch Weight

+

+ While we're selecting a product in Manufacturing order, then Catch + weight UoM and + Catch Weight will be displayed there if it is applicable. +

+ +
+
+

+ Unbuild Order based on Catch Weight

+ +
+
+

+ Stock Move with Catch Weight

+ + +
+
+ +
+
+

Suggested Products

+
+ +
+
+ + +
+
+
+

Our Services

+
+
+
+
+ +
+
+ Odoo + Customization
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Support
+
+
+
+ +
+
+ Hire + Odoo + Developer
+
+
+
+ +
+
+ Odoo + Integration
+
+
+
+ +
+
+ Odoo + Migration
+
+
+
+ +
+
+ Odoo + Consultancy
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + +
+
+
+

Our Industries

+
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + + +
+
+
+

Need Help?

+
+
+
+ +
+
+
+ +
+ WhatsApp +
+
+
+
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ \ No newline at end of file diff --git a/cw_mrp/views/mrp_bom_views.xml b/cw_mrp/views/mrp_bom_views.xml new file mode 100644 index 000000000..a46b8d93e --- /dev/null +++ b/cw_mrp/views/mrp_bom_views.xml @@ -0,0 +1,37 @@ + + + + + mrp.bom.view.form.inherit.cw.mrp + mrp.bom + + + + + + + + + + + + + + diff --git a/cw_mrp/views/mrp_production_views.xml b/cw_mrp/views/mrp_production_views.xml new file mode 100644 index 000000000..b4872e82f --- /dev/null +++ b/cw_mrp/views/mrp_production_views.xml @@ -0,0 +1,57 @@ + + + + + mrp.production.view.form.inherit.cw.mrp + mrp.production + + + + + + + + + + + + + + + + + diff --git a/cw_mrp/views/mrp_unbuild_views.xml b/cw_mrp/views/mrp_unbuild_views.xml new file mode 100644 index 000000000..5653058cb --- /dev/null +++ b/cw_mrp/views/mrp_unbuild_views.xml @@ -0,0 +1,53 @@ + + + + + mrp.unbuild.view.form.inherit.cw.mrp + mrp.unbuild + + + + + + + + + + + mrp.unbuild.view.form.inherit.cw.mrp + + mrp.unbuild + + + + + + + + +