diff --git a/order_invoice_manual_link/README.rst b/order_invoice_manual_link/README.rst new file mode 100755 index 000000000..0d4e7bdaa --- /dev/null +++ b/order_invoice_manual_link/README.rst @@ -0,0 +1,41 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Sale Order Invoice Linker +========================= +This module designed to provide users with the ability to manually link invoices to specific sales orders + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer:(V17) ANFAS FAISAL K, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/order_invoice_manual_link/__init__.py b/order_invoice_manual_link/__init__.py new file mode 100644 index 000000000..54f98591b --- /dev/null +++ b/order_invoice_manual_link/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# 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 +from . import wizard diff --git a/order_invoice_manual_link/__manifest__.py b/order_invoice_manual_link/__manifest__.py new file mode 100644 index 000000000..b8ae89ec3 --- /dev/null +++ b/order_invoice_manual_link/__manifest__.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# 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': 'Sale Order Invoice Linker', + 'version': '17.0.1.0.0', + 'category': 'Extra Tools', + 'summary': 'This module designed to provide users with the ability to ' + 'manually link invoices to specific sales orders', + 'description': "This module enhances user functionality within the Odoo " + "platform by enabling manual linkage of invoices to " + "specific sales orders. It empowers users to conveniently " + "associate invoices with their corresponding sales orders, " + "facilitating accurate record-keeping and streamlined " + "transaction management. Additionally, the module " + "incorporates validation checks to ensure data integrity, " + "such as verifying product consistency and detecting " + "partner mismatches between invoices and associated sales " + "orders. ", + 'author': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['sale_management', 'account', 'stock_delivery'], + 'data': [ + 'security/ir.model.access.csv', + 'views/sale_order_views.xml', + 'views/account_move_views.xml', + 'wizard/link_invoice_views.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/order_invoice_manual_link/doc/RELEASE_NOTES.md b/order_invoice_manual_link/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..dda11c767 --- /dev/null +++ b/order_invoice_manual_link/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 14.05.2024 +#### Version 17.0.1.0.0 +#### ADD + +- Initial commit for Sale Order Invoice Linker diff --git a/order_invoice_manual_link/models/__init__.py b/order_invoice_manual_link/models/__init__.py new file mode 100644 index 000000000..ffdfb7045 --- /dev/null +++ b/order_invoice_manual_link/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# 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 account_move +from . import sale_order diff --git a/order_invoice_manual_link/models/account_move.py b/order_invoice_manual_link/models/account_move.py new file mode 100644 index 000000000..acd93b7ba --- /dev/null +++ b/order_invoice_manual_link/models/account_move.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# 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 + + +class AccountMove(models.Model): + """Extend Account Move to add functionality.""" + _inherit = 'account.move' + + link_invoice = fields.Boolean(string="Select", + help="Invoices that need to be linked") + + def action_unlink_invoice(self): + """ + This method unlinks invoice from sale orders. + """ + for invoice in self: + invoice.line_ids.sale_line_ids = False diff --git a/order_invoice_manual_link/models/sale_order.py b/order_invoice_manual_link/models/sale_order.py new file mode 100644 index 000000000..01a6de5eb --- /dev/null +++ b/order_invoice_manual_link/models/sale_order.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# 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 models + + +class SaleOrderLine(models.Model): + """Extend Sale Order to add functionality.""" + _inherit = 'sale.order' + + def action_open_invoices(self): + """ + This method opens a new window to link invoices and remove invoices + for the current sale order. + """ + partner_invoices = self.env['account.move'].search([ + ('partner_id', '=', self.partner_id.id), + ('move_type', '=', 'out_invoice'), + ('sale_order_count', '=', 0) + ]) + return { + "type": "ir.actions.act_window", + "name": "Link Invoices and Remove Invoices", + "view_mode": "form", + "res_model": "link.invoice", + "target": "new", + "context": { + 'default_invoice_ids': [(6, 0, partner_invoices.ids)], + 'default_sale_order_id': self.id + } + } diff --git a/order_invoice_manual_link/security/ir.model.access.csv b/order_invoice_manual_link/security/ir.model.access.csv new file mode 100755 index 000000000..651badc8f --- /dev/null +++ b/order_invoice_manual_link/security/ir.model.access.csv @@ -0,0 +1,4 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_link_invoice,link.invoice,model_link_invoice,base.group_user,1,1,1,1 + + diff --git a/order_invoice_manual_link/static/description/assets/icons/capture (1).png b/order_invoice_manual_link/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/capture (1).png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/check.png b/order_invoice_manual_link/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/check.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/chevron.png b/order_invoice_manual_link/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/chevron.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/cogs.png b/order_invoice_manual_link/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/cogs.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/consultation.png b/order_invoice_manual_link/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/consultation.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/ecom-black.png b/order_invoice_manual_link/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/ecom-black.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/education-black.png b/order_invoice_manual_link/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/education-black.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/hotel-black.png b/order_invoice_manual_link/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/hotel-black.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/img.png b/order_invoice_manual_link/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/img.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/license.png b/order_invoice_manual_link/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/license.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/lifebuoy.png b/order_invoice_manual_link/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/lifebuoy.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/manufacturing-black.png b/order_invoice_manual_link/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/manufacturing-black.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/photo-capture.png b/order_invoice_manual_link/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/photo-capture.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/pos-black.png b/order_invoice_manual_link/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/pos-black.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/puzzle.png b/order_invoice_manual_link/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/puzzle.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/restaurant-black.png b/order_invoice_manual_link/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/restaurant-black.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/service-black.png b/order_invoice_manual_link/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/service-black.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/trading-black.png b/order_invoice_manual_link/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/trading-black.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/training.png b/order_invoice_manual_link/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/training.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/update.png b/order_invoice_manual_link/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/update.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/user.png b/order_invoice_manual_link/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/user.png differ diff --git a/order_invoice_manual_link/static/description/assets/icons/wrench.png b/order_invoice_manual_link/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/icons/wrench.png differ diff --git a/order_invoice_manual_link/static/description/assets/misc/Cybrosys R.png b/order_invoice_manual_link/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/misc/Cybrosys R.png differ diff --git a/order_invoice_manual_link/static/description/assets/misc/email.svg b/order_invoice_manual_link/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/order_invoice_manual_link/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/order_invoice_manual_link/static/description/assets/misc/phone.svg b/order_invoice_manual_link/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/order_invoice_manual_link/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/order_invoice_manual_link/static/description/assets/misc/star (1) 2.svg b/order_invoice_manual_link/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/order_invoice_manual_link/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/order_invoice_manual_link/static/description/assets/misc/support (1) 1.svg b/order_invoice_manual_link/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/order_invoice_manual_link/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/order_invoice_manual_link/static/description/assets/misc/support-email.svg b/order_invoice_manual_link/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/order_invoice_manual_link/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/order_invoice_manual_link/static/description/assets/misc/tick-mark.svg b/order_invoice_manual_link/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/order_invoice_manual_link/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/order_invoice_manual_link/static/description/assets/misc/whatsapp 1.svg b/order_invoice_manual_link/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/order_invoice_manual_link/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/order_invoice_manual_link/static/description/assets/misc/whatsapp.svg b/order_invoice_manual_link/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/order_invoice_manual_link/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/order_invoice_manual_link/static/description/assets/modules/1.jpg b/order_invoice_manual_link/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..c13b125bc Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/modules/1.jpg differ diff --git a/order_invoice_manual_link/static/description/assets/modules/2.jpg b/order_invoice_manual_link/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..4199fb292 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/modules/2.jpg differ diff --git a/order_invoice_manual_link/static/description/assets/modules/3.jpg b/order_invoice_manual_link/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..da7a164b0 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/modules/3.jpg differ diff --git a/order_invoice_manual_link/static/description/assets/modules/4.png b/order_invoice_manual_link/static/description/assets/modules/4.png new file mode 100644 index 000000000..7cea975b4 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/modules/4.png differ diff --git a/order_invoice_manual_link/static/description/assets/modules/5.png b/order_invoice_manual_link/static/description/assets/modules/5.png new file mode 100644 index 000000000..b97f6e369 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/modules/5.png differ diff --git a/order_invoice_manual_link/static/description/assets/modules/6.png b/order_invoice_manual_link/static/description/assets/modules/6.png new file mode 100644 index 000000000..a80a0d9dc Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/modules/6.png differ diff --git a/order_invoice_manual_link/static/description/assets/screenshots/1.png b/order_invoice_manual_link/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..3a71f11ef Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/screenshots/1.png differ diff --git a/order_invoice_manual_link/static/description/assets/screenshots/2.png b/order_invoice_manual_link/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..65f0d5993 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/screenshots/2.png differ diff --git a/order_invoice_manual_link/static/description/assets/screenshots/3.png b/order_invoice_manual_link/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..ee33fe793 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/screenshots/3.png differ diff --git a/order_invoice_manual_link/static/description/assets/screenshots/4.png b/order_invoice_manual_link/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..5aa6016cc Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/screenshots/4.png differ diff --git a/order_invoice_manual_link/static/description/assets/screenshots/5.png b/order_invoice_manual_link/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..c7f031e2f Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/screenshots/5.png differ diff --git a/order_invoice_manual_link/static/description/assets/screenshots/6.png b/order_invoice_manual_link/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..128f88711 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/screenshots/6.png differ diff --git a/order_invoice_manual_link/static/description/assets/screenshots/7.png b/order_invoice_manual_link/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..fe712eb30 Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/screenshots/7.png differ diff --git a/order_invoice_manual_link/static/description/assets/screenshots/hero-v17.gif b/order_invoice_manual_link/static/description/assets/screenshots/hero-v17.gif new file mode 100644 index 000000000..ab82a2ace Binary files /dev/null and b/order_invoice_manual_link/static/description/assets/screenshots/hero-v17.gif differ diff --git a/order_invoice_manual_link/static/description/banner.jpg b/order_invoice_manual_link/static/description/banner.jpg new file mode 100644 index 000000000..4b9fe466b Binary files /dev/null and b/order_invoice_manual_link/static/description/banner.jpg differ diff --git a/order_invoice_manual_link/static/description/icon.png b/order_invoice_manual_link/static/description/icon.png new file mode 100644 index 000000000..3aab87eec Binary files /dev/null and b/order_invoice_manual_link/static/description/icon.png differ diff --git a/order_invoice_manual_link/static/description/index.html b/order_invoice_manual_link/static/description/index.html new file mode 100644 index 000000000..acc52ccf2 --- /dev/null +++ b/order_invoice_manual_link/static/description/index.html @@ -0,0 +1,627 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Sale Order Invoice Linker

