diff --git a/vendor_purchase_discount/README.rst b/vendor_purchase_discount/README.rst new file mode 100644 index 000000000..3813591a7 --- /dev/null +++ b/vendor_purchase_discount/README.rst @@ -0,0 +1,41 @@ +Vendor Purchase Discount +======================== +* Vendor Purchase Discount for Odoo 15 + +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/13.0/legal/licenses/licenses.html) + +Company +------- +* 'Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: +Athul @ Cybrosys + +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/vendor_purchase_discount/__init__.py b/vendor_purchase_discount/__init__.py new file mode 100644 index 000000000..3367fdfdb --- /dev/null +++ b/vendor_purchase_discount/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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/vendor_purchase_discount/__manifest__.py b/vendor_purchase_discount/__manifest__.py new file mode 100644 index 000000000..e95ca6073 --- /dev/null +++ b/vendor_purchase_discount/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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': 'Vendor Purchase Discount', + 'version': '15.0.1.0.0', + 'summary': 'Vendor Purchase Discount Application for Odoo 15', + 'description': "Vendor Purchase Discount Application for Odoo 15", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'category': 'Purchase', + 'depends': [ + 'purchase', 'contacts' + ], + 'data': [ + 'views/res_partner.xml', + 'views/product_supplier.xml', + 'views/purchase_line.xml', + 'report/purchase_report.xml' + ], + 'images': ['static/description/banner.png'], + 'installable': True, + 'application': True, + 'license': 'LGPL-3', +} diff --git a/vendor_purchase_discount/doc/RELEASE_NOTES.md b/vendor_purchase_discount/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..ebe6d736a --- /dev/null +++ b/vendor_purchase_discount/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 30.6.2022 +#### Version 15.0.1.0.0 +##### ADD +- Initial Commit for vendor_purchase_discount diff --git a/vendor_purchase_discount/models/__init__.py b/vendor_purchase_discount/models/__init__.py new file mode 100644 index 000000000..f875991f2 --- /dev/null +++ b/vendor_purchase_discount/models/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 product_supplier +from . import res_partner +from . import purchase_line diff --git a/vendor_purchase_discount/models/product_supplier.py b/vendor_purchase_discount/models/product_supplier.py new file mode 100644 index 000000000..608f8221b --- /dev/null +++ b/vendor_purchase_discount/models/product_supplier.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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, api + + +class ProductSupplierInfo(models.Model): + _inherit = "product.supplierinfo" + + discount = fields.Float(string="Discount (%)") + _sql_constraints = [ + ( + "maximum_discount", + "CHECK (discount <= 100.0)", + "Discount must be lower than 100%.", + ) + ] + + @api.onchange("name") + def default_discount(self): + for supplier in self.filtered("name"): + supplier.write({'discount': supplier.name.default_discount}) diff --git a/vendor_purchase_discount/models/purchase_line.py b/vendor_purchase_discount/models/purchase_line.py new file mode 100644 index 000000000..a55017a4f --- /dev/null +++ b/vendor_purchase_discount/models/purchase_line.py @@ -0,0 +1,83 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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, api + + +class PurchaseLines(models.Model): + _inherit = 'purchase.order.line' + + discount = fields.Float(string="Discount (%)", editable=True) + _sql_constraints = [ + ( + "maximum_discount", + "CHECK (discount <= 100.0)", + "Discount must be lower than 100%.", + ) + ] + + @api.depends("discount") + def _compute_amount(self): + return super()._compute_amount() + + def _prepare_compute_all_values(self): + vals = super()._prepare_compute_all_values() + vals.update({"price_unit": self._get_discounted_price()}) + return vals + + @api.onchange('product_id') + def calculate_discount_percentage(self): + vendor = self.order_id.partner_id + for product in self: + sellers = product.product_id.product_tmpl_id.seller_ids + for rec in sellers: + if rec.name == vendor: + if rec.discount: + product.write({'discount': rec.discount}) + product.update({'price_unit': rec.price}) + break; + else: + if rec.name.default_discount: + product.update({'discount': rec.name.default_discount}) + break; + + else: + self.write({'discount': None}) + + @api.depends('discount') + def _get_discounted_price(self): + self.ensure_one() + if self.discount: + return self.price_unit * (1 - self.discount / 100) + return self.price_unit + + def _prepare_account_move_line(self, move=False): + sup = super(PurchaseLines, self)._prepare_account_move_line(move=False) + sup.update({'discount': self.discount}) + return sup + + +class PurchaseOrder(models.Model): + _inherit = 'purchase.order' + + @api.onchange('partner_id') + def _recompute_discount(self): + self.order_line.calculate_discount_percentage() diff --git a/vendor_purchase_discount/models/res_partner.py b/vendor_purchase_discount/models/res_partner.py new file mode 100644 index 000000000..453a57d0f --- /dev/null +++ b/vendor_purchase_discount/models/res_partner.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 ResPartnerInfo(models.Model): + _inherit = 'res.partner' + + default_discount = fields.Float(string='Discount(%)') + _sql_constraints = [ + ( + "maximum_discount", + "CHECK (discount <= 100.0)", + "Discount must be lower than 100%.", + ) + ] diff --git a/vendor_purchase_discount/report/purchase_report.xml b/vendor_purchase_discount/report/purchase_report.xml new file mode 100644 index 000000000..047a54a1a --- /dev/null +++ b/vendor_purchase_discount/report/purchase_report.xml @@ -0,0 +1,15 @@ + + + + \ No newline at end of file diff --git a/vendor_purchase_discount/static/description/assets/icons/check.png b/vendor_purchase_discount/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/check.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/chevron.png b/vendor_purchase_discount/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/chevron.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/cogs.png b/vendor_purchase_discount/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/cogs.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/consultation.png b/vendor_purchase_discount/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/consultation.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/ecom-black.png b/vendor_purchase_discount/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/ecom-black.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/education-black.png b/vendor_purchase_discount/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/education-black.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/hotel-black.png b/vendor_purchase_discount/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/hotel-black.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/license.png b/vendor_purchase_discount/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/license.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/lifebuoy.png b/vendor_purchase_discount/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/lifebuoy.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/logo.png b/vendor_purchase_discount/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/logo.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/manufacturing-black.png b/vendor_purchase_discount/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/manufacturing-black.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/pos-black.png b/vendor_purchase_discount/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/pos-black.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/puzzle.png b/vendor_purchase_discount/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/puzzle.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/restaurant-black.png b/vendor_purchase_discount/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/restaurant-black.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/service-black.png b/vendor_purchase_discount/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/service-black.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/trading-black.png b/vendor_purchase_discount/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/trading-black.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/training.png b/vendor_purchase_discount/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/training.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/update.png b/vendor_purchase_discount/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/update.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/user.png b/vendor_purchase_discount/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/user.png differ diff --git a/vendor_purchase_discount/static/description/assets/icons/wrench.png b/vendor_purchase_discount/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/icons/wrench.png differ diff --git a/vendor_purchase_discount/static/description/assets/modules/budget_image.png b/vendor_purchase_discount/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..b50130c7d Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/modules/budget_image.png differ diff --git a/vendor_purchase_discount/static/description/assets/modules/credit_image.png b/vendor_purchase_discount/static/description/assets/modules/credit_image.png new file mode 100644 index 000000000..3ad04ecfd Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/modules/credit_image.png differ diff --git a/vendor_purchase_discount/static/description/assets/modules/employee_image.png b/vendor_purchase_discount/static/description/assets/modules/employee_image.png new file mode 100644 index 000000000..30ad58232 Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/modules/employee_image.png differ diff --git a/vendor_purchase_discount/static/description/assets/modules/export_image.png b/vendor_purchase_discount/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..492980ad0 Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/modules/export_image.png differ diff --git a/vendor_purchase_discount/static/description/assets/modules/gantt_image.png b/vendor_purchase_discount/static/description/assets/modules/gantt_image.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/modules/gantt_image.png differ diff --git a/vendor_purchase_discount/static/description/assets/modules/quotation_image.png b/vendor_purchase_discount/static/description/assets/modules/quotation_image.png new file mode 100644 index 000000000..499b1a72f Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/modules/quotation_image.png differ diff --git a/vendor_purchase_discount/static/description/assets/screenshots/deafult.png b/vendor_purchase_discount/static/description/assets/screenshots/deafult.png new file mode 100644 index 000000000..17b01516b Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/screenshots/deafult.png differ diff --git a/vendor_purchase_discount/static/description/assets/screenshots/hero.gif b/vendor_purchase_discount/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..fc2122d05 Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/screenshots/hero.gif differ diff --git a/vendor_purchase_discount/static/description/assets/screenshots/purchase order.png b/vendor_purchase_discount/static/description/assets/screenshots/purchase order.png new file mode 100644 index 000000000..6edb7d741 Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/screenshots/purchase order.png differ diff --git a/vendor_purchase_discount/static/description/assets/screenshots/supplier.png b/vendor_purchase_discount/static/description/assets/screenshots/supplier.png new file mode 100644 index 000000000..66ca860cc Binary files /dev/null and b/vendor_purchase_discount/static/description/assets/screenshots/supplier.png differ diff --git a/vendor_purchase_discount/static/description/banner.png b/vendor_purchase_discount/static/description/banner.png new file mode 100644 index 000000000..c57d6eaa7 Binary files /dev/null and b/vendor_purchase_discount/static/description/banner.png differ diff --git a/vendor_purchase_discount/static/description/icon.png b/vendor_purchase_discount/static/description/icon.png new file mode 100644 index 000000000..9e244d077 Binary files /dev/null and b/vendor_purchase_discount/static/description/icon.png differ diff --git a/vendor_purchase_discount/static/description/index.html b/vendor_purchase_discount/static/description/index.html new file mode 100644 index 000000000..8b67ec128 --- /dev/null +++ b/vendor_purchase_discount/static/description/index.html @@ -0,0 +1,549 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+
+
+
+ +
+
+
+

