diff --git a/serial_no_from_mo/README.rst b/serial_no_from_mo/README.rst new file mode 100644 index 000000000..2b32e94bd --- /dev/null +++ b/serial_no_from_mo/README.rst @@ -0,0 +1,50 @@ +.. 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. + +Configuration +============= +No additional configuration required + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +* Developer: + (V16) Jumana Jabin MP, + (V17) Jumana Haseen, +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..27f7e5b5c --- /dev/null +++ b/serial_no_from_mo/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Jumana Haseen () +# +# 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..1a88a9c3e --- /dev/null +++ b/serial_no_from_mo/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Jumana Haseen () +# +# 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': '17.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..f0f50cc4c --- /dev/null +++ b/serial_no_from_mo/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 08.04.2024 +#### Version 17.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..d648119c5 --- /dev/null +++ b/serial_no_from_mo/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Jumana Haseen () +# +# 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..01beab470 --- /dev/null +++ b/serial_no_from_mo/models/mrp_production.py @@ -0,0 +1,88 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Jumana Haseen () +# +# 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..31ef37a48 --- /dev/null +++ b/serial_no_from_mo/models/product_template.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Jumana Haseen () +# +# 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..13fc8820d --- /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) 2024-TODAY Cybrosys Technologies() +# Author: Jumana Haseen () +# +# 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/capture (1).png b/serial_no_from_mo/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/capture (1).png differ 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/img.png b/serial_no_from_mo/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/img.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/photo-capture.png b/serial_no_from_mo/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/icons/photo-capture.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/Cybrosys R.png b/serial_no_from_mo/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/misc/Cybrosys R.png differ diff --git a/serial_no_from_mo/static/description/assets/misc/email.svg b/serial_no_from_mo/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/serial_no_from_mo/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/serial_no_from_mo/static/description/assets/misc/phone.svg b/serial_no_from_mo/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/serial_no_from_mo/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/serial_no_from_mo/static/description/assets/misc/star (1) 2.svg b/serial_no_from_mo/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/serial_no_from_mo/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/serial_no_from_mo/static/description/assets/misc/support (1) 1.svg b/serial_no_from_mo/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/serial_no_from_mo/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/serial_no_from_mo/static/description/assets/misc/support-email.svg b/serial_no_from_mo/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/serial_no_from_mo/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/serial_no_from_mo/static/description/assets/misc/tick-mark.svg b/serial_no_from_mo/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/serial_no_from_mo/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/serial_no_from_mo/static/description/assets/misc/whatsapp 1.svg b/serial_no_from_mo/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/serial_no_from_mo/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/serial_no_from_mo/static/description/assets/misc/whatsapp.svg b/serial_no_from_mo/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/serial_no_from_mo/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/serial_no_from_mo/static/description/assets/modules/1.png b/serial_no_from_mo/static/description/assets/modules/1.png new file mode 100644 index 000000000..1fc10028c Binary files /dev/null and b/serial_no_from_mo/static/description/assets/modules/1.png differ diff --git a/serial_no_from_mo/static/description/assets/modules/2.png b/serial_no_from_mo/static/description/assets/modules/2.png new file mode 100644 index 000000000..5eb81f6d0 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/modules/2.png differ diff --git a/serial_no_from_mo/static/description/assets/modules/3.png b/serial_no_from_mo/static/description/assets/modules/3.png new file mode 100644 index 000000000..9256fdce5 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/modules/3.png differ diff --git a/serial_no_from_mo/static/description/assets/modules/4.png b/serial_no_from_mo/static/description/assets/modules/4.png new file mode 100644 index 000000000..c9079653a Binary files /dev/null and b/serial_no_from_mo/static/description/assets/modules/4.png differ diff --git a/serial_no_from_mo/static/description/assets/modules/5.png b/serial_no_from_mo/static/description/assets/modules/5.png new file mode 100644 index 000000000..998d6d079 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/modules/5.png differ diff --git a/serial_no_from_mo/static/description/assets/modules/6.png b/serial_no_from_mo/static/description/assets/modules/6.png new file mode 100644 index 000000000..d0381b9c9 Binary files /dev/null and b/serial_no_from_mo/static/description/assets/modules/6.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..d2bc57ae8 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..b2deaaf67 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..6dd00db57 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..2ab6af4aa 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..c6c68f6bd 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..02f8440bd 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..169895dbf 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..b29dc418b 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..eed22e2c3 --- /dev/null +++ b/serial_no_from_mo/static/description/index.html @@ -0,0 +1,723 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Generate Lot/Serial Number From Manufacturing Order

+

+ Automatically generates Lot/Serial number from MO. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Auto Generate Lot/Serial Number.

+
+
+
+
+
+
+ +
+
+

+ Product Wise Lot/Serial Number Sequence.

+
+
+
+
+
+
+ +
+
+

+ Global Wise Lot/Serial Number Sequence.

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

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

+
+
+
+
+
+
+
    +
  • + Available in + Odoo 17.0 Community and Enterprise. +
  • +
  • + Generate Lot/Serial Number From Manufacturing Order +
      +
    • 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 +
    • +
    +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:8th April 2024 +
+

+ Initial Commit for Generate Lot/Serial Number From Manufacturing Order.

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + 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..c2639af62 --- /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..f461596fe --- /dev/null +++ b/serial_no_from_mo/views/res_config_settings_views.xml @@ -0,0 +1,60 @@ + + + + + res.config.settings.view.form.inherit.serial.no.from.mo + res.config.settings + + + +
+
+ +
+
+
+
+
+
+
+