diff --git a/simple_mrp_order/README.rst b/simple_mrp_order/README.rst new file mode 100644 index 000000000..1e4a2d885 --- /dev/null +++ b/simple_mrp_order/README.rst @@ -0,0 +1,45 @@ +Simple Manufacturing Orders +=========================== +This module will help you to create manufacturing order in few steps. + +Features +======== + +* warning will appear if the quantity is not available + +Installation +============ +- www.odoo.com/documentation/15.0/setup/install.html +- Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/user/14.0/legal/licenses/licenses.html) + +Company +------- +* 'Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: V14.0 Mehjabin Farsana, odoo@cybrosys.com + V15.0 Pranav T V, odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@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 +========== +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/simple_mrp_order/__init__.py b/simple_mrp_order/__init__.py new file mode 100644 index 000000000..0650744f6 --- /dev/null +++ b/simple_mrp_order/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/simple_mrp_order/__manifest__.py b/simple_mrp_order/__manifest__.py new file mode 100644 index 000000000..c5f13780a --- /dev/null +++ b/simple_mrp_order/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +###################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies(). +# Author: Mehjabin Farsana (Contact : odoo@cybrosys.com) +# +# This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1) +# It is forbidden to publish, distribute, sublicense, or sell copies of the Software +# or modified copies of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. +# +######################################################################################## +{ + 'name': 'Simple Manufacturing Orders', + 'version': '15.0.1.0.0', + 'summary': 'Create Manufacturing Orders Easily', + 'description': """This module allow you to create manufacturing orders with out + taking the work orders or work centers.""", + 'category': 'Manufacturing/Manufacturing', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'depends': ['mail', 'stock'], + 'website': 'https://www.cybrosys.com', + 'data': [ + 'security/security.xml', + 'security/ir.model.access.csv', + 'data/data.xml', + 'views/mrp_order_view.xml', + 'views/mrp_bom_view.xml', + 'views/product_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': True, +} \ No newline at end of file diff --git a/simple_mrp_order/data/data.xml b/simple_mrp_order/data/data.xml new file mode 100644 index 000000000..f91ff485f --- /dev/null +++ b/simple_mrp_order/data/data.xml @@ -0,0 +1,18 @@ + + + + Simple MRP + mrp.order + MRP/ + 5 + 1 + 1 + + + + Simple Production + + inventory + + + diff --git a/simple_mrp_order/doc/RELEASE_NOTES.md b/simple_mrp_order/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..00f0f16e7 --- /dev/null +++ b/simple_mrp_order/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 13.1.2022 +#### Version 15.0.1.0.0 +##### ADD +- Initial commit + diff --git a/simple_mrp_order/models/__init__.py b/simple_mrp_order/models/__init__.py new file mode 100644 index 000000000..707960074 --- /dev/null +++ b/simple_mrp_order/models/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- + +from . import mrp_order +from . import mrp_bom +from . import mrp_bom_line +from . import mrp_order_line diff --git a/simple_mrp_order/models/mrp_bom.py b/simple_mrp_order/models/mrp_bom.py new file mode 100644 index 000000000..78586b55b --- /dev/null +++ b/simple_mrp_order/models/mrp_bom.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- + +from odoo import models, fields, api + + +class SimpleMRPBom(models.Model): + _name = 'simple.mrp.bom' + _description = "Bills of Materials" + _inherit = ["mail.thread", "mail.activity.mixin"] + _rec_name = 'product_id' + + product_id = fields.Many2one('product.product', string="Product", required=True) + product_qty = fields.Float(string="Quantity", default=1.0, tracking=True) + uom_id = fields.Many2one('uom.uom', 'Product Unit of Measure', required=True) + company_id = fields.Many2one('res.company', 'Company', default=lambda self: self.env.company, + index=True, required=True) + # mrp_id = fields.Many2one('mrp.order', string="Manufacturing Order") + line_ids = fields.One2many('simple.mrp.bom.line', 'bom_id', string="Components") + + @api.onchange('product_id') + def onchange_product_id(self): + """ Update the Uom for the product """ + self.uom_id = self.product_id.uom_id.id + + diff --git a/simple_mrp_order/models/mrp_bom_line.py b/simple_mrp_order/models/mrp_bom_line.py new file mode 100644 index 000000000..7c512e291 --- /dev/null +++ b/simple_mrp_order/models/mrp_bom_line.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- + +from odoo import models, fields, api + + +class SimpleMRPBomLine(models.Model): + _name = 'simple.mrp.bom.line' + _description = "Bills of Materials Components" + _inherit = ["mail.thread", "mail.activity.mixin"] + + product_id = fields.Many2one('product.product', string="Product", required=True) + product_qty = fields.Float(string="Quantity", default=1.0, tracking=True) + uom_id = fields.Many2one('uom.uom', 'Product Unit of Measure', required=True) + bom_id = fields.Many2one('simple.mrp.bom') + + + @api.onchange('product_id') + def onchange_product_id(self): + """ Update the Uom for the product """ + self.uom_id = self.product_id.uom_id.id \ No newline at end of file diff --git a/simple_mrp_order/models/mrp_order.py b/simple_mrp_order/models/mrp_order.py new file mode 100644 index 000000000..3803f9743 --- /dev/null +++ b/simple_mrp_order/models/mrp_order.py @@ -0,0 +1,206 @@ +# -*- coding: utf-8 -*- +from datetime import datetime + +from odoo import models, fields, api, _ +from odoo.exceptions import ValidationError + + +class MRPOrder(models.Model): + _name = 'mrp.order' + _description = "Manufacturing Order" + _inherit = ["mail.thread", "mail.activity.mixin"] + + @api.model + def _get_default_location_src_id(self): + location = False + company_id = self.env.context.get('default_company_id', + self.env.company.id) + if self.env.context.get('default_picking_type_id'): + location = self.env['stock.picking.type'].browse(self.env.context[ + 'default_picking_type_id']).default_location_src_id + if not location: + location = self.env['stock.warehouse'].search( + [('company_id', '=', company_id)], limit=1).lot_stock_id + return location and location.id or False + + location_src_id = fields.Many2one('stock.location', + default=_get_default_location_src_id,) + + product_id = fields.Many2one('product.product', string="Product", required=True, domain="""[ + ('type', 'in', ['product', 'consu']),'|',('company_id', '=', False), + ('company_id', '=', company_id)]""") + name = fields.Char( + 'Reference', copy=False, readonly=True, default=lambda x: _('New')) + product_qty = fields.Float(string="Quantity To Manufacture", default=1.0, tracking=True) + user_id = fields.Many2one('res.users', 'Responsible', default=lambda self: self.env.user, + states={'done': [('readonly', True)]}) + company_id = fields.Many2one('res.company', 'Company', default=lambda self: self.env.company, + index=True, required=True) + # mrp_bom_ids = fields.One2many('simple.mrp.bom', 'mrp_id') + uom_id = fields.Many2one('uom.uom', 'Product Unit of Measure', required=True) + uom_categ_id = fields.Many2one(related='product_id.uom_id.category_id') + date_planned = fields.Datetime('Scheduled Date', copy=False, default=fields.Datetime.now, + help="Date at which production start.", index=True, required=True) + + bom_id = fields.Many2one('simple.mrp.bom', string="Bills of Materials") + line_ids = fields.One2many('mrp.order.line', 'mrp_id', string="Components") + + stock_line_ids = fields.One2many('stock.move', 'mrp_id', 'Products') + stock_move_id = fields.Many2one('stock.move') + + state = fields.Selection([ + ('draft', 'Draft'), + ('confirmed', 'Confirmed'), + ('done', 'Done'), + ('cancel', 'Cancelled')], string='State', + copy=False, index=True, readonly=True, + store=True, tracking=True, default='draft') + + @api.onchange('product_id') + def onchange_product_id(self): + """ Update the Uom for the product """ + self.uom_id = self.product_id.uom_id.id + bom_id = self.env['simple.mrp.bom'].search([ + ('product_id', '=', self.product_id.id) + ], limit=1) + if self.product_id: + self.bom_id = bom_id or False + # return {'domain': {'bom_id': [('product_id', '=', self.product_id.id)],}} + + @api.onchange('uom_id') + def _onchange_uom_id(self): + """ Update the Uom for the product """ + multiple = 1 + if self.uom_id.uom_type == 'bigger': + multiple = self.uom_id.factor_inv + elif self.uom_id.uom_type == 'smaller': + multiple = 1/self.uom_id.factor + self.stock_line_ids = False + self.line_ids = False + vals = [] + for rec in self.bom_id.line_ids: + vals.append((0, 0, { + 'product_id': rec.product_id.id, + 'product_qty': rec.product_qty * self.product_qty * multiple, + 'uom_id': rec.uom_id.id, + })) + self.line_ids = vals + val = [] + destination = self.env.ref('simple_mrp_order.location_simple_mrp') + for line in self.bom_id.line_ids: + val.append((0, 0, { + 'product_id': line.product_id.id, + 'product_uom_qty': line.product_qty * self.product_qty * multiple, + 'name': line.product_id.name, + 'company_id': self.company_id.id, + 'location_id': self.location_src_id.id, + 'location_dest_id': destination.id, + 'product_uom': line.uom_id.id, + 'state': 'draft', + 'product_uom_category_id': line.uom_id.category_id, + })) + self.stock_line_ids = val + + @api.model + def create(self, vals): + if "name" not in vals or vals["name"] == _("New"): + vals["name"] = self.env["ir.sequence"].next_by_code( + "mrp.order" + ) or _("New") + return super().create(vals) + + @api.onchange('bom_id', 'product_qty') + def onchange_bom_id(self): + """ Update the Components for the MRP Order """ + self.line_ids = False + self.stock_line_ids = False + self.product_id = self.bom_id.product_id.id + vals = [] + for line in self.bom_id.line_ids: + vals.append((0, 0, { + 'product_id': line.product_id.id, + 'product_qty': line.product_qty * self.product_qty, + 'uom_id': line.uom_id.id, + })) + val = [] + destination = self.env.ref('simple_mrp_order.location_simple_mrp') + for line in self.bom_id.line_ids: + val.append((0, 0, { + 'product_id': line.product_id.id, + 'product_uom_qty': line.product_qty * self.product_qty, + 'name': line.product_id.name, + 'company_id': self.company_id.id, + 'location_id': self.location_src_id.id, + 'location_dest_id': destination.id, + 'product_uom': line.uom_id.id, + 'state': 'draft', + 'product_uom_category_id': line.uom_id.category_id, + })) + self.stock_line_ids = val + self.line_ids = vals + if self.bom_id: + self.uom_id.category_id=self.uom_categ_id.id + # return {'domain': {'uom_id': [('category_id', '=', self.uom_categ_id.id)],}} + + def action_confirm(self): + for line in self.stock_line_ids: + if line.product_qty > line.product_id.qty_available and line.product_id.type == 'product': + raise ValidationError('Only %s quantity available for %s' % + (str(line.product_id.qty_available), + str(line.product_id.name))) + self.write({ + 'state': 'confirmed' + }) + + def action_done(self): + self.write({ + 'state': 'done' + }) + for move in self.stock_line_ids: + move._action_confirm() + move._action_assign() + move.move_line_ids.write({'qty_done': move.product_uom_qty}) + move._action_done() + source = self.env.ref('simple_mrp_order.location_simple_mrp') + move_id = self.env['stock.move'].create({ + 'product_id': self.product_id.id, + 'product_uom_qty': self.product_qty, + 'name': self.product_id.name, + 'company_id': self.company_id.id, + 'location_id': source.id, + 'location_dest_id': self.location_src_id.id, + 'product_uom': self.uom_id.id, + 'state': 'draft', + 'product_uom_category_id': self.uom_id.category_id, + 'origin': self.name + }) + move_id._action_confirm() + move_id._action_assign() + move_id.move_line_ids.write({'qty_done': move_id.product_uom_qty}) + move_id._action_done() + self.stock_move_id = move_id + + def action_cancel(self): + self.write({ + 'state': 'cancel' + }) + + def action_view_move(self): + ids = [stock.id for stock in self.stock_line_ids] + ids.append(self.stock_move_id.id) + return { + 'type': 'ir.actions.act_window', + 'res_model': 'stock.move', + 'domain': [('id', 'in', ids)], + 'name': _("Product Stock Move"), + 'target': 'current', + 'view_mode': 'tree', + } + + +class MRPLine(models.Model): + _inherit = 'stock.move' + + mrp_id = fields.Many2one('mrp.order') + + diff --git a/simple_mrp_order/models/mrp_order_line.py b/simple_mrp_order/models/mrp_order_line.py new file mode 100644 index 000000000..c24026a73 --- /dev/null +++ b/simple_mrp_order/models/mrp_order_line.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- + +from odoo import models, fields, api + + +class MRPOrderLine(models.Model): + _name = 'mrp.order.line' + _description = "Bills of Materials Components" + _inherit = ["mail.thread", "mail.activity.mixin"] + + product_id = fields.Many2one('product.product', string="Product", required=True) + product_qty = fields.Float(string="Quantity", default=1.0, tracking=True) + uom_id = fields.Many2one('uom.uom', 'Product Unit of Measure', required=True) + mrp_id = fields.Many2one('mrp.order') + diff --git a/simple_mrp_order/security/ir.model.access.csv b/simple_mrp_order/security/ir.model.access.csv new file mode 100644 index 000000000..23837f635 --- /dev/null +++ b/simple_mrp_order/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_mrp_order,access.mrp.order,model_mrp_order,,1,1,1,1 +access_simple_mrp_bom,access.simple.mrp.bom,model_simple_mrp_bom,,1,1,1,1 +access_simple_mrp_bom_line,access.simple.mrp.bom.line,model_simple_mrp_bom_line,,1,1,1,1 +access_mrp_order_line,access.mrp.order.line,model_mrp_order_line,,1,1,1,1 diff --git a/simple_mrp_order/security/security.xml b/simple_mrp_order/security/security.xml new file mode 100644 index 000000000..17897d5f6 --- /dev/null +++ b/simple_mrp_order/security/security.xml @@ -0,0 +1,25 @@ + + + + + + Manufacturing + + + + + User + + + + + + Administrator + + + + + + + + \ No newline at end of file diff --git a/simple_mrp_order/static/description/assets/icons/check.png b/simple_mrp_order/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/check.png differ diff --git a/simple_mrp_order/static/description/assets/icons/chevron.png b/simple_mrp_order/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/chevron.png differ diff --git a/simple_mrp_order/static/description/assets/icons/cogs.png b/simple_mrp_order/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/cogs.png differ diff --git a/simple_mrp_order/static/description/assets/icons/consultation.png b/simple_mrp_order/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/consultation.png differ diff --git a/simple_mrp_order/static/description/assets/icons/ecom-black.png b/simple_mrp_order/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/ecom-black.png differ diff --git a/simple_mrp_order/static/description/assets/icons/education-black.png b/simple_mrp_order/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/education-black.png differ diff --git a/simple_mrp_order/static/description/assets/icons/hotel-black.png b/simple_mrp_order/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/hotel-black.png differ diff --git a/simple_mrp_order/static/description/assets/icons/license.png b/simple_mrp_order/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/license.png differ diff --git a/simple_mrp_order/static/description/assets/icons/lifebuoy.png b/simple_mrp_order/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/lifebuoy.png differ diff --git a/simple_mrp_order/static/description/assets/icons/manufacturing-black.png b/simple_mrp_order/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/manufacturing-black.png differ diff --git a/simple_mrp_order/static/description/assets/icons/pos-black.png b/simple_mrp_order/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/pos-black.png differ diff --git a/simple_mrp_order/static/description/assets/icons/puzzle.png b/simple_mrp_order/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/puzzle.png differ diff --git a/simple_mrp_order/static/description/assets/icons/restaurant-black.png b/simple_mrp_order/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/restaurant-black.png differ diff --git a/simple_mrp_order/static/description/assets/icons/service-black.png b/simple_mrp_order/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/service-black.png differ diff --git a/simple_mrp_order/static/description/assets/icons/trading-black.png b/simple_mrp_order/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/trading-black.png differ diff --git a/simple_mrp_order/static/description/assets/icons/training.png b/simple_mrp_order/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/training.png differ diff --git a/simple_mrp_order/static/description/assets/icons/update.png b/simple_mrp_order/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/update.png differ diff --git a/simple_mrp_order/static/description/assets/icons/user.png b/simple_mrp_order/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/user.png differ diff --git a/simple_mrp_order/static/description/assets/icons/wrench.png b/simple_mrp_order/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/simple_mrp_order/static/description/assets/icons/wrench.png differ diff --git a/simple_mrp_order/static/description/assets/misc/categories.png b/simple_mrp_order/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/categories.png differ diff --git a/simple_mrp_order/static/description/assets/misc/check-box.png b/simple_mrp_order/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/check-box.png differ diff --git a/simple_mrp_order/static/description/assets/misc/compass.png b/simple_mrp_order/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/compass.png differ diff --git a/simple_mrp_order/static/description/assets/misc/corporate.png b/simple_mrp_order/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/corporate.png differ diff --git a/simple_mrp_order/static/description/assets/misc/customer-support.png b/simple_mrp_order/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/customer-support.png differ diff --git a/simple_mrp_order/static/description/assets/misc/cybrosys-logo.png b/simple_mrp_order/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/cybrosys-logo.png differ diff --git a/simple_mrp_order/static/description/assets/misc/features.png b/simple_mrp_order/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/features.png differ diff --git a/simple_mrp_order/static/description/assets/misc/logo.png b/simple_mrp_order/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/logo.png differ diff --git a/simple_mrp_order/static/description/assets/misc/pictures.png b/simple_mrp_order/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/pictures.png differ diff --git a/simple_mrp_order/static/description/assets/misc/pie-chart.png b/simple_mrp_order/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/pie-chart.png differ diff --git a/simple_mrp_order/static/description/assets/misc/right-arrow.png b/simple_mrp_order/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/right-arrow.png differ diff --git a/simple_mrp_order/static/description/assets/misc/star.png b/simple_mrp_order/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/star.png differ diff --git a/simple_mrp_order/static/description/assets/misc/support.png b/simple_mrp_order/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/support.png differ diff --git a/simple_mrp_order/static/description/assets/misc/whatsapp.png b/simple_mrp_order/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/simple_mrp_order/static/description/assets/misc/whatsapp.png differ diff --git a/simple_mrp_order/static/description/assets/modules/1.png b/simple_mrp_order/static/description/assets/modules/1.png new file mode 100644 index 000000000..5238bdeab Binary files /dev/null and b/simple_mrp_order/static/description/assets/modules/1.png differ diff --git a/simple_mrp_order/static/description/assets/modules/2.png b/simple_mrp_order/static/description/assets/modules/2.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/simple_mrp_order/static/description/assets/modules/2.png differ diff --git a/simple_mrp_order/static/description/assets/modules/3.png b/simple_mrp_order/static/description/assets/modules/3.png new file mode 100644 index 000000000..3c3ff1afb Binary files /dev/null and b/simple_mrp_order/static/description/assets/modules/3.png differ diff --git a/simple_mrp_order/static/description/assets/modules/4.png b/simple_mrp_order/static/description/assets/modules/4.png new file mode 100644 index 000000000..3fae4631e Binary files /dev/null and b/simple_mrp_order/static/description/assets/modules/4.png differ diff --git a/simple_mrp_order/static/description/assets/modules/5.gif b/simple_mrp_order/static/description/assets/modules/5.gif new file mode 100644 index 000000000..2a5f8e659 Binary files /dev/null and b/simple_mrp_order/static/description/assets/modules/5.gif differ diff --git a/simple_mrp_order/static/description/assets/modules/6.png b/simple_mrp_order/static/description/assets/modules/6.png new file mode 100644 index 000000000..7f2815273 Binary files /dev/null and b/simple_mrp_order/static/description/assets/modules/6.png differ diff --git a/simple_mrp_order/static/description/assets/screenshots/hero.gif b/simple_mrp_order/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..d48766b8c Binary files /dev/null and b/simple_mrp_order/static/description/assets/screenshots/hero.gif differ diff --git a/simple_mrp_order/static/description/assets/screenshots/screenshot-1.png b/simple_mrp_order/static/description/assets/screenshots/screenshot-1.png new file mode 100644 index 000000000..1be7be4e0 Binary files /dev/null and b/simple_mrp_order/static/description/assets/screenshots/screenshot-1.png differ diff --git a/simple_mrp_order/static/description/assets/screenshots/screenshot-2.png b/simple_mrp_order/static/description/assets/screenshots/screenshot-2.png new file mode 100644 index 000000000..14cea7820 Binary files /dev/null and b/simple_mrp_order/static/description/assets/screenshots/screenshot-2.png differ diff --git a/simple_mrp_order/static/description/assets/screenshots/screenshot-3.png b/simple_mrp_order/static/description/assets/screenshots/screenshot-3.png new file mode 100644 index 000000000..3258228e7 Binary files /dev/null and b/simple_mrp_order/static/description/assets/screenshots/screenshot-3.png differ diff --git a/simple_mrp_order/static/description/banner.png b/simple_mrp_order/static/description/banner.png new file mode 100644 index 000000000..c000dae7a Binary files /dev/null and b/simple_mrp_order/static/description/banner.png differ diff --git a/simple_mrp_order/static/description/icon.png b/simple_mrp_order/static/description/icon.png new file mode 100644 index 000000000..fa887e084 Binary files /dev/null and b/simple_mrp_order/static/description/icon.png differ diff --git a/simple_mrp_order/static/description/index.html b/simple_mrp_order/static/description/index.html new file mode 100644 index 000000000..0ca9ef9b3 --- /dev/null +++ b/simple_mrp_order/static/description/index.html @@ -0,0 +1,533 @@ +
+ +
+ +
+
+ Community +
+
+
+ + + +

