diff --git a/sale_product_image/README.rst b/sale_product_image/README.rst new file mode 100644 index 000000000..2f4c87aac --- /dev/null +++ b/sale_product_image/README.rst @@ -0,0 +1,47 @@ +Sale Order Line Images +====================== +Order Line Images In Sale + +Installation +============ + - www.odoo.com/documentation/15.0/setup/install.html + - Install our custom addon + +Configuration +============= + + - No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer v13: Anusha @ Cybrosys +* Developer v14: Vinaya @ Cybrosys +* Developer v15: Sonu Soman K P @ Cybrosys + + +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/sale_product_image/__init__.py b/sale_product_image/__init__.py new file mode 100644 index 000000000..f2c5a4636 --- /dev/null +++ b/sale_product_image/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-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/sale_product_image/__manifest__.py b/sale_product_image/__manifest__.py new file mode 100644 index 000000000..8773443e3 --- /dev/null +++ b/sale_product_image/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-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": "Sale Order Line Images", + "summary": "Order Line Images In Sale and Sale Report", + "version": "15.0.1.0.0", + "category": 'Sales', + "website": "https://www.cybrosys.com", + "description": """Order Line Images In Sale and Sale Report, odoo 14, order line images""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + "depends": [ + 'sale_management', + ], + "data": [ + 'views/sale_order_line_image.xml', + 'views/res_config_settings.xml', + 'report/sale_order_report.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/sale_product_image/doc/RELEASE_NOTES.md b/sale_product_image/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..7cfe1b12a --- /dev/null +++ b/sale_product_image/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 06.10.2021 +#### Version 15.0.1.0.0 +##### ADD +- Initial commit for Sale Order Line Images diff --git a/sale_product_image/models/__init__.py b/sale_product_image/models/__init__.py new file mode 100644 index 000000000..16fd92c18 --- /dev/null +++ b/sale_product_image/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-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 sale_order_line_image +from . import res_config_settings diff --git a/sale_product_image/models/res_config_settings.py b/sale_product_image/models/res_config_settings.py new file mode 100644 index 000000000..82e58085e --- /dev/null +++ b/sale_product_image/models/res_config_settings.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-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 ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + show_product_image_in_sale_report = fields.Boolean(string="Show Product Image", default=False) + + @api.model + def set_values(self): + self.env['ir.config_parameter'].sudo().set_param('sale_product_image.show_product_image_in_sale_report', + self.show_product_image_in_sale_report) + res = super(ResConfigSettings, self).set_values() + return res + + def get_values(self): + res = super(ResConfigSettings, self).get_values() + param = self.env['ir.config_parameter'].sudo().get_param( + 'sale_product_image.show_product_image_in_sale_report', + self.show_product_image_in_sale_report) + res.update( + show_product_image_in_sale_report=param + ) + return res diff --git a/sale_product_image/models/sale_order_line_image.py b/sale_product_image/models/sale_order_line_image.py new file mode 100644 index 000000000..4f4a8c795 --- /dev/null +++ b/sale_product_image/models/sale_order_line_image.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-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 SaleOrderLine(models.Model): + _inherit = 'sale.order.line' + + order_line_image = fields.Binary(string="Image", + related="product_id.image_1920") diff --git a/sale_product_image/report/sale_order_report.xml b/sale_product_image/report/sale_order_report.xml new file mode 100644 index 000000000..91cc4eba1 --- /dev/null +++ b/sale_product_image/report/sale_order_report.xml @@ -0,0 +1,23 @@ + + + + + + diff --git a/sale_product_image/static/description/assets/icons/check.png b/sale_product_image/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/sale_product_image/static/description/assets/icons/check.png differ diff --git a/sale_product_image/static/description/assets/icons/chevron.png b/sale_product_image/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/sale_product_image/static/description/assets/icons/chevron.png differ diff --git a/sale_product_image/static/description/assets/icons/cogs.png b/sale_product_image/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/sale_product_image/static/description/assets/icons/cogs.png differ diff --git a/sale_product_image/static/description/assets/icons/consultation.png b/sale_product_image/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/sale_product_image/static/description/assets/icons/consultation.png differ diff --git a/sale_product_image/static/description/assets/icons/ecom-black.png b/sale_product_image/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/sale_product_image/static/description/assets/icons/ecom-black.png differ diff --git a/sale_product_image/static/description/assets/icons/education-black.png b/sale_product_image/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/sale_product_image/static/description/assets/icons/education-black.png differ diff --git a/sale_product_image/static/description/assets/icons/hotel-black.png b/sale_product_image/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/sale_product_image/static/description/assets/icons/hotel-black.png differ diff --git a/sale_product_image/static/description/assets/icons/license.png b/sale_product_image/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/sale_product_image/static/description/assets/icons/license.png differ diff --git a/sale_product_image/static/description/assets/icons/lifebuoy.png b/sale_product_image/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/sale_product_image/static/description/assets/icons/lifebuoy.png differ diff --git a/sale_product_image/static/description/assets/icons/logo.png b/sale_product_image/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/sale_product_image/static/description/assets/icons/logo.png differ diff --git a/sale_product_image/static/description/assets/icons/manufacturing-black.png b/sale_product_image/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/sale_product_image/static/description/assets/icons/manufacturing-black.png differ diff --git a/sale_product_image/static/description/assets/icons/pos-black.png b/sale_product_image/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/sale_product_image/static/description/assets/icons/pos-black.png differ diff --git a/sale_product_image/static/description/assets/icons/puzzle.png b/sale_product_image/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/sale_product_image/static/description/assets/icons/puzzle.png differ diff --git a/sale_product_image/static/description/assets/icons/restaurant-black.png b/sale_product_image/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/sale_product_image/static/description/assets/icons/restaurant-black.png differ diff --git a/sale_product_image/static/description/assets/icons/service-black.png b/sale_product_image/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/sale_product_image/static/description/assets/icons/service-black.png differ diff --git a/sale_product_image/static/description/assets/icons/trading-black.png b/sale_product_image/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/sale_product_image/static/description/assets/icons/trading-black.png differ diff --git a/sale_product_image/static/description/assets/icons/training.png b/sale_product_image/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/sale_product_image/static/description/assets/icons/training.png differ diff --git a/sale_product_image/static/description/assets/icons/update.png b/sale_product_image/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/sale_product_image/static/description/assets/icons/update.png differ diff --git a/sale_product_image/static/description/assets/icons/user.png b/sale_product_image/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/sale_product_image/static/description/assets/icons/user.png differ diff --git a/sale_product_image/static/description/assets/icons/wrench.png b/sale_product_image/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/sale_product_image/static/description/assets/icons/wrench.png differ diff --git a/sale_product_image/static/description/assets/modules/approval_image.png b/sale_product_image/static/description/assets/modules/approval_image.png new file mode 100644 index 000000000..84fe94e80 Binary files /dev/null and b/sale_product_image/static/description/assets/modules/approval_image.png differ diff --git a/sale_product_image/static/description/assets/modules/budget_image.png b/sale_product_image/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..fe6aa6fe4 Binary files /dev/null and b/sale_product_image/static/description/assets/modules/budget_image.png differ diff --git a/sale_product_image/static/description/assets/modules/export_image.png b/sale_product_image/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..4e4ea0e51 Binary files /dev/null and b/sale_product_image/static/description/assets/modules/export_image.png differ diff --git a/sale_product_image/static/description/assets/modules/magento_image.png b/sale_product_image/static/description/assets/modules/magento_image.png new file mode 100644 index 000000000..39de0820f Binary files /dev/null and b/sale_product_image/static/description/assets/modules/magento_image.png differ diff --git a/sale_product_image/static/description/assets/modules/pos_image.png b/sale_product_image/static/description/assets/modules/pos_image.png new file mode 100644 index 000000000..c5932894b Binary files /dev/null and b/sale_product_image/static/description/assets/modules/pos_image.png differ diff --git a/sale_product_image/static/description/assets/modules/shopify_image.png b/sale_product_image/static/description/assets/modules/shopify_image.png new file mode 100644 index 000000000..c6d92c16d Binary files /dev/null and b/sale_product_image/static/description/assets/modules/shopify_image.png differ diff --git a/sale_product_image/static/description/assets/screenshots/hero.png b/sale_product_image/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..0b2815ada Binary files /dev/null and b/sale_product_image/static/description/assets/screenshots/hero.png differ diff --git a/sale_product_image/static/description/banner.png b/sale_product_image/static/description/banner.png new file mode 100644 index 000000000..09e2d45b2 Binary files /dev/null and b/sale_product_image/static/description/banner.png differ diff --git a/sale_product_image/static/description/icon.png b/sale_product_image/static/description/icon.png new file mode 100644 index 000000000..b1c01b28e Binary files /dev/null and b/sale_product_image/static/description/icon.png differ diff --git a/sale_product_image/static/description/images/1.jpeg b/sale_product_image/static/description/images/1.jpeg new file mode 100644 index 000000000..ccb8e1556 Binary files /dev/null and b/sale_product_image/static/description/images/1.jpeg differ diff --git a/sale_product_image/static/description/images/1.png b/sale_product_image/static/description/images/1.png new file mode 100644 index 000000000..fc8ec526e Binary files /dev/null and b/sale_product_image/static/description/images/1.png differ diff --git a/sale_product_image/static/description/images/2.jpeg b/sale_product_image/static/description/images/2.jpeg new file mode 100644 index 000000000..2625f7727 Binary files /dev/null and b/sale_product_image/static/description/images/2.jpeg differ diff --git a/sale_product_image/static/description/images/2.png b/sale_product_image/static/description/images/2.png new file mode 100644 index 000000000..9d33f8b33 Binary files /dev/null and b/sale_product_image/static/description/images/2.png differ diff --git a/sale_product_image/static/description/images/3.jpeg b/sale_product_image/static/description/images/3.jpeg new file mode 100644 index 000000000..5dfdf2c2b Binary files /dev/null and b/sale_product_image/static/description/images/3.jpeg differ diff --git a/sale_product_image/static/description/images/3.png b/sale_product_image/static/description/images/3.png new file mode 100644 index 000000000..eccf7317d Binary files /dev/null and b/sale_product_image/static/description/images/3.png differ diff --git a/sale_product_image/static/description/images/4.jpeg b/sale_product_image/static/description/images/4.jpeg new file mode 100644 index 000000000..ec8264c0b Binary files /dev/null and b/sale_product_image/static/description/images/4.jpeg differ diff --git a/sale_product_image/static/description/images/4.png b/sale_product_image/static/description/images/4.png new file mode 100644 index 000000000..7bbadd6b8 Binary files /dev/null and b/sale_product_image/static/description/images/4.png differ diff --git a/sale_product_image/static/description/images/5.jpeg b/sale_product_image/static/description/images/5.jpeg new file mode 100644 index 000000000..e10c28799 Binary files /dev/null and b/sale_product_image/static/description/images/5.jpeg differ diff --git a/sale_product_image/static/description/images/5.png b/sale_product_image/static/description/images/5.png new file mode 100644 index 000000000..2bd680666 Binary files /dev/null and b/sale_product_image/static/description/images/5.png differ diff --git a/sale_product_image/static/description/images/6.jpeg b/sale_product_image/static/description/images/6.jpeg new file mode 100644 index 000000000..529143e4e Binary files /dev/null and b/sale_product_image/static/description/images/6.jpeg differ diff --git a/sale_product_image/static/description/images/checked.png b/sale_product_image/static/description/images/checked.png new file mode 100644 index 000000000..578cedb80 Binary files /dev/null and b/sale_product_image/static/description/images/checked.png differ diff --git a/sale_product_image/static/description/images/cybrosys.png b/sale_product_image/static/description/images/cybrosys.png new file mode 100644 index 000000000..d76b5bafb Binary files /dev/null and b/sale_product_image/static/description/images/cybrosys.png differ diff --git a/sale_product_image/static/description/images/enable.png b/sale_product_image/static/description/images/enable.png new file mode 100644 index 000000000..c38dc2d38 Binary files /dev/null and b/sale_product_image/static/description/images/enable.png differ diff --git a/sale_product_image/static/description/images/hero.png b/sale_product_image/static/description/images/hero.png new file mode 100644 index 000000000..ff516dc6a Binary files /dev/null and b/sale_product_image/static/description/images/hero.png differ diff --git a/sale_product_image/static/description/images/im1.png b/sale_product_image/static/description/images/im1.png new file mode 100644 index 000000000..5866b4e93 Binary files /dev/null and b/sale_product_image/static/description/images/im1.png differ diff --git a/sale_product_image/static/description/images/im2.png b/sale_product_image/static/description/images/im2.png new file mode 100644 index 000000000..8650b37d0 Binary files /dev/null and b/sale_product_image/static/description/images/im2.png differ diff --git a/sale_product_image/static/description/images/im3.png b/sale_product_image/static/description/images/im3.png new file mode 100644 index 000000000..fbfc5f4b5 Binary files /dev/null and b/sale_product_image/static/description/images/im3.png differ diff --git a/sale_product_image/static/description/images/paytm.gif b/sale_product_image/static/description/images/paytm.gif new file mode 100644 index 000000000..77b34a395 Binary files /dev/null and b/sale_product_image/static/description/images/paytm.gif differ diff --git a/sale_product_image/static/description/index.html b/sale_product_image/static/description/index.html new file mode 100644 index 000000000..2c72736e3 --- /dev/null +++ b/sale_product_image/static/description/index.html @@ -0,0 +1,620 @@ + +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ Sale Order Line Images

