diff --git a/multiple_order_confirm/.DS_Store b/multiple_order_confirm/.DS_Store new file mode 100644 index 000000000..1012f4af5 Binary files /dev/null and b/multiple_order_confirm/.DS_Store differ diff --git a/multiple_order_confirm/README.rst b/multiple_order_confirm/README.rst new file mode 100644 index 000000000..6508bcd45 --- /dev/null +++ b/multiple_order_confirm/README.rst @@ -0,0 +1,49 @@ +Multiple Sale/Purchase Order Confirm And Cancel +=============================================== +* Multiple Sale/Purchase Order Confirm And Cancel + +Installation +============ + - www.odoo.com/documentation/15.0/setup/install.html + - Install our custom addon + +Configuration +============= +* No additional configurations needed + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/user/15.0/legal/licenses/licenses.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: odoo@cybrosys.com + -Credits: Gion @ Cybrosys + -Credits V15 : Neethu U M @ 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 +========== +.. 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/multiple_order_confirm/__init__.py b/multiple_order_confirm/__init__.py new file mode 100644 index 000000000..dfae47791 --- /dev/null +++ b/multiple_order_confirm/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# Author: odoo@cybrosys.com +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from . import models diff --git a/multiple_order_confirm/__manifest__.py b/multiple_order_confirm/__manifest__.py new file mode 100644 index 000000000..5c4992ed6 --- /dev/null +++ b/multiple_order_confirm/__manifest__.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# Author: odoo@cybrosys.com +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# + +{ + 'name': 'Multiple Sale/Purchase Order Confirm And Cancel', + 'summary': 'Confirm/Cancel Multiple Sale/Purchase Orders from Tree View', + 'description': """Confirm/Cancel Multiple Sale/Purchase Orders from Tree View""", + 'version': '15.0.1.0.0', + 'category': 'Sales/Sales', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'license': 'AGPL-3', + 'depends': [ + 'sale_management', + 'purchase' + ], + 'data': ['views/order_confirm.xml'], + 'images': ['static/description/banner.png'], + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/multiple_order_confirm/doc/RELEASE_NOTES.md b/multiple_order_confirm/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..21204b138 --- /dev/null +++ b/multiple_order_confirm/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 16.02.2022 +#### Version 15.0.1.0.0 + + Initial Commit for Multiple Sale/Purchase Order Confirm And Cancel + diff --git a/multiple_order_confirm/models/__init__.py b/multiple_order_confirm/models/__init__.py new file mode 100644 index 000000000..61fcf695c --- /dev/null +++ b/multiple_order_confirm/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# Author: odoo@cybrosys.com +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from .import sale_order +from .import purchase_order \ No newline at end of file diff --git a/multiple_order_confirm/models/purchase_order.py b/multiple_order_confirm/models/purchase_order.py new file mode 100644 index 000000000..dba2d9783 --- /dev/null +++ b/multiple_order_confirm/models/purchase_order.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# Author: odoo@cybrosys.com +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import fields, models, api, _ + + +class PurchaseOrderConfirm(models.Model): + _inherit = 'purchase.order' + + def action_multi_confirm(self): + for order in self.env['purchase.order'].browse(self.env.context.get('active_ids')).filtered( + lambda o: o.state in ['draft', 'sent']): + order.button_confirm() + + def action_multi_cancel(self): + for order in self.env['purchase.order'].browse(self.env.context.get('active_ids')): + order.button_cancel() diff --git a/multiple_order_confirm/models/sale_order.py b/multiple_order_confirm/models/sale_order.py new file mode 100644 index 000000000..d89f48b15 --- /dev/null +++ b/multiple_order_confirm/models/sale_order.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# Author: odoo@cybrosys.com +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import fields, models, api, _ + + +class SaleOrderConfirm(models.Model): + _inherit = 'sale.order' + + def action_multi_confirm(self): + + for order in self.env['sale.order'].browse(self.env.context.get('active_ids')).filtered( + lambda o: o.state in ['draft', 'sent']): + order.action_confirm() + + def action_multi_cancel(self): + + for order in self.env['sale.order'].browse(self.env.context.get('active_ids')): + order.action_cancel() diff --git a/multiple_order_confirm/static/.DS_Store b/multiple_order_confirm/static/.DS_Store new file mode 100644 index 000000000..3820c2b2a Binary files /dev/null and b/multiple_order_confirm/static/.DS_Store differ diff --git a/multiple_order_confirm/static/description/.DS_Store b/multiple_order_confirm/static/description/.DS_Store new file mode 100644 index 000000000..e88eaf1be Binary files /dev/null and b/multiple_order_confirm/static/description/.DS_Store differ diff --git a/multiple_order_confirm/static/description/assets/.DS_Store b/multiple_order_confirm/static/description/assets/.DS_Store new file mode 100644 index 000000000..4e283833e Binary files /dev/null and b/multiple_order_confirm/static/description/assets/.DS_Store differ diff --git a/multiple_order_confirm/static/description/assets/icons/check.png b/multiple_order_confirm/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/check.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/chevron.png b/multiple_order_confirm/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/chevron.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/cogs.png b/multiple_order_confirm/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/cogs.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/consultation.png b/multiple_order_confirm/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/consultation.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/ecom-black.png b/multiple_order_confirm/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/ecom-black.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/education-black.png b/multiple_order_confirm/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/education-black.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/hotel-black.png b/multiple_order_confirm/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/hotel-black.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/license.png b/multiple_order_confirm/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/license.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/lifebuoy.png b/multiple_order_confirm/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/lifebuoy.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/logo.png b/multiple_order_confirm/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/logo.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/manufacturing-black.png b/multiple_order_confirm/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/manufacturing-black.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/pos-black.png b/multiple_order_confirm/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/pos-black.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/puzzle.png b/multiple_order_confirm/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/puzzle.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/restaurant-black.png b/multiple_order_confirm/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/restaurant-black.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/service-black.png b/multiple_order_confirm/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/service-black.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/trading-black.png b/multiple_order_confirm/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/trading-black.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/training.png b/multiple_order_confirm/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/training.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/update.png b/multiple_order_confirm/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/update.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/user.png b/multiple_order_confirm/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/user.png differ diff --git a/multiple_order_confirm/static/description/assets/icons/wrench.png b/multiple_order_confirm/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/multiple_order_confirm/static/description/assets/icons/wrench.png differ diff --git a/multiple_order_confirm/static/description/assets/modules/.DS_Store b/multiple_order_confirm/static/description/assets/modules/.DS_Store new file mode 100644 index 000000000..2e08a84da Binary files /dev/null and b/multiple_order_confirm/static/description/assets/modules/.DS_Store differ diff --git a/multiple_order_confirm/static/description/assets/modules/arabic_image.png b/multiple_order_confirm/static/description/assets/modules/arabic_image.png new file mode 100644 index 000000000..65f9d71a9 Binary files /dev/null and b/multiple_order_confirm/static/description/assets/modules/arabic_image.png differ diff --git a/multiple_order_confirm/static/description/assets/modules/average_image.png b/multiple_order_confirm/static/description/assets/modules/average_image.png new file mode 100644 index 000000000..8b94b68b9 Binary files /dev/null and b/multiple_order_confirm/static/description/assets/modules/average_image.png differ diff --git a/multiple_order_confirm/static/description/assets/modules/customer_followup.png b/multiple_order_confirm/static/description/assets/modules/customer_followup.png new file mode 100644 index 000000000..b58f04eb3 Binary files /dev/null and b/multiple_order_confirm/static/description/assets/modules/customer_followup.png differ diff --git a/multiple_order_confirm/static/description/assets/modules/dynamic_dashboard_image.png b/multiple_order_confirm/static/description/assets/modules/dynamic_dashboard_image.png new file mode 100644 index 000000000..430932dcc Binary files /dev/null and b/multiple_order_confirm/static/description/assets/modules/dynamic_dashboard_image.png differ diff --git a/multiple_order_confirm/static/description/assets/modules/project_gantt_view.png b/multiple_order_confirm/static/description/assets/modules/project_gantt_view.png new file mode 100644 index 000000000..3c3ff1afb Binary files /dev/null and b/multiple_order_confirm/static/description/assets/modules/project_gantt_view.png differ diff --git a/multiple_order_confirm/static/description/assets/modules/woocommerce_module.png b/multiple_order_confirm/static/description/assets/modules/woocommerce_module.png new file mode 100644 index 000000000..4bec075eb Binary files /dev/null and b/multiple_order_confirm/static/description/assets/modules/woocommerce_module.png differ diff --git a/multiple_order_confirm/static/description/assets/screenshots/first.png b/multiple_order_confirm/static/description/assets/screenshots/first.png new file mode 100644 index 000000000..b4ba76294 Binary files /dev/null and b/multiple_order_confirm/static/description/assets/screenshots/first.png differ diff --git a/multiple_order_confirm/static/description/assets/screenshots/hero.gif b/multiple_order_confirm/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..c5d677225 Binary files /dev/null and b/multiple_order_confirm/static/description/assets/screenshots/hero.gif differ diff --git a/multiple_order_confirm/static/description/assets/screenshots/second.png b/multiple_order_confirm/static/description/assets/screenshots/second.png new file mode 100644 index 000000000..25b4331d6 Binary files /dev/null and b/multiple_order_confirm/static/description/assets/screenshots/second.png differ diff --git a/multiple_order_confirm/static/description/assets/screenshots/third.png b/multiple_order_confirm/static/description/assets/screenshots/third.png new file mode 100644 index 000000000..c7fe22e5b Binary files /dev/null and b/multiple_order_confirm/static/description/assets/screenshots/third.png differ diff --git a/multiple_order_confirm/static/description/banner.png b/multiple_order_confirm/static/description/banner.png new file mode 100644 index 000000000..3712519fd Binary files /dev/null and b/multiple_order_confirm/static/description/banner.png differ diff --git a/multiple_order_confirm/static/description/icon.png b/multiple_order_confirm/static/description/icon.png new file mode 100644 index 000000000..5307d1432 Binary files /dev/null and b/multiple_order_confirm/static/description/icon.png differ diff --git a/multiple_order_confirm/static/description/index.html b/multiple_order_confirm/static/description/index.html new file mode 100644 index 000000000..5a329db09 --- /dev/null +++ b/multiple_order_confirm/static/description/index.html @@ -0,0 +1,554 @@ + +
+
+
+
+ +
+
+
+ Community +
+
+
+
+
+ +
+
+
+