Simple Manufacturing Order

+

Create Manufacturing orders easily in few steps.

+ + + +
+ + +
+
+ +
+

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ The Simple Manufacturing Order module initiates for an easy creation of manufacturing orders. + Using application, the user can simply create a manufacturing order and bill of material. +
+
+ + + +
+
+ +
+

Features +

+
+
+
+
+ + Community Support +
+
+ + Create Bill of material. +
+
+ + Create manufacturing order. +
+
+ + Warning on low stock. +
+
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+ +
+

Bill of Material Form

+

Create a Bill of Material for a product with the components.

+ +
+ +
+

Manufacturing Order Form

+

Create a manufacturing order for the product with bill of material.

+ +
+ +
+

Warning Message View

+

Warning message for low stock product and will show details like available stock.

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

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

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/simple_mrp_order/views/mrp_bom_view.xml b/simple_mrp_order/views/mrp_bom_view.xml new file mode 100644 index 000000000..91f710a05 --- /dev/null +++ b/simple_mrp_order/views/mrp_bom_view.xml @@ -0,0 +1,66 @@ + + + + + + Bills of Materials + simple.mrp.bom + +
+ + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ + +
+
+
+ + + Bills of Materials + ir.actions.act_window + simple.mrp.bom + tree,form + +

+ Create a new Bills of Materials +