+

+ The module allows users to manually associate invoices with corresponding sales orders. +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

Manual linking of invoices to specific sales orders.

+
+
+
+
+
+
+ +
+
+

Validation checks to ensure consistency between invoice products, associated sale orders and Corresponding Customer.

+
+
+
+
+
+
+ +
+
+

Detection of partner mismatches between invoices and linked sales orders to maintain data integrity.

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

+ Create New Sale Order

+
+
+
+
+
+
+ +
+
+

+ After Creating the Sale Order, Go to Invoice Tab.

+
+
+
+
+
+
+ +
+
+

+ Click on the "Add Invoice" Button to link Invoices to the Sale Order.

+
+
+
+
+
+
+ +
+
+

+ Automatically display all invoices related to the partner, then remove any invoices that are not relevant.

+
+
+
+
+
+
+ +
+
+

+ After selecting the desired invoices, click on "Add Invoices" to proceed.

+
+
+
+
+
+
+ +
+
+

+ Here we can see all Invoices that are linked to the Current Sale Order.

+
+
+
+
+
+
+ +
+
+

+ If want to Unlink Invoice from Order , Click Delete Icon.

+
+
+
+ +
+
+
+
    +
  • + Manual linking of invoices to specific sales orders. + + +
  • + +
  • + Validation checks to ensure consistency between invoice products, associated sale orders and Corresponding Customer. + . +
  • + + +
  • + Detection of partner mismatches between invoices and linked sales orders to maintain data integrity. + . +
  • + + +