+ Multiple Sale/Purchase Order Confirm And Cancel

+

+ Multiple Sale/Purchase Order Confirm And Cancel from Tree View +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ This modules helps to Confirm/Cancel Multiple Sale/Purchase Orders from Tree View

+ +
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Multiple Quotation Confirm in Sale & Purchase

+
+
+
+
+ +
+
+

+ Multiple Quotation Cancel in Sale & Purchase

+
+
+ +
+
+ +
+
+

+ Confirm/Cancel orders in just one click

+
+
+
+ +
+
+

+ Screenshots +

+
+
+

+ In Sale Order

+

+ Select multiple Quotation from tree view and click the corresponding buttons +

+ +
+ +
+

+ In Purchase Order

+

+ Select multiple Orders from tree view and click the corresponding buttons +

+ +
+
+ +
+
+

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/multiple_order_confirm/views/order_confirm.xml b/multiple_order_confirm/views/order_confirm.xml new file mode 100644 index 000000000..1abb6de18 --- /dev/null +++ b/multiple_order_confirm/views/order_confirm.xml @@ -0,0 +1,34 @@ + + + + sale.order.quotation.inherit + sale.order + + + +
+
+
+
+
+ + + purchase.order.quotation.inherit + purchase.order + + + +
+
+
+
+
+
diff --git a/product_to_invoice/.DS_Store b/product_to_invoice/.DS_Store new file mode 100644 index 000000000..74270983d Binary files /dev/null and b/product_to_invoice/.DS_Store differ diff --git a/product_to_invoice/README.rst b/product_to_invoice/README.rst new file mode 100644 index 000000000..1eefe8a9d --- /dev/null +++ b/product_to_invoice/README.rst @@ -0,0 +1,39 @@ +Add Multiple Products to Invoice/Bill +===================================== +Easily add multiple products to a customer invoice or vendor bill directly from product kanban, list and from views. + +Configuration +============= +No additional configuration is needed to use this module. + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/user/14.0/legal/licenses/licenses.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: Midilaj V K @ cybrosys +* V15 Neethu U M @ 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/product_to_invoice/__init__.py b/product_to_invoice/__init__.py new file mode 100644 index 000000000..812f1d95d --- /dev/null +++ b/product_to_invoice/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Midilaj V K () +# +# 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 +from . import wizard diff --git a/product_to_invoice/__manifest__.py b/product_to_invoice/__manifest__.py new file mode 100644 index 000000000..f7f3c7056 --- /dev/null +++ b/product_to_invoice/__manifest__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Midilaj V K () +# +# 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': 'Add Multiple Products to Invoice/Bill', + 'version': '15.0.1.0.0', + 'category': 'Extra Tools', + 'summary': 'Easily add multiple products to a invoice/bill directly from the product views', + 'description': """This module allow you to add multiple products to the corresponding invoice/bill. + You can see all products in kanban, list and form view.You can also view the recent invoice/bill + history of the selected product along with the option to update the quantity, Change price, + Add Multiple Products""", + 'author': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'depends': ['base', 'account'], + 'data': [ + 'security/ir.model.access.csv', + 'views/account_move_views.xml', + 'views/product_views.xml', + 'wizard/invoice_product_details_views.xml' + ], + 'images': ['static/description/banner.png'], + 'license': 'LGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False +} diff --git a/product_to_invoice/doc/RELEASE_NOTES.md b/product_to_invoice/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..a7f2834d4 --- /dev/null +++ b/product_to_invoice/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 16.02.2022 +#### Version 15.0.1.0.0 +##### ADD +- Initial commit for Add Multiple Products to Invoice/Bill + diff --git a/product_to_invoice/models/__init__.py b/product_to_invoice/models/__init__.py new file mode 100644 index 000000000..a469476a6 --- /dev/null +++ b/product_to_invoice/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Midilaj V K () +# +# 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 account_move +from . import product_product diff --git a/product_to_invoice/models/account_move.py b/product_to_invoice/models/account_move.py new file mode 100644 index 000000000..cca78d25c --- /dev/null +++ b/product_to_invoice/models/account_move.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Midilaj V K () +# +# 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 models, _ + + +class AccountMove(models.Model): + _inherit = 'account.move' + + def action_add_product(self): + self.ensure_one() + return { + 'name': _('Product Variants'), + 'type': 'ir.actions.act_window', + 'res_model': 'product.product', + 'view_mode': 'kanban,list,form', + 'target': 'current', + 'context': {'add_to_invoice': True}, + } diff --git a/product_to_invoice/models/product_product.py b/product_to_invoice/models/product_product.py new file mode 100644 index 000000000..28a44cc69 --- /dev/null +++ b/product_to_invoice/models/product_product.py @@ -0,0 +1,123 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Midilaj V K () +# +# 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 models, fields, _ + + +class ProductProduct(models.Model): + _inherit = 'product.product' + + def _compute_add_to_invoice(self): + context = self.env.context + for rec in self: + if context.get('add_to_invoice'): + rec.add_to_invoice = True + else: + rec.add_to_invoice = False + + add_to_invoice = fields.Boolean(compute=_compute_add_to_invoice, help='To show add to invoice button in tree view') + + def _get_invoice_taxes(self, move_id, account_id): + """ + return taxes of selected product + :param move_id: + :param account_id: + :return: + """ + self.ensure_one() + if move_id.move_type == 'out_invoice': + # Out invoice. + if self.taxes_id: + tax_ids = self.taxes_id.filtered(lambda tax: tax.company_id == move_id.company_id) + elif account_id.tax_ids: + tax_ids = account_id.tax_ids + else: + tax_ids = self.env['account.tax'] + if not tax_ids: + tax_ids = move_id.company_id.account_sale_tax_id + elif move_id.move_type == 'in_invoice': + # In invoice. + if self.supplier_taxes_id: + tax_ids = self.supplier_taxes_id.filtered(lambda tax: tax.company_id == move_id.company_id) + elif account_id.tax_ids: + tax_ids = account_id.tax_ids + else: + tax_ids = self.env['account.tax'] + if not tax_ids: + tax_ids = move_id.company_id.account_purchase_tax_id + else: + tax_ids = account_id.tax_ids + + if self.company_id and tax_ids: + tax_ids = tax_ids.filtered(lambda tax: tax.company_id == self.company_id) + + return tax_ids + + def _get_invoice_account(self, move_id): + """ + return income/expense account of selected product + :param move_id: + :return: + """ + self.ensure_one() + self = self.with_company(move_id.journal_id.company_id) + + fiscal_position = move_id.fiscal_position_id + accounts = self.product_tmpl_id.get_product_accounts(fiscal_pos=fiscal_position) + if move_id.move_type == 'out_invoice': + # Out invoice. + return accounts['income'] + elif move_id.move_type == 'in_invoice': + # In invoice. + return accounts['expense'] + + def action_add_to_invoice(self): + active_id = self._context.get('active_id') + invoice_id = self.env['account.move'].browse(active_id) + account_id = self._get_invoice_account(invoice_id) + tax_ids = self._get_invoice_taxes(invoice_id, account_id) + invoice_id.write({ + 'invoice_line_ids': [(0, 0, { + 'product_id': self.id, + 'product_uom_id': self.uom_id.id, + 'quantity': 1, + 'price_unit': self.lst_price if invoice_id.move_type == 'out_invoice' else self.standard_price, + 'account_id': account_id, + 'tax_ids': tax_ids + })] + }) + + def action_change_qty(self): + active_id = self._context.get('active_id') + invoice_id = self.env['account.move'].browse(active_id) + return { + 'name': _('Product Details'), + 'type': 'ir.actions.act_window', + 'res_model': 'invoice.product.details.wizard', + 'view_mode': 'form', + 'target': 'new', + 'context': { + 'default_account_move_id': invoice_id.id, + 'default_product_id': self.id, + 'default_price_unit': self.lst_price if invoice_id.move_type == 'out_invoice' else self.standard_price, + }, + } diff --git a/product_to_invoice/security/ir.model.access.csv b/product_to_invoice/security/ir.model.access.csv new file mode 100644 index 000000000..86d4a1ea8 --- /dev/null +++ b/product_to_invoice/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_invoice_product_details_wizard,access.invoice.product.details.wizard,model_invoice_product_details_wizard,,1,1,1,1 +access_product_invoice_history,access.product.invoice.history,model_product_invoice_history,,1,1,1,1 \ No newline at end of file diff --git a/product_to_invoice/static/.DS_Store b/product_to_invoice/static/.DS_Store new file mode 100644 index 000000000..3820c2b2a Binary files /dev/null and b/product_to_invoice/static/.DS_Store differ diff --git a/product_to_invoice/static/description/.DS_Store b/product_to_invoice/static/description/.DS_Store new file mode 100644 index 000000000..e88eaf1be Binary files /dev/null and b/product_to_invoice/static/description/.DS_Store differ diff --git a/product_to_invoice/static/description/assets/.DS_Store b/product_to_invoice/static/description/assets/.DS_Store new file mode 100644 index 000000000..04f22a4eb Binary files /dev/null and b/product_to_invoice/static/description/assets/.DS_Store differ diff --git a/product_to_invoice/static/description/assets/icons/check.png b/product_to_invoice/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/check.png differ diff --git a/product_to_invoice/static/description/assets/icons/chevron.png b/product_to_invoice/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/chevron.png differ diff --git a/product_to_invoice/static/description/assets/icons/cogs.png b/product_to_invoice/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/cogs.png differ diff --git a/product_to_invoice/static/description/assets/icons/consultation.png b/product_to_invoice/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/consultation.png differ diff --git a/product_to_invoice/static/description/assets/icons/ecom-black.png b/product_to_invoice/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/ecom-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/education-black.png b/product_to_invoice/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/education-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/hotel-black.png b/product_to_invoice/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/hotel-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/license.png b/product_to_invoice/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/license.png differ diff --git a/product_to_invoice/static/description/assets/icons/lifebuoy.png b/product_to_invoice/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/lifebuoy.png differ diff --git a/product_to_invoice/static/description/assets/icons/logo.png b/product_to_invoice/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/logo.png differ diff --git a/product_to_invoice/static/description/assets/icons/manufacturing-black.png b/product_to_invoice/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/manufacturing-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/pos-black.png b/product_to_invoice/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/pos-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/puzzle.png b/product_to_invoice/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/puzzle.png differ diff --git a/product_to_invoice/static/description/assets/icons/restaurant-black.png b/product_to_invoice/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/restaurant-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/service-black.png b/product_to_invoice/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/service-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/trading-black.png b/product_to_invoice/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/trading-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/training.png b/product_to_invoice/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/training.png differ diff --git a/product_to_invoice/static/description/assets/icons/update.png b/product_to_invoice/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/update.png differ diff --git a/product_to_invoice/static/description/assets/icons/user.png b/product_to_invoice/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/user.png differ diff --git a/product_to_invoice/static/description/assets/icons/wrench.png b/product_to_invoice/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/wrench.png differ diff --git a/product_to_invoice/static/description/assets/modules/.DS_Store b/product_to_invoice/static/description/assets/modules/.DS_Store new file mode 100644 index 000000000..5008ddfcf Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/.DS_Store differ diff --git a/product_to_invoice/static/description/assets/modules/arabic_image.png b/product_to_invoice/static/description/assets/modules/arabic_image.png new file mode 100644 index 000000000..65f9d71a9 Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/arabic_image.png differ diff --git a/product_to_invoice/static/description/assets/modules/average_image.png b/product_to_invoice/static/description/assets/modules/average_image.png new file mode 100644 index 000000000..8b94b68b9 Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/average_image.png differ diff --git a/product_to_invoice/static/description/assets/modules/customer_followup.png b/product_to_invoice/static/description/assets/modules/customer_followup.png new file mode 100644 index 000000000..b58f04eb3 Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/customer_followup.png differ diff --git a/product_to_invoice/static/description/assets/modules/dynamic_dashboard_image.png b/product_to_invoice/static/description/assets/modules/dynamic_dashboard_image.png new file mode 100644 index 000000000..430932dcc Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/dynamic_dashboard_image.png differ diff --git a/product_to_invoice/static/description/assets/modules/project_gantt_view.png b/product_to_invoice/static/description/assets/modules/project_gantt_view.png new file mode 100644 index 000000000..3c3ff1afb Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/project_gantt_view.png differ diff --git a/product_to_invoice/static/description/assets/modules/woocommerce_module.png b/product_to_invoice/static/description/assets/modules/woocommerce_module.png new file mode 100644 index 000000000..4bec075eb Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/woocommerce_module.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/hero.gif b/product_to_invoice/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..83c3b2883 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/hero.gif differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice1.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice1.png new file mode 100644 index 000000000..3b3710a54 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice1.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice2.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice2.png new file mode 100644 index 000000000..45b53d339 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice2.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice3.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice3.png new file mode 100644 index 000000000..fe107af99 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice3.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice4.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice4.png new file mode 100644 index 000000000..edee65fdb Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice4.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice5.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice5.png new file mode 100644 index 000000000..1af584918 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice5.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice6.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice6.png new file mode 100644 index 000000000..98ec947f3 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice6.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice7.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice7.png new file mode 100644 index 000000000..3fdec9df6 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice7.png differ diff --git a/product_to_invoice/static/description/banner.png b/product_to_invoice/static/description/banner.png new file mode 100644 index 000000000..5ea3578dd Binary files /dev/null and b/product_to_invoice/static/description/banner.png differ diff --git a/product_to_invoice/static/description/icon.png b/product_to_invoice/static/description/icon.png new file mode 100644 index 000000000..2409039dc Binary files /dev/null and b/product_to_invoice/static/description/icon.png differ diff --git a/product_to_invoice/static/description/index.html b/product_to_invoice/static/description/index.html new file mode 100644 index 000000000..9a75557e1 --- /dev/null +++ b/product_to_invoice/static/description/index.html @@ -0,0 +1,661 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ Add Multiple Products to Invoice/Bill