+
+
+ + + + +
+
\ No newline at end of file diff --git a/simple_mrp_order/views/mrp_order_view.xml b/simple_mrp_order/views/mrp_order_view.xml new file mode 100644 index 000000000..88e626412 --- /dev/null +++ b/simple_mrp_order/views/mrp_order_view.xml @@ -0,0 +1,113 @@ + + + + + + Manufacturing + mrp.order + +
+
+
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+
+
+
+ + + Manufacturing + mrp.order + + + + + + + + + + + + Manufacturing Orders + ir.actions.act_window + mrp.order + tree,form + +

+ Create a new Manufacturing Order +

+
+
+ + + + + +
+
\ No newline at end of file diff --git a/simple_mrp_order/views/product_views.xml b/simple_mrp_order/views/product_views.xml new file mode 100644 index 000000000..d571625c0 --- /dev/null +++ b/simple_mrp_order/views/product_views.xml @@ -0,0 +1,49 @@ + + + + + + Products + product.template + kanban,tree,form + {"search_default_consumable": 1, 'default_type': 'product'} + +

+ No product found. Let's create one! +

+

+ Define the components and finished products you wish to use in + bill of materials and manufacturing orders. +

+
+
+ + + Product Variants + product.product + tree,form,kanban + {"search_default_consumable": 1, 'default_type': 'product'} + +

+ No product found. Let's create one! +

+

+ Define the components and finished products you wish to use in + bill of materials and manufacturing orders. +

+
+
+ + + + + + +
+
\ No newline at end of file