+ Vendor Purchase Discount

+

+ Vendor Purchase discount application for odoo 15. +

+ +
+
+ + + +
+
+

+ Overview +

+
+ +
+

+ The module helps you to manage vendor purchase discounts for products and default discount for vendors

+
+

+ +
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Default discount for vendors

+
+
+ +
+
+ +
+
+

+ Discounts in product supplier-info

+
+
+ +
+ +
+
+

+ Screenshots +

+
+
+

+ Default discount for vendors

+

+ +

+ +
+ +
+

+ Manage discounts in product supplier-info

+

+ +
+ +
+

+ Discounts in purchase order line

+ +
+
+ +
+
+

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?

+
+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
diff --git a/vendor_purchase_discount/views/product_supplier.xml b/vendor_purchase_discount/views/product_supplier.xml new file mode 100644 index 000000000..34052151a --- /dev/null +++ b/vendor_purchase_discount/views/product_supplier.xml @@ -0,0 +1,22 @@ + + + + product.supplierinfo + + + + + + + + + product.supplierinfo + + + + + + + + + diff --git a/vendor_purchase_discount/views/purchase_line.xml b/vendor_purchase_discount/views/purchase_line.xml new file mode 100644 index 000000000..8999641ec --- /dev/null +++ b/vendor_purchase_discount/views/purchase_line.xml @@ -0,0 +1,13 @@ + + + + purchase.order + + + + + + + + \ No newline at end of file diff --git a/vendor_purchase_discount/views/res_partner.xml b/vendor_purchase_discount/views/res_partner.xml new file mode 100644 index 000000000..af5faa1dd --- /dev/null +++ b/vendor_purchase_discount/views/res_partner.xml @@ -0,0 +1,13 @@ + + + + res.partner.inherited + res.partner + + + + + + + + \ No newline at end of file