diff --git a/bulk_create_mo_so_po/README.rst b/bulk_create_mo_so_po/README.rst new file mode 100644 index 000000000..5bedcdf79 --- /dev/null +++ b/bulk_create_mo_so_po/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-blue.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Bulk Order Management +===================== +Create Manufacturing Orders, Purchase Orders and Sales Orders in Bulk. + +Configuration +============= +* No additional configuration is needed. + +Company +_______ +* `Cybrosys Techno Solutions `__ + +License +------- +Lesser General Public License, Version 3 (LGPL v3) +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +_______ +* Developers: (V17) Vishnu P, + (V18) Aysha Shalin + Contact: odoo@cybrosys.com + +Contacts +________ +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +___________ +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/bulk_create_mo_so_po/__init__.py b/bulk_create_mo_so_po/__init__.py new file mode 100755 index 000000000..70e9a10db --- /dev/null +++ b/bulk_create_mo_so_po/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# 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/bulk_create_mo_so_po/__manifest__.py b/bulk_create_mo_so_po/__manifest__.py new file mode 100755 index 000000000..8935b77c3 --- /dev/null +++ b/bulk_create_mo_so_po/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# 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': 'Bulk Order Management', + 'version': '18.0.1.0.0', + 'category': 'Sales,Purchases,Manufacturing', + 'summary': """Create Manufacturing Orders, Purchase Orders and Sales Orders + in Bulk.""", + 'description': """This module simplifies Odoo by allowing users to create + Sale, Purchase, and Manufacturing Orders all at once from a single app, + saving time and reducing complexity.""", + 'author': "Cybrosys Techno Solutions", + 'company': "Cybrosys Techno Solutions", + 'maintainer': "Cybrosys Techno Solutions", + 'website': "https://cybrosys.com", + 'depends': ['sale_management', 'purchase', 'mrp'], + 'data': [ + 'security/ir.model.access.csv', + 'data/ir_sequence_data.xml', + 'views/create_bulk_order_views.xml' + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': True, +} diff --git a/bulk_create_mo_so_po/data/ir_sequence_data.xml b/bulk_create_mo_so_po/data/ir_sequence_data.xml new file mode 100755 index 000000000..8b1a205e7 --- /dev/null +++ b/bulk_create_mo_so_po/data/ir_sequence_data.xml @@ -0,0 +1,29 @@ + + + + + + Create Bulk Sale Order + create.bulk.so.order + BLK/SO/%(year)s/%(month)s/ + 5 + 1 + + + + Create Bulk Purchase Order + create.bulk.po.order + BLK/PO/%(year)s/%(month)s/ + 5 + 1 + + + + Create Bulk Manufacturing Order + create.bulk.mo.order + BLK/MO/%(year)s/%(month)s/ + 5 + 1 + + + diff --git a/bulk_create_mo_so_po/doc/RELEASE_NOTES.md b/bulk_create_mo_so_po/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..0991aba1b --- /dev/null +++ b/bulk_create_mo_so_po/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 09.04.2025 +#### Version 18.0.1.0.0 +##### ADD +- Initial Commit for Bulk Order Management diff --git a/bulk_create_mo_so_po/models/__init__.py b/bulk_create_mo_so_po/models/__init__.py new file mode 100755 index 000000000..50792d18c --- /dev/null +++ b/bulk_create_mo_so_po/models/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# 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 create_bulk_order +from . import manufacturing_order +from . import purchase_order +from . import sale_order diff --git a/bulk_create_mo_so_po/models/create_bulk_order.py b/bulk_create_mo_so_po/models/create_bulk_order.py new file mode 100755 index 000000000..1759d158f --- /dev/null +++ b/bulk_create_mo_so_po/models/create_bulk_order.py @@ -0,0 +1,238 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# 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 api, fields, models, _ +from odoo.exceptions import UserError, ValidationError + + +class CreateBulkOrder(models.Model): + """Creates the model create.bulk.order""" + _name = 'create.bulk.order' + _description = 'Create Bulk Order' + _inherit = ['mail.thread', 'mail.activity.mixin'] + + name = fields.Char(string='Name', readonly=True, default='New', copy=False, + tracking=True, help="Name of the bulk order") + partner_id = fields.Many2one('res.partner', + string='Customer', required=True, + help="Customer of the bulk order") + date = fields.Datetime(string='Date', default=fields.Datetime.now, + tracking=True, help="Date of the bulk order") + bulk_order_line_ids = fields.One2many('bulk.order.line', + 'order_id', + string='Bulk Order Lines', + required=True, + help="Bulk orders in the bulk order") + order_type = fields.Selection( + [('sale', 'Sale Order'), ('purchase', 'Purchase Order'), + ('manufacturing', 'Manufacturing Order')], string='Order Type', + default='sale', help="Order Type of the order") + state = fields.Selection([('draft', 'Draft'), ('confirm', 'Confirm'), + ('order_confirm', 'Order Created'), + ('done', 'Done'), ('cancel', 'Cancel')], + string='State', default='draft', tracking=True, + help="State of the Bulk Order") + sale_order_ids = fields.One2many('sale.order', + 'bulk_order_id', + string='Sale Orders', + help="Sale Orders linked to this bulk order") + purchase_order_ids = fields.One2many('purchase.order', + 'bulk_order_id', + string='Purchase Orders', + help="Purchase Orders linked to this " + "bulk order") + manufacturing_order_ids = fields.One2many('mrp.production', + 'bulk_order_id', + string='Manufacturing Orders', + help="Manufacturing Orders linked" + " to this bulk order") + sale_order_count = fields.Integer(string='Sale Order Count', + compute='_compute_sale_order_count', + help="Count of the sale order linked to " + "this bulk order") + purchase_order_count = fields.Integer(string='Purchase Order Count', + compute='_compute_purchase_order_count', + help="Count of the purchase order " + "linked to this bulk order") + manufacturing_order_count = fields.Integer( + string='Manufacturing Order Count', + compute='_compute_manufacturing_order_count', + help="Count of the manufacturing order linked to this bulk order") + + def action_confirm(self): + """Method action_confirm to confirm the bulk order""" + for rec in self: + if not rec.name or rec.name == 'New': + if rec.order_type == 'sale': + rec.name = self.env['ir.sequence'].next_by_code( + 'create.bulk.so.order') + elif rec.order_type == 'purchase': + rec.name = self.env['ir.sequence'].next_by_code( + 'create.bulk.po.order') + elif rec.order_type == 'manufacturing': + rec.name = self.env['ir.sequence'].next_by_code( + 'create.bulk.mo.order') + if not rec.bulk_order_line_ids: + raise UserError(_('Please add at least one product.')) + rec.state = 'confirm' + + def action_create_sale_order(self): + """Method action_create_sale_order to create sale order from the bulk + order""" + for rec in self: + if not rec.partner_id: + raise UserError(_('Please select a customer.')) + order_line = [] + for line in rec.bulk_order_line_ids: + order_line.append((0, 0, { + 'name': line.product_id.name, + 'product_id': line.product_id.id, + 'product_uom_qty': line.qty, + 'price_unit': line.list_price, + })) + self.env['sale.order'].create({ + 'partner_id': rec.partner_id.id, + 'order_line': order_line, + 'bulk_order_id': rec.id, + }) + rec.state = 'done' + + def action_create_purchase_order(self): + """Method action_create_purchase_order to create the purchase order + from the bulk order""" + for rec in self: + if not rec.partner_id: + raise UserError(_('Please select a vendor.')) + order_line = [] + for line in rec.bulk_order_line_ids: + order_line.append((0, 0, { + 'product_id': line.product_id.id, + 'product_qty': line.qty, + 'name': line.product_id.name, + 'price_unit': line.product_cost, + })) + self.env['purchase.order'].create({ + 'partner_id': rec.partner_id.id, + 'order_line': order_line, + 'bulk_order_id': rec.id, + }) + rec.state = 'done' + + def action_create_manufacturing_order(self): + """Method action_create_manufacturing_order to create the + manufacturing order from the bulk order""" + for rec in self: + for line in rec.bulk_order_line_ids: + if not line.bom_id: + raise ValidationError( + _(f"There are no BOM for the product " + f"variant {line.product_id.name}, please create one " + f"BOM to create Manufacturing Order.")) + self.env['mrp.production'].create({ + 'product_id': line.product_id.id, + 'product_qty': line.qty, + 'bom_id': line.bom_id.id, + 'product_uom_id': line.product_id.uom_id.id, + 'bulk_order_id': rec.id, + }) + rec.state = 'done' + + def action_reset_to_draft(self): + """Method action_reset_to_draft to reset the bulk order into draft + state""" + for rec in self: + rec.state = 'draft' + + def _compute_sale_order_count(self): + """Method _compute_sale_order_count to compute the sale order count""" + for rec in self: + rec.sale_order_count = len(rec.sale_order_ids) + + def _compute_purchase_order_count(self): + """Method _compute_purchase_order_count to compute the purchase order + count""" + for rec in self: + rec.purchase_order_count = len(rec.purchase_order_ids) + + def _compute_manufacturing_order_count(self): + """Method _compute_manufacturing_order_count to compute the + manufacturing order counts""" + for rec in self: + rec.manufacturing_order_count = len(rec.manufacturing_order_ids) + + def get_sale_order(self): + """Method get_sale_order to get the sale orders linked to the bulk + order""" + for rec in self: + action = self.env.ref('sale.action_orders').read()[0] + action['domain'] = [('bulk_order_id', '=', rec.id)] + return action + + def get_purchase_order(self): + """Method get_purchase_order to get the purchase orders linked to the + bulk order""" + for rec in self: + action = self.env.ref('purchase.purchase_rfq').read()[0] + action['domain'] = [('bulk_order_id', '=', rec.id)] + return action + + def get_manufacturing_order(self): + """Method get_manufacturing_order to get the manufacturing orders + linked to the bulk order""" + for rec in self: + action = self.env.ref('mrp.mrp_production_action').read()[0] + action['domain'] = [('bulk_order_id', '=', rec.id)] + return action + + +class BulkOrderLine(models.Model): + """Creates the model bulk.order.line""" + _name = 'bulk.order.line' + + name = fields.Char(string='Name', help="Name of the order line") + product_id = fields.Many2one('product.product', string='Product', + required=True, + help="Product in the order line") + qty = fields.Float(string='Quantity', required=True, + help="Quantity of the product", default=1) + order_id = fields.Many2one('create.bulk.order', string='Order', + help="Bulk order") + list_price = fields.Float(string='Price', help="Price of the product") + product_cost = fields.Float(string='Cost', help="Cost of the product") + bom_id = fields.Many2one('mrp.bom', string="Bill of Material", + help="Bill of Material for this product", + domain="[('product_id', '=', product_id)]") + + @api.onchange('product_id') + def _onchange_product_id(self): + if self.product_id: + self.list_price = self.product_id.list_price + self.product_cost = self.product_id.standard_price + else: + self.list_price = 0 + self.product_cost = 0 + + @api.onchange('bom_id') + def _onchange_bom_id(self): + if self.bom_id: + self.product_id = self.bom_id.product_tmpl_id.product_variant_id.id + else: + self.product_id = False diff --git a/bulk_create_mo_so_po/models/manufacturing_order.py b/bulk_create_mo_so_po/models/manufacturing_order.py new file mode 100644 index 000000000..94840dcf6 --- /dev/null +++ b/bulk_create_mo_so_po/models/manufacturing_order.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# 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 ManufacturingOrder(models.Model): + """Inherits the model mrp.production to add the field bulk_order_id""" + _inherit = 'mrp.production' + + bulk_order_id = fields.Many2one('create.bulk.order', + string='Bulk Order', + help="Bulk order linked to this MRP Order") diff --git a/bulk_create_mo_so_po/models/purchase_order.py b/bulk_create_mo_so_po/models/purchase_order.py new file mode 100644 index 000000000..e83abd772 --- /dev/null +++ b/bulk_create_mo_so_po/models/purchase_order.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# 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 PurchaseOrder(models.Model): + """Inherits the model purchase.order to add the field bulk_order_id""" + _inherit = 'purchase.order' + + bulk_order_id = fields.Many2one('create.bulk.order', + string='Bulk Order', + help="Bulk order linked to this purchase " + "order") diff --git a/bulk_create_mo_so_po/models/sale_order.py b/bulk_create_mo_so_po/models/sale_order.py new file mode 100644 index 000000000..b2d241f19 --- /dev/null +++ b/bulk_create_mo_so_po/models/sale_order.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# 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 SaleOrder(models.Model): + """Inherits the model sale.order to add the field bulk_order_id""" + _inherit = 'sale.order' + + bulk_order_id = fields.Many2one('create.bulk.order', + string='Bulk Order', + help="Bulk order linked to this sale order") diff --git a/bulk_create_mo_so_po/security/ir.model.access.csv b/bulk_create_mo_so_po/security/ir.model.access.csv new file mode 100755 index 000000000..f4342d578 --- /dev/null +++ b/bulk_create_mo_so_po/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink +access_create_bulk_order_user,access.create.bulk.order.user,bulk_create_mo_so_po.model_create_bulk_order,base.group_user,1,1,1,1 +access_bulk_order_line_user,access.bulk.order.line.user,bulk_create_mo_so_po.model_bulk_order_line,base.group_user,1,1,1,1 diff --git a/bulk_create_mo_so_po/static/description/assets/icons/arrows-repeat.svg b/bulk_create_mo_so_po/static/description/assets/icons/arrows-repeat.svg new file mode 100644 index 000000000..1d7efabc5 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/banner-1.png b/bulk_create_mo_so_po/static/description/assets/icons/banner-1.png new file mode 100644 index 000000000..c180db172 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/banner-1.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/banner-2.svg b/bulk_create_mo_so_po/static/description/assets/icons/banner-2.svg new file mode 100644 index 000000000..e606d97d9 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/banner-bg.png b/bulk_create_mo_so_po/static/description/assets/icons/banner-bg.png new file mode 100644 index 000000000..a8238d3c0 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/banner-bg.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/banner-bg.svg b/bulk_create_mo_so_po/static/description/assets/icons/banner-bg.svg new file mode 100644 index 000000000..b1378103e --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/banner-call.svg b/bulk_create_mo_so_po/static/description/assets/icons/banner-call.svg new file mode 100644 index 000000000..96c687e81 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/banner-mail.svg b/bulk_create_mo_so_po/static/description/assets/icons/banner-mail.svg new file mode 100644 index 000000000..cbf0d158d --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/banner-pattern.svg b/bulk_create_mo_so_po/static/description/assets/icons/banner-pattern.svg new file mode 100644 index 000000000..9c1c7e101 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/banner-promo.svg b/bulk_create_mo_so_po/static/description/assets/icons/banner-promo.svg new file mode 100644 index 000000000..d52791b11 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/brand-pair.svg b/bulk_create_mo_so_po/static/description/assets/icons/brand-pair.svg new file mode 100644 index 000000000..d8db7fc1e --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/check.png b/bulk_create_mo_so_po/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/check.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/chevron.png b/bulk_create_mo_so_po/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/chevron.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/close-icon.svg b/bulk_create_mo_so_po/static/description/assets/icons/close-icon.svg new file mode 100644 index 000000000..df8cce37a --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/cogs.png b/bulk_create_mo_so_po/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/cogs.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/collabarate-icon.svg b/bulk_create_mo_so_po/static/description/assets/icons/collabarate-icon.svg new file mode 100644 index 000000000..dd4e10518 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/consultation.png b/bulk_create_mo_so_po/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/consultation.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/cybro-logo.png b/bulk_create_mo_so_po/static/description/assets/icons/cybro-logo.png new file mode 100644 index 000000000..ff4b78220 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/cybro-logo.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/down.svg b/bulk_create_mo_so_po/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/bulk_create_mo_so_po/static/description/assets/icons/ecom-black.png b/bulk_create_mo_so_po/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/ecom-black.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/education-black.png b/bulk_create_mo_so_po/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/education-black.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/faq.png b/bulk_create_mo_so_po/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/faq.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/feature-icon.svg b/bulk_create_mo_so_po/static/description/assets/icons/feature-icon.svg new file mode 100644 index 000000000..fa0ea6850 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/feature.png b/bulk_create_mo_so_po/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/feature.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/gear.svg b/bulk_create_mo_so_po/static/description/assets/icons/gear.svg new file mode 100644 index 000000000..0cc66b6ea --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/hero.gif b/bulk_create_mo_so_po/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..380654dfe Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/hero.gif differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/hire-odoo.svg b/bulk_create_mo_so_po/static/description/assets/icons/hire-odoo.svg new file mode 100644 index 000000000..e1ac089b0 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/hotel-black.png b/bulk_create_mo_so_po/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/hotel-black.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/license.png b/bulk_create_mo_so_po/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/license.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/life-ring-icon.svg b/bulk_create_mo_so_po/static/description/assets/icons/life-ring-icon.svg new file mode 100644 index 000000000..3ae6e1d89 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/lifebuoy.png b/bulk_create_mo_so_po/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/lifebuoy.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/mail.svg b/bulk_create_mo_so_po/static/description/assets/icons/mail.svg new file mode 100644 index 000000000..1eedde695 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/manufacturing-black.png b/bulk_create_mo_so_po/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/manufacturing-black.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/notes.png b/bulk_create_mo_so_po/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/notes.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/notification icon.svg b/bulk_create_mo_so_po/static/description/assets/icons/notification icon.svg new file mode 100644 index 000000000..053189973 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/odoo-consultancy.svg b/bulk_create_mo_so_po/static/description/assets/icons/odoo-consultancy.svg new file mode 100644 index 000000000..e05f65bde --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/odoo-licencing.svg b/bulk_create_mo_so_po/static/description/assets/icons/odoo-licencing.svg new file mode 100644 index 000000000..2606c88b0 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/odoo-logo.png b/bulk_create_mo_so_po/static/description/assets/icons/odoo-logo.png new file mode 100644 index 000000000..0e4d0eb5a Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/odoo-logo.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/patter.svg b/bulk_create_mo_so_po/static/description/assets/icons/patter.svg new file mode 100644 index 000000000..25c9c0a8f --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/pattern1.png b/bulk_create_mo_so_po/static/description/assets/icons/pattern1.png new file mode 100644 index 000000000..09ab0fb2d Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/pattern1.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/pos-black.png b/bulk_create_mo_so_po/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/pos-black.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/puzzle-piece-icon.svg b/bulk_create_mo_so_po/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100644 index 000000000..3e9ad9373 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/puzzle.png b/bulk_create_mo_so_po/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/puzzle.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/replace-icon.svg b/bulk_create_mo_so_po/static/description/assets/icons/replace-icon.svg new file mode 100644 index 000000000..d0e3a7af1 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/restaurant-black.png b/bulk_create_mo_so_po/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/restaurant-black.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/screenshot-main.png b/bulk_create_mo_so_po/static/description/assets/icons/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/screenshot-main.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/screenshot.png b/bulk_create_mo_so_po/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/screenshot.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/service-black.png b/bulk_create_mo_so_po/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/service-black.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/skype-fill.svg b/bulk_create_mo_so_po/static/description/assets/icons/skype-fill.svg new file mode 100644 index 000000000..c17423639 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/skype.png b/bulk_create_mo_so_po/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/skype.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/skype.svg b/bulk_create_mo_so_po/static/description/assets/icons/skype.svg new file mode 100644 index 000000000..df3dad39b --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/star-1.svg b/bulk_create_mo_so_po/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/star-2.svg b/bulk_create_mo_so_po/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/support.png b/bulk_create_mo_so_po/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/support.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/test-1 - Copy.png b/bulk_create_mo_so_po/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/test-1 - Copy.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/test-1.png b/bulk_create_mo_so_po/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/test-1.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/test-2.png b/bulk_create_mo_so_po/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/test-2.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/trading-black.png b/bulk_create_mo_so_po/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/trading-black.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/training.png b/bulk_create_mo_so_po/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/training.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/translate.svg b/bulk_create_mo_so_po/static/description/assets/icons/translate.svg new file mode 100644 index 000000000..af9c8a1aa --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/update.png b/bulk_create_mo_so_po/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/update.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/user.png b/bulk_create_mo_so_po/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/user.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/video.png b/bulk_create_mo_so_po/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/video.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/whatsapp.png b/bulk_create_mo_so_po/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/whatsapp.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/icons/wrench-icon.svg b/bulk_create_mo_so_po/static/description/assets/icons/wrench-icon.svg new file mode 100644 index 000000000..174b5a465 --- /dev/null +++ b/bulk_create_mo_so_po/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bulk_create_mo_so_po/static/description/assets/icons/wrench.png b/bulk_create_mo_so_po/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/icons/wrench.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/modules/1.png b/bulk_create_mo_so_po/static/description/assets/modules/1.png new file mode 100644 index 000000000..906d51bf5 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/modules/1.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/modules/2.jpg b/bulk_create_mo_so_po/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..73613d2fb Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/modules/2.jpg differ diff --git a/bulk_create_mo_so_po/static/description/assets/modules/3.png b/bulk_create_mo_so_po/static/description/assets/modules/3.png new file mode 100644 index 000000000..5a36b384e Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/modules/3.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/modules/4.png b/bulk_create_mo_so_po/static/description/assets/modules/4.png new file mode 100644 index 000000000..3a3ee8e83 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/modules/4.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/modules/5.png b/bulk_create_mo_so_po/static/description/assets/modules/5.png new file mode 100644 index 000000000..5ecbe9819 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/modules/5.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/modules/6.png b/bulk_create_mo_so_po/static/description/assets/modules/6.png new file mode 100644 index 000000000..29c325870 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/modules/6.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/screenshots/1.png b/bulk_create_mo_so_po/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..122f89804 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/screenshots/1.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/screenshots/2.png b/bulk_create_mo_so_po/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..f9935403f Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/screenshots/2.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/screenshots/3.png b/bulk_create_mo_so_po/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..93a8b6b37 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/screenshots/3.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/screenshots/6.png b/bulk_create_mo_so_po/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..dc96826fe Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/screenshots/6.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/screenshots/9.png b/bulk_create_mo_so_po/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..b38ff8643 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/screenshots/9.png differ diff --git a/bulk_create_mo_so_po/static/description/assets/screenshots/hero.gif b/bulk_create_mo_so_po/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..4b80f2431 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/screenshots/hero.gif differ diff --git a/bulk_create_mo_so_po/static/description/assets/screenshots/img.png b/bulk_create_mo_so_po/static/description/assets/screenshots/img.png new file mode 100644 index 000000000..21d5cb23e Binary files /dev/null and b/bulk_create_mo_so_po/static/description/assets/screenshots/img.png differ diff --git a/bulk_create_mo_so_po/static/description/banner.jpg b/bulk_create_mo_so_po/static/description/banner.jpg new file mode 100644 index 000000000..2817ee756 Binary files /dev/null and b/bulk_create_mo_so_po/static/description/banner.jpg differ diff --git a/bulk_create_mo_so_po/static/description/icon.png b/bulk_create_mo_so_po/static/description/icon.png new file mode 100644 index 000000000..e9700496d Binary files /dev/null and b/bulk_create_mo_so_po/static/description/icon.png differ diff --git a/bulk_create_mo_so_po/static/description/index.html b/bulk_create_mo_so_po/static/description/index.html new file mode 100644 index 000000000..02e938c3e --- /dev/null +++ b/bulk_create_mo_so_po/static/description/index.html @@ -0,0 +1,1020 @@ + + + + + + Bulk Order Management + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+
+

+ Create Manufacturing Orders, Purchase Orders, Sales Orders in Bulk +

+

Bulk Order Management +

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

Key + Heighlights

+
+
+
+
+ +
+
+ Create Manufacturing Orders, Purchase Orders and Sales Orders in Bulk. +
+
+
+
+
+
+ +
+
+ Available in Community and Enterprise. +
+
+
+
+
+ +
+
+
+ Bulk Order Management +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ Application for + + Bulk Order Management +

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

+ Bulk Order Management + + List View +

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

+ Create Bulk + Orders +

+
+
+

+ To create a new Sale Order from the Bulk Order, + select the Order Type as Sale Order, select a customer + and products from Order Lines, and then confirm the Bulk Order. +

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

+ Create Sale + Order +

+
+
+

+ Click on the button CREATE SALE ORDER + to create a Sale Order from the bulk order. +

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

+ Create Purchase + Order +

+
+
+

+ To create a new Purchase Order from the Bulk Order, + select the Order Type as Purchase Order, select a + customer and select products and + then confirm the Bulk Order. + Then click on the button CREATE PURCHASE ORDER. +

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

+ Create Manufacturing + Order +

+
+
+

+ To create a new Manufacturing Order from the Bulk Order, + select the Order Type as Manufacturing Order, select a + customer and select products and + then confirm the Bulk Order. + Then click on the button CREATE MANUFACTURING ORDER. +

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

