diff --git a/serial_no_from_mo/README.rst b/serial_no_from_mo/README.rst new file mode 100644 index 000000000..dff1934c3 --- /dev/null +++ b/serial_no_from_mo/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Generate Lot/Serial Number From Manufacturing Order +=================================================== +* Automatically generate Serial/Lot from Manufacturing Order. +The user can set the lot/serial number sequence both globally and by product. + +Installation +============ +- www.odoo.com/documentation/16.0/setup/install.html +- Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: (V16) Jumana Jabin MP , 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 https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/serial_no_from_mo/__init__.py b/serial_no_from_mo/__init__.py new file mode 100644 index 000000000..2b7b62107 --- /dev/null +++ b/serial_no_from_mo/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP () +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/serial_no_from_mo/__manifest__.py b/serial_no_from_mo/__manifest__.py new file mode 100644 index 000000000..4ce20f0b5 --- /dev/null +++ b/serial_no_from_mo/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP () +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Generate Lot/Serial Number From Manufacturing Order', + 'version': '16.0.1.0.0', + 'category': 'Manufacturing', + 'summary': """Auto generate Serial/lot from manufacturing order""", + 'description': """Automatically generates lot/serial number for product + while confirming the manufacturing order.User can set lot/seral number + sequence in product wise and global wise""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base', 'mrp', 'stock'], + 'data': [ + 'views/res_config_settings_views.xml', + 'views/product_template_views.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/serial_no_from_mo/doc/RELEASE_NOTES.md b/serial_no_from_mo/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..b3ec4b2d1 --- /dev/null +++ b/serial_no_from_mo/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 10.01.2024 +#### Version 16.0.1.0.0 +##### ADD +- Initial Commit for Generate Lot/Serial Number From Manufacturing Order diff --git a/serial_no_from_mo/models/__init__.py b/serial_no_from_mo/models/__init__.py new file mode 100644 index 000000000..2c01e4dd4 --- /dev/null +++ b/serial_no_from_mo/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import mrp_production +from . import product_template +from . import res_config_settings diff --git a/serial_no_from_mo/models/mrp_production.py b/serial_no_from_mo/models/mrp_production.py new file mode 100644 index 000000000..07bd04cd8 --- /dev/null +++ b/serial_no_from_mo/models/mrp_production.py @@ -0,0 +1,88 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP () +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import models + + +class MrpProduction(models.Model): + """Manufacturing Production model for managing production orders. + This model represents a production order and includes functionality for + confirming the production, generating serial/lot numbers, and other + related operations.""" + _inherit = "mrp.production" + + def action_confirm(self): + """ Confirm the production order and generate serial/lot numbers. + This method is called when the production order is confirmed. + It checks the tracking type of the product and the serial_selection + configuration parameter to determine the generation of serial/lot + numbers. It generates the numbers based on the global configuration or + product-specific configuration.""" + parms = self.env['ir.config_parameter'].sudo() + for rec in self: + if rec.product_id.tracking in ['serial', 'lot']: + if parms.get_param( + 'serial_no_from_mo.serial_selection') == 'global': + digit = int(parms.get_param('serial_no_from_mo.digit')) + prefix = parms.get_param('serial_no_from_mo.prefix') + seq = self.env['ir.sequence'].sudo().search( + [('code', '=', 'mrp.production.sequence')]) + if seq: + seq.write({ + 'prefix': prefix, + 'padding': digit + }) + if not seq: + self.env['ir.sequence'].create({ + 'name': 'Mrp Production', + 'implementation': 'standard', + 'code': 'mrp.production.sequence', + 'prefix': prefix, + 'padding': digit}) + serial_id = self.env['stock.lot'].create({ + 'name': self.env['ir.sequence'].sudo().next_by_code( + 'mrp.production.sequence'), + 'product_id': rec.product_id.id, + 'company_id': rec.company_id.id, + }) + else: + seq = self.env['ir.sequence'].sudo().search( + [('code', '=', rec.product_id.name)]) + if seq: + seq.write({ + 'prefix': rec.product_id.product_tmpl_id.prefix, + 'padding': rec.product_id.product_tmpl_id.digit, + }) + if not seq: + self.env['ir.sequence'].create({ + 'name': 'Mrp Production', + 'implementation': 'standard', + 'code': rec.product_id.name, + 'prefix': rec.product_id.product_tmpl_id.prefix, + 'padding': rec.product_id.product_tmpl_id.digit}) + serial_id = self.env['stock.lot'].create({ + 'name': self.env['ir.sequence'].sudo().next_by_code( + rec.product_id.name), + 'product_id': rec.product_id.id, + 'company_id': rec.company_id.id, + }) + rec.lot_producing_id = serial_id + return super(MrpProduction, self).action_confirm() diff --git a/serial_no_from_mo/models/product_template.py b/serial_no_from_mo/models/product_template.py new file mode 100644 index 000000000..7a73d033b --- /dev/null +++ b/serial_no_from_mo/models/product_template.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP () +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class ProductTemplate(models.Model): + """Product Template model for managing product templates. + This model extends the base `product.template` model to add custom fields + for specifying the number of digits and prefix for the product.""" + _inherit = 'product.template' + + digit = fields.Integer(string="Number of Digits", + help="Specify the desired number of digits.") + prefix = fields.Char(string="Prefix", + help="Enter a prefix value if needed.") diff --git a/serial_no_from_mo/models/res_config_settings.py b/serial_no_from_mo/models/res_config_settings.py new file mode 100644 index 000000000..6e426c522 --- /dev/null +++ b/serial_no_from_mo/models/res_config_settings.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP () +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + """ Res Config Settings model for managing configuration settings. + This model extends the base `res.config.settings` model to add + custom fields for configuring serial number selection method, + number of digits, and prefix.""" + _inherit = 'res.config.settings' + + serial_selection = fields.Selection([('global', 'Global'), + ('product_wise', 'Product Wise')], + string="Choose Method", + help="Select the method for generating" + " serial numbers: global or " + "product-wise.", + config_parameter='serial_no_from_mo.' + 'serial_selection') + digit = fields.Integer(string="Number of Digits", + help="Specify the number of digits to use for the " + "serial numbers.", + config_parameter='serial_no_from_mo.digit', ) + prefix = fields.Char(string="Prefix", + help="Specify the prefix to be added to the serial" + " numbers.", + config_parameter='serial_no_from_mo.prefix', ) + is_serial_selection = fields.Boolean(string="Serial number Selection " + "Method", help="Enable or " + "disable the" + " serial number" + " selection " + "method.", + config_parameter='serial_no_from_mo.' + 'is_serial_selection' + ) diff --git a/serial_no_from_mo/static/description/assets/icons/check.png b/serial_no_from_mo/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/check.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/chevron.png b/serial_no_from_mo/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/chevron.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/cogs.png b/serial_no_from_mo/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/cogs.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/consultation.png b/serial_no_from_mo/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/consultation.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/ecom-black.png b/serial_no_from_mo/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/ecom-black.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/education-black.png b/serial_no_from_mo/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/education-black.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/hotel-black.png b/serial_no_from_mo/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/hotel-black.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/license.png b/serial_no_from_mo/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/license.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/lifebuoy.png b/serial_no_from_mo/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/lifebuoy.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/manufacturing-black.png b/serial_no_from_mo/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/manufacturing-black.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/pos-black.png b/serial_no_from_mo/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/pos-black.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/puzzle.png b/serial_no_from_mo/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/puzzle.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/restaurant-black.png b/serial_no_from_mo/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/restaurant-black.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/service-black.png b/serial_no_from_mo/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/service-black.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/trading-black.png b/serial_no_from_mo/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/trading-black.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/training.png b/serial_no_from_mo/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/training.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/update.png b/serial_no_from_mo/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/update.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/user.png b/serial_no_from_mo/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/user.png differ diff --git a/serial_no_from_mo/static/description/assets/icons/wrench.png b/serial_no_from_mo/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/wrench.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/categories.png b/serial_no_from_mo/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/categories.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/check-box.png b/serial_no_from_mo/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/check-box.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/compass.png b/serial_no_from_mo/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/compass.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/corporate.png b/serial_no_from_mo/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/corporate.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/customer-support.png b/serial_no_from_mo/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/customer-support.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/cybrosys-logo.png b/serial_no_from_mo/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/cybrosys-logo.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/features.png b/serial_no_from_mo/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/features.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/logo.png b/serial_no_from_mo/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/logo.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/pictures.png b/serial_no_from_mo/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/pictures.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/pie-chart.png b/serial_no_from_mo/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/pie-chart.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/right-arrow.png b/serial_no_from_mo/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/right-arrow.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/star.png b/serial_no_from_mo/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/star.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/support.png b/serial_no_from_mo/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/support.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/whatsapp.png b/serial_no_from_mo/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/whatsapp.png differ diff --git a/serial_no_from_mo/static/description/assets/modules/l1.png b/serial_no_from_mo/static/description/assets/modules/l1.png new file mode 100644 index 000000000..db4d0f8f2 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/modules/l1.png differ diff --git a/serial_no_from_mo/static/description/assets/modules/l2.png b/serial_no_from_mo/static/description/assets/modules/l2.png new file mode 100644 index 000000000..69ecacfce Binary files /dev/null and b/serial_no_from_mo/static/description/assets/modules/l2.png differ diff --git a/serial_no_from_mo/static/description/assets/modules/l3.png b/serial_no_from_mo/static/description/assets/modules/l3.png new file mode 100644 index 000000000..4e8874e3f Binary files /dev/null and b/serial_no_from_mo/static/description/assets/modules/l3.png differ diff --git a/serial_no_from_mo/static/description/assets/modules/l4.png b/serial_no_from_mo/static/description/assets/modules/l4.png new file mode 100644 index 000000000..06d2c16ba Binary files /dev/null and b/serial_no_from_mo/static/description/assets/modules/l4.png differ diff --git a/serial_no_from_mo/static/description/assets/modules/l5.png b/serial_no_from_mo/static/description/assets/modules/l5.png new file mode 100644 index 000000000..6699ad071 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/modules/l5.png differ diff --git a/serial_no_from_mo/static/description/assets/modules/l6.png b/serial_no_from_mo/static/description/assets/modules/l6.png new file mode 100644 index 000000000..e78427938 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/modules/l6.png differ diff --git a/serial_no_from_mo/static/description/assets/screenshots/1.png b/serial_no_from_mo/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..ca7267851 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/screenshots/1.png differ diff --git a/serial_no_from_mo/static/description/assets/screenshots/2.png b/serial_no_from_mo/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..11c35f8a2 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/screenshots/2.png differ diff --git a/serial_no_from_mo/static/description/assets/screenshots/3.png b/serial_no_from_mo/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..b9989e4e5 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/screenshots/3.png differ diff --git a/serial_no_from_mo/static/description/assets/screenshots/4.png b/serial_no_from_mo/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..86d81043f Binary files /dev/null and b/serial_no_from_mo/static/description/assets/screenshots/4.png differ diff --git a/serial_no_from_mo/static/description/assets/screenshots/5.png b/serial_no_from_mo/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..81505a348 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/screenshots/5.png differ diff --git a/serial_no_from_mo/static/description/assets/screenshots/hero.gif b/serial_no_from_mo/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..0bc0e6600 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/screenshots/hero.gif differ diff --git a/serial_no_from_mo/static/description/banner.jpg b/serial_no_from_mo/static/description/banner.jpg new file mode 100644 index 000000000..18f9f453d Binary files /dev/null and b/serial_no_from_mo/static/description/banner.jpg differ diff --git a/serial_no_from_mo/static/description/icon.png b/serial_no_from_mo/static/description/icon.png new file mode 100644 index 000000000..9188b86f7 Binary files /dev/null and b/serial_no_from_mo/static/description/icon.png differ diff --git a/serial_no_from_mo/static/description/index.html b/serial_no_from_mo/static/description/index.html new file mode 100644 index 000000000..bd66e57c6 --- /dev/null +++ b/serial_no_from_mo/static/description/index.html @@ -0,0 +1,706 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.Sh +
+
+
+ +
+
+
+

+ Generate Lot/Serial Number From Manufacturing Order

+

+ Automatically generates Lot/Serial number from MO +

+ +
+
+ + + +
+
+

+ Overview +

+
+ +
+

+ Automatically generates lot/serial number for product while + confirming + the manufacturing order.User can set lot/serial number + sequence + in + product wise and global wise

+
+
+ +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Auto Generate Lot/Serial Number

+
+
+ +
+
+ +
+
+

+ Product Wise Lot/Serial Number Sequence

+
+
+ +
+
+ +
+
+

+ Global Wise Lot/Serial Number Sequence

+
+
+
+ +
+
+

+ Screenshots +

+
+
+

+ Configuration Settings

+

+ User can select and configure the Serial number Selection + Method. + Using Global wise user can set sequence for all + products.Product + wise used to set sequence for each + product separately +

+ +
+ +
+

+ Auto Generated Lot/Serial Number in Global Method

+

+

+ +
+ +
+

+ Product Wise Method

+ +
+ + +
+

+ User can set sequence for each product +

+ +
+ +
+

+ Auto Generated Lot/Serial Number in Product Wise + Method

+ +
+
+ + +
+
+ +
+

+ Related + 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

+
+
+
+
+ + + + +
+
+ +
+

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need + help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on + WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ +
+
diff --git a/serial_no_from_mo/static/description/src/css/settings.css b/serial_no_from_mo/static/description/src/css/settings.css new file mode 100644 index 000000000..8365373f6 --- /dev/null +++ b/serial_no_from_mo/static/description/src/css/settings.css @@ -0,0 +1,3 @@ +.custom-margin-top { + margin-top: 8px; +} diff --git a/serial_no_from_mo/views/product_template_views.xml b/serial_no_from_mo/views/product_template_views.xml new file mode 100644 index 000000000..230aaa157 --- /dev/null +++ b/serial_no_from_mo/views/product_template_views.xml @@ -0,0 +1,19 @@ + + + + + product.template.view.form.inherit.serial.no.from.mo + + product.template + + + + + + + + + diff --git a/serial_no_from_mo/views/res_config_settings_views.xml b/serial_no_from_mo/views/res_config_settings_views.xml new file mode 100644 index 000000000..25366d754 --- /dev/null +++ b/serial_no_from_mo/views/res_config_settings_views.xml @@ -0,0 +1,63 @@ + + + + + + res.config.settings.view.form.inherit.serial.no.from.mo + + res.config.settings + + + +
+
+ +
+
+
+
+
+
+
+