+

+ Add Multiple Products to Custome Invoice or Vendor Bill +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ Add Multiple Products to Invoice/Bill module provides an easy way to add multiple products to the + corresponding customer invoice or vendor bill. Moreover, you can see all the products in list, kanban and also + in the + form view. Furthermore, you can see the recent invoice/bill history of the selected product.

+ +
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Smart button in customer invoice and vendor bill form view to select products.

+

+ A definite Smart button in the form view of the customer invoice and vendor bill helps you to select multiple + products to be directly added to the invoice or bill.

+
+
+ +
+
+ +
+
+

+ Displays products in multiple views.

+

+ Displays every products which have been defined in your platform in Kanban, List and Form view.

+
+
+ +
+
+ +
+
+

+ Displays Recent Invoice and Bill History.

+

+ Displays recent customer invoice and vendor bill history of the selected product in the wizard window.

+
+
+
+
+ +
+
+

+ Option to filter out the Invoice/Bill History.

+

+ Option to view recent invoice/billing history based on the date selected.

+
+
+ +
+
+ +
+
+

+ Provision to Add Product Details.

+

+ Provision to add product details such as quantity of the product to be invoiced/billed from the selected + product wizard.

+
+
+ + +
+ +
+
+

+ Screenshots +

+
+
+

+ Smart Button in Customer Invoice and Vendor Bill form view