+

+ Order Line Image In Sale Order +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ This app allows you see the product images in sale order line and also allow us to print the product image in report.

+ +
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Community & Enterprise Support

+

+ Available in Odoo 15.0 Community and Enterprise.

+
+
+
+
+ +
+
+

+ + Order line product images

+

+ Display the product images in Sale order lines.

+
+
+ +
+
+ +
+
+

+ + Image printing option

+

+ Configure the Image printing option

+
+
+ +
+
+ +
+
+

+ Print product images in report

+

+ Print product images in sale report

+
+
+ + + +
+ +
+
+

+ Screenshots +

+
+
+

+ To show product images in sale report, go to Settings --> Product Catalog and select show product image in report

+ + +
+ +
+

+ Sale Order View

+ + +
+ +
+

+ Sale Order Report View

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

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/sale_product_image/views/res_config_settings.xml b/sale_product_image/views/res_config_settings.xml new file mode 100644 index 000000000..4bce0e43f --- /dev/null +++ b/sale_product_image/views/res_config_settings.xml @@ -0,0 +1,23 @@ + + + + res.config.settings.view.form.inherit.sale + res.config.settings + + + +
+
+ +
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/sale_product_image/views/sale_order_line_image.xml b/sale_product_image/views/sale_order_line_image.xml new file mode 100644 index 000000000..8cb061643 --- /dev/null +++ b/sale_product_image/views/sale_order_line_image.xml @@ -0,0 +1,16 @@ + + + + + sale.order.inherit.form.view + sale.order + + + + + + + + + \ No newline at end of file