+
+
+
+
+
+
Version + 16.0.1.0.0|Released on:11th March 2024 +
+

+ + Sale Order Invoice Linker.

+
+
+
+
+
+
+
+

Related Products

+
+
+ +
+
+

Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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

+
+
+
+
+
+
+

Support

+
+
+
+
+
+
+
+ +
+ Need + Help? +

Got questions or need help? Get in touch.

+
odoo@cybrosys.com +
+
+
+
+
+
+
+
+ +
+ WhatsApp +

Say hi to us on WhatsApp!

+
+91 + 99456767686
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/order_invoice_manual_link/views/account_move_views.xml b/order_invoice_manual_link/views/account_move_views.xml new file mode 100644 index 000000000..ce9e09b56 --- /dev/null +++ b/order_invoice_manual_link/views/account_move_views.xml @@ -0,0 +1,14 @@ + + + + account.move.view.form.inherit.order.invoice.manual.link + account.move + + + + + + + + diff --git a/order_invoice_manual_link/views/sale_order_views.xml b/order_invoice_manual_link/views/sale_order_views.xml new file mode 100644 index 000000000..0a2b469e9 --- /dev/null +++ b/order_invoice_manual_link/views/sale_order_views.xml @@ -0,0 +1,51 @@ + + + + + sale.order.view.form.inherit.order.invoice.manual.link + sale.order + + + + + + + + + + + + + + + + +