+

+ Smart button in invoice and vendor bill form view to select multiple products directly to the invoice/bill. + Moreover, the button will be visible only for invoice or bill in the draft state

+ + +
+ +
+

+ Display Products in Kanban View

+

+ Add to Invoice/Bill and Update Quantity button in the Kanban view. + Click Add to Invoice/Bill to add the product directly to the invoice/bill with one quantity and default price. + Click Change Quantity to add the product to the invoice/bill via changing price and quantity. A wizard window + will appear in the screen to change price and quantity. +

+ +
+ +
+

+ Display Products in List view

+

+ A plus icon to add the product directly to the invoice/bill with one quantity and default price. + A list icon to add the product to the invoice/bill via changing price and quantity. A wizard window will appear + in the screen to change price and quantity. +

+ +
+ + +
+

+ Product Form View

+

+ Press the button "Add to Invoice/Bill" to add the product directly to the invoice/bill. + Press the list icon to add the product to the invoice/bill by changing price and quantity. +

+ +
+ + +
+

+ Update Quantity Wizard

+

+ Where User Can Change Price and Quantity. + The wizard window also shows the previous invoice/bill history of the selected product. + You can choose the from date of the previous invoice/bill history. + You can decide how many rows (sequence) of invoice/bill history should be shown. +

+ +
+ + +
+

+ Products Added to Invoice/Bill

+

+ Selected products will be inserted to the move lines of opened invoice/bill. +

+ +
+ +
+ + + + +
+
+

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 +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
+ diff --git a/product_to_invoice/views/account_move_views.xml b/product_to_invoice/views/account_move_views.xml new file mode 100644 index 000000000..a36db2c07 --- /dev/null +++ b/product_to_invoice/views/account_move_views.xml @@ -0,0 +1,18 @@ + + + + + + account.move.form.inherit + account.move + + + + + + + + + \ No newline at end of file diff --git a/product_to_invoice/views/product_views.xml b/product_to_invoice/views/product_views.xml new file mode 100644 index 000000000..a5570f309 --- /dev/null +++ b/product_to_invoice/views/product_views.xml @@ -0,0 +1,55 @@ + + + + + + product.product.tree.inherit + product.product + + + +