+ Create Manufacturing Orders, Purchase Orders and Sales Orders in Bulk.

+
+
+
+
+
+
+
+ +
+

+ Available in Odoo 18.0 Community and Enterprise.

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

+ Yes, using this module you + can create Sale and Purchase + Orders in bulk. +

+
+
+ +
+ +
+

+ Create a new bulk order, + select the partner, choose + the type of Order(Sale, Purchase or + Manufacturing), add the products, + and then confirm. +

+
+
+ +
+ +
+

+ Yes, you can create + Manufacturing Orders by + selecting the Order Type + as 'Manufacturing Order'. +

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

+ Latest Release 18.0.1.0.0 +

+ + 9th April, 2025 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • +
+
+
+
+
+
+
+
+
+
+ + + +
+

+ Related Products +

+ +
+ + +
+

+ Our Services

+ +
+ +
+
+ .... +
+
+ +
+ + +
+
+ + + + + + diff --git a/bulk_create_mo_so_po/views/create_bulk_order_views.xml b/bulk_create_mo_so_po/views/create_bulk_order_views.xml new file mode 100755 index 000000000..b5d35dde4 --- /dev/null +++ b/bulk_create_mo_so_po/views/create_bulk_order_views.xml @@ -0,0 +1,117 @@ + + + + + create.bulk.order.view.form + create.bulk.order + +
+
+
+ +
+ + + +
+
+

+ +

+
+ + + + + + + + + + + + + + + + + + +
+ + +
+
+ + + create.bulk.order.view.list + create.bulk.order + + + + + + + + + + + + + Create Bulk Order + create.bulk.order + list,form + + + + + + + + +