diff --git a/product_brand_inventory/README.md b/product_brand_inventory/README.md new file mode 100644 index 000000000..c6fff90a7 --- /dev/null +++ b/product_brand_inventory/README.md @@ -0,0 +1,31 @@ +Product Brand in Inventory +========================== + +Installation +============ +- www.odoo.com/documentation/15.0/setup/install.html +- Install our custom addon + +License +======= +GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPLv3) +(http://www.gnu.org/licenses/agpl.html) + +Bug Tracker +=========== +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Credits +======= +* Cybrosys Techno Solutions + + +Developer: Sonu Soman - sonu@cybrosys.info + +Maintainer +---------- + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com. + diff --git a/product_brand_inventory/__init__.py b/product_brand_inventory/__init__.py new file mode 100644 index 000000000..0959729ea --- /dev/null +++ b/product_brand_inventory/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################### + +from . import models diff --git a/product_brand_inventory/__manifest__.py b/product_brand_inventory/__manifest__.py new file mode 100644 index 000000000..7357f55fc --- /dev/null +++ b/product_brand_inventory/__manifest__.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################### +{ + 'name': 'Product Brand in Inventory', + 'version': '15.0.1.0.0', + 'category': 'Warehouse', + 'summary': 'Product Brand in Inventory', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'images': ['static/description/banner.png'], + 'website': 'https://www.cybrosys.com', + 'depends': ['stock'], + 'data': [ + 'views/brand_views.xml', + 'security/ir.model.access.csv', + ], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, + +} diff --git a/product_brand_inventory/doc/RELEASE_NOTES.md b/product_brand_inventory/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..10c2e5d19 --- /dev/null +++ b/product_brand_inventory/doc/RELEASE_NOTES.md @@ -0,0 +1,5 @@ +## Module + +#### 20.09.2021 +#### Version 15.0.1.0.0 +#### ADD diff --git a/product_brand_inventory/models/__init__.py b/product_brand_inventory/models/__init__.py new file mode 100644 index 000000000..79145f8f0 --- /dev/null +++ b/product_brand_inventory/models/__init__.py @@ -0,0 +1 @@ +from . import brand \ No newline at end of file diff --git a/product_brand_inventory/models/brand.py b/product_brand_inventory/models/brand.py new file mode 100644 index 000000000..274668133 --- /dev/null +++ b/product_brand_inventory/models/brand.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################### + +from odoo import models, fields, api + + +class ProductBrand(models.Model): + _inherit = 'product.template' + + brand_id = fields.Many2one('product.brand', string='Brand') + + +class BrandProduct(models.Model): + _name = 'product.brand' + + name = fields.Char(String="Name") + brand_image = fields.Binary() + member_ids = fields.One2many('product.template', 'brand_id') + product_count = fields.Char(String='Product Count', compute='get_count_products', store=True) + + @api.depends('member_ids') + def get_count_products(self): + self.product_count = len(self.member_ids) + + +class BrandReportStock(models.Model): + _inherit = 'stock.quant' + + brand_id = fields.Many2one(related='product_id.brand_id', + string='Brand', store=True, readonly=True) diff --git a/product_brand_inventory/security/ir.model.access.csv b/product_brand_inventory/security/ir.model.access.csv new file mode 100644 index 000000000..6c654dda8 --- /dev/null +++ b/product_brand_inventory/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_product_brand,access_product_brand,model_product_brand,,1,1,1,1 \ No newline at end of file diff --git a/product_brand_inventory/static/description/assets/icons/check.png b/product_brand_inventory/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/check.png differ diff --git a/product_brand_inventory/static/description/assets/icons/chevron.png b/product_brand_inventory/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/chevron.png differ diff --git a/product_brand_inventory/static/description/assets/icons/cogs.png b/product_brand_inventory/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/cogs.png differ diff --git a/product_brand_inventory/static/description/assets/icons/consultation.png b/product_brand_inventory/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/consultation.png differ diff --git a/product_brand_inventory/static/description/assets/icons/ecom-black.png b/product_brand_inventory/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/ecom-black.png differ diff --git a/product_brand_inventory/static/description/assets/icons/education-black.png b/product_brand_inventory/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/education-black.png differ diff --git a/product_brand_inventory/static/description/assets/icons/hotel-black.png b/product_brand_inventory/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/hotel-black.png differ diff --git a/product_brand_inventory/static/description/assets/icons/license.png b/product_brand_inventory/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/license.png differ diff --git a/product_brand_inventory/static/description/assets/icons/lifebuoy.png b/product_brand_inventory/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/lifebuoy.png differ diff --git a/product_brand_inventory/static/description/assets/icons/logo.png b/product_brand_inventory/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/logo.png differ diff --git a/product_brand_inventory/static/description/assets/icons/manufacturing-black.png b/product_brand_inventory/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/manufacturing-black.png differ diff --git a/product_brand_inventory/static/description/assets/icons/pos-black.png b/product_brand_inventory/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/pos-black.png differ diff --git a/product_brand_inventory/static/description/assets/icons/puzzle.png b/product_brand_inventory/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/puzzle.png differ diff --git a/product_brand_inventory/static/description/assets/icons/restaurant-black.png b/product_brand_inventory/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/restaurant-black.png differ diff --git a/product_brand_inventory/static/description/assets/icons/service-black.png b/product_brand_inventory/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/service-black.png differ diff --git a/product_brand_inventory/static/description/assets/icons/trading-black.png b/product_brand_inventory/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/trading-black.png differ diff --git a/product_brand_inventory/static/description/assets/icons/training.png b/product_brand_inventory/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/training.png differ diff --git a/product_brand_inventory/static/description/assets/icons/update.png b/product_brand_inventory/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/update.png differ diff --git a/product_brand_inventory/static/description/assets/icons/user.png b/product_brand_inventory/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/user.png differ diff --git a/product_brand_inventory/static/description/assets/icons/wrench.png b/product_brand_inventory/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/product_brand_inventory/static/description/assets/icons/wrench.png differ diff --git a/product_brand_inventory/static/description/assets/modules/approval_image.png b/product_brand_inventory/static/description/assets/modules/approval_image.png new file mode 100644 index 000000000..84fe94e80 Binary files /dev/null and b/product_brand_inventory/static/description/assets/modules/approval_image.png differ diff --git a/product_brand_inventory/static/description/assets/modules/budget_image.png b/product_brand_inventory/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..fe6aa6fe4 Binary files /dev/null and b/product_brand_inventory/static/description/assets/modules/budget_image.png differ diff --git a/product_brand_inventory/static/description/assets/modules/export_image.png b/product_brand_inventory/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..4e4ea0e51 Binary files /dev/null and b/product_brand_inventory/static/description/assets/modules/export_image.png differ diff --git a/product_brand_inventory/static/description/assets/modules/magento_image.png b/product_brand_inventory/static/description/assets/modules/magento_image.png new file mode 100644 index 000000000..39de0820f Binary files /dev/null and b/product_brand_inventory/static/description/assets/modules/magento_image.png differ diff --git a/product_brand_inventory/static/description/assets/modules/pos_image.png b/product_brand_inventory/static/description/assets/modules/pos_image.png new file mode 100644 index 000000000..c5932894b Binary files /dev/null and b/product_brand_inventory/static/description/assets/modules/pos_image.png differ diff --git a/product_brand_inventory/static/description/assets/modules/shopify_image.png b/product_brand_inventory/static/description/assets/modules/shopify_image.png new file mode 100644 index 000000000..c6d92c16d Binary files /dev/null and b/product_brand_inventory/static/description/assets/modules/shopify_image.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/hero.png b/product_brand_inventory/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..0b2815ada Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/hero.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library-management-youtube.png b/product_brand_inventory/static/description/assets/screenshots/library-management-youtube.png new file mode 100644 index 000000000..b93130243 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library-management-youtube.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-1.png b/product_brand_inventory/static/description/assets/screenshots/library_management-1.png new file mode 100644 index 000000000..7b6805b4e Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-1.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-10.png b/product_brand_inventory/static/description/assets/screenshots/library_management-10.png new file mode 100644 index 000000000..4a61f9133 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-10.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-11.png b/product_brand_inventory/static/description/assets/screenshots/library_management-11.png new file mode 100644 index 000000000..a1d53b459 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-11.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-12.png b/product_brand_inventory/static/description/assets/screenshots/library_management-12.png new file mode 100644 index 000000000..db435e8fa Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-12.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-13.png b/product_brand_inventory/static/description/assets/screenshots/library_management-13.png new file mode 100644 index 000000000..b4908efcd Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-13.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-14.png b/product_brand_inventory/static/description/assets/screenshots/library_management-14.png new file mode 100644 index 000000000..27019b792 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-14.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-15.png b/product_brand_inventory/static/description/assets/screenshots/library_management-15.png new file mode 100644 index 000000000..c1bfadedc Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-15.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-16.png b/product_brand_inventory/static/description/assets/screenshots/library_management-16.png new file mode 100644 index 000000000..f7f92ab61 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-16.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-17.png b/product_brand_inventory/static/description/assets/screenshots/library_management-17.png new file mode 100644 index 000000000..92458e52b Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-17.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-18.png b/product_brand_inventory/static/description/assets/screenshots/library_management-18.png new file mode 100644 index 000000000..6e4ec858a Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-18.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-19.png b/product_brand_inventory/static/description/assets/screenshots/library_management-19.png new file mode 100644 index 000000000..cbe35f7b7 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-19.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-2.png b/product_brand_inventory/static/description/assets/screenshots/library_management-2.png new file mode 100644 index 000000000..4902d6ae9 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-2.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-20.png b/product_brand_inventory/static/description/assets/screenshots/library_management-20.png new file mode 100644 index 000000000..275856d61 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-20.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-21.png b/product_brand_inventory/static/description/assets/screenshots/library_management-21.png new file mode 100644 index 000000000..e49b82549 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-21.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-22.png b/product_brand_inventory/static/description/assets/screenshots/library_management-22.png new file mode 100644 index 000000000..c3e7ad6f5 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-22.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-3.png b/product_brand_inventory/static/description/assets/screenshots/library_management-3.png new file mode 100644 index 000000000..b7b37ae68 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-3.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-4.png b/product_brand_inventory/static/description/assets/screenshots/library_management-4.png new file mode 100644 index 000000000..66232ffd3 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-4.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-5.png b/product_brand_inventory/static/description/assets/screenshots/library_management-5.png new file mode 100644 index 000000000..915ef103a Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-5.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-6.png b/product_brand_inventory/static/description/assets/screenshots/library_management-6.png new file mode 100644 index 000000000..07e6c3937 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-6.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-7.png b/product_brand_inventory/static/description/assets/screenshots/library_management-7.png new file mode 100644 index 000000000..a98f4a6e9 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-7.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-8.png b/product_brand_inventory/static/description/assets/screenshots/library_management-8.png new file mode 100644 index 000000000..8fcca261f Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-8.png differ diff --git a/product_brand_inventory/static/description/assets/screenshots/library_management-9.png b/product_brand_inventory/static/description/assets/screenshots/library_management-9.png new file mode 100644 index 000000000..393a07503 Binary files /dev/null and b/product_brand_inventory/static/description/assets/screenshots/library_management-9.png differ diff --git a/product_brand_inventory/static/description/banner.png b/product_brand_inventory/static/description/banner.png new file mode 100644 index 000000000..5f7b7d385 Binary files /dev/null and b/product_brand_inventory/static/description/banner.png differ diff --git a/product_brand_inventory/static/description/icon.png b/product_brand_inventory/static/description/icon.png new file mode 100644 index 000000000..79268dfb5 Binary files /dev/null and b/product_brand_inventory/static/description/icon.png differ diff --git a/product_brand_inventory/static/description/images/1.jpeg b/product_brand_inventory/static/description/images/1.jpeg new file mode 100644 index 000000000..ccb8e1556 Binary files /dev/null and b/product_brand_inventory/static/description/images/1.jpeg differ diff --git a/product_brand_inventory/static/description/images/1.png b/product_brand_inventory/static/description/images/1.png new file mode 100644 index 000000000..fc8ec526e Binary files /dev/null and b/product_brand_inventory/static/description/images/1.png differ diff --git a/product_brand_inventory/static/description/images/2.jpeg b/product_brand_inventory/static/description/images/2.jpeg new file mode 100644 index 000000000..2625f7727 Binary files /dev/null and b/product_brand_inventory/static/description/images/2.jpeg differ diff --git a/product_brand_inventory/static/description/images/2.png b/product_brand_inventory/static/description/images/2.png new file mode 100644 index 000000000..9d33f8b33 Binary files /dev/null and b/product_brand_inventory/static/description/images/2.png differ diff --git a/product_brand_inventory/static/description/images/3.jpeg b/product_brand_inventory/static/description/images/3.jpeg new file mode 100644 index 000000000..5dfdf2c2b Binary files /dev/null and b/product_brand_inventory/static/description/images/3.jpeg differ diff --git a/product_brand_inventory/static/description/images/3.png b/product_brand_inventory/static/description/images/3.png new file mode 100644 index 000000000..eccf7317d Binary files /dev/null and b/product_brand_inventory/static/description/images/3.png differ diff --git a/product_brand_inventory/static/description/images/4.jpeg b/product_brand_inventory/static/description/images/4.jpeg new file mode 100644 index 000000000..ec8264c0b Binary files /dev/null and b/product_brand_inventory/static/description/images/4.jpeg differ diff --git a/product_brand_inventory/static/description/images/4.png b/product_brand_inventory/static/description/images/4.png new file mode 100644 index 000000000..7bbadd6b8 Binary files /dev/null and b/product_brand_inventory/static/description/images/4.png differ diff --git a/product_brand_inventory/static/description/images/5.jpeg b/product_brand_inventory/static/description/images/5.jpeg new file mode 100644 index 000000000..e10c28799 Binary files /dev/null and b/product_brand_inventory/static/description/images/5.jpeg differ diff --git a/product_brand_inventory/static/description/images/5.png b/product_brand_inventory/static/description/images/5.png new file mode 100644 index 000000000..2bd680666 Binary files /dev/null and b/product_brand_inventory/static/description/images/5.png differ diff --git a/product_brand_inventory/static/description/images/6.jpeg b/product_brand_inventory/static/description/images/6.jpeg new file mode 100644 index 000000000..529143e4e Binary files /dev/null and b/product_brand_inventory/static/description/images/6.jpeg differ diff --git a/product_brand_inventory/static/description/images/checked.png b/product_brand_inventory/static/description/images/checked.png new file mode 100644 index 000000000..578cedb80 Binary files /dev/null and b/product_brand_inventory/static/description/images/checked.png differ diff --git a/product_brand_inventory/static/description/images/cybrosys.png b/product_brand_inventory/static/description/images/cybrosys.png new file mode 100644 index 000000000..d76b5bafb Binary files /dev/null and b/product_brand_inventory/static/description/images/cybrosys.png differ diff --git a/product_brand_inventory/static/description/images/enable.png b/product_brand_inventory/static/description/images/enable.png new file mode 100644 index 000000000..c38dc2d38 Binary files /dev/null and b/product_brand_inventory/static/description/images/enable.png differ diff --git a/product_brand_inventory/static/description/images/image1.png b/product_brand_inventory/static/description/images/image1.png new file mode 100644 index 000000000..e0916cfa9 Binary files /dev/null and b/product_brand_inventory/static/description/images/image1.png differ diff --git a/product_brand_inventory/static/description/images/image2.png b/product_brand_inventory/static/description/images/image2.png new file mode 100644 index 000000000..d0813ded7 Binary files /dev/null and b/product_brand_inventory/static/description/images/image2.png differ diff --git a/product_brand_inventory/static/description/images/image3.png b/product_brand_inventory/static/description/images/image3.png new file mode 100644 index 000000000..01459a4cf Binary files /dev/null and b/product_brand_inventory/static/description/images/image3.png differ diff --git a/product_brand_inventory/static/description/images/image4.png b/product_brand_inventory/static/description/images/image4.png new file mode 100644 index 000000000..9cc5a1fb1 Binary files /dev/null and b/product_brand_inventory/static/description/images/image4.png differ diff --git a/product_brand_inventory/static/description/images/image5.png b/product_brand_inventory/static/description/images/image5.png new file mode 100644 index 000000000..2fd2f6566 Binary files /dev/null and b/product_brand_inventory/static/description/images/image5.png differ diff --git a/product_brand_inventory/static/description/images/paytm.gif b/product_brand_inventory/static/description/images/paytm.gif new file mode 100644 index 000000000..77b34a395 Binary files /dev/null and b/product_brand_inventory/static/description/images/paytm.gif differ diff --git a/product_brand_inventory/static/description/index.html b/product_brand_inventory/static/description/index.html new file mode 100644 index 000000000..12c406c74 --- /dev/null +++ b/product_brand_inventory/static/description/index.html @@ -0,0 +1,648 @@ + +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ Product Brand in Inventory

+

+ This module allows the odoo users to manage their product brands easily . +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ This module allows the odoo users to manage their product brands easily.

+ +
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Community & Enterprise Support

+

+ Available in Odoo 15.0 Community and Enterprise.

+
+
+
+
+ +
+
+

+ Easy adding of brands

+

+ Easy adding of products to Product Brand.

+
+
+ +
+
+ +
+
+

+ View in Product form

+

+ Product Brand inside Products.

+
+
+ +
+
+ +
+
+

+ Group By Brand

+

+ Group By Product Brand.

+
+
+ +
+
+ +
+
+

+ View in pivot view.

+

+ Product Brand in Pivot view.

+
+
+ + + +
+ +
+
+

+ Screenshots +

+
+
+

+ Product Brand Menu

+ + +
+ +
+

+ Create a new Product Brand . We can add products directly from here itself.

+ + +
+ +
+

+ Also we can add the brand inside the product form.

+ + +
+ + +
+

+ Product Brand in Pivot view

+ + +
+ + +
+

+ Filtered by Product Brand

+ +
+
+ + +
+
+

Suggested Products

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

Our Services

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

Our Industries

+
+
+ +
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

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

+ Mobile + friendly, + awe-inspiring product pages

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

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

Need Help?

+
+
+
+ + +
+ +
+ +
+ +
+ WhatsApp +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/product_brand_inventory/views/brand_views.xml b/product_brand_inventory/views/brand_views.xml new file mode 100644 index 000000000..4ebdaeead --- /dev/null +++ b/product_brand_inventory/views/brand_views.xml @@ -0,0 +1,86 @@ + + + + Brand Name + product.template + + + + + + + + + + Product Brand + product.brand + tree,form + + + Product Brand + product.brand + +
+ + +
+