diff --git a/sale_invoice_detail/README.rst b/sale_invoice_detail/README.rst new file mode 100644 index 000000000..8e2611f52 --- /dev/null +++ b/sale_invoice_detail/README.rst @@ -0,0 +1,47 @@ +.. 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 + +Advanced Invoice Details on Sale order +====================================== +This module allow to view invoice details on sale order. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +* Developers: (V16) Developer Raveena Vijayan V, + (V17) Developer Anurudh P + 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/sale_invoice_detail/__init__.py b/sale_invoice_detail/__init__.py new file mode 100644 index 000000000..496e1967f --- /dev/null +++ b/sale_invoice_detail/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anurudh P (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/sale_invoice_detail/__manifest__.py b/sale_invoice_detail/__manifest__.py new file mode 100644 index 000000000..0fd9c7813 --- /dev/null +++ b/sale_invoice_detail/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anurudh P (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': 'Advanced Invoice Details on Sale order', + 'version': '17.0.1.0.0', + 'summary': "Invoice Details on Sale order", + 'description': "You can view the Invoiced amount," + " Paid amount and Due amount on sale orders list view," + " also you can change the amount to pay", + 'category': 'Sale', + 'author': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': [ + 'sale_management', 'account' + ], + 'data': [ + 'views/sale_order.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/sale_invoice_detail/doc/RELEASE_NOTES.md b/sale_invoice_detail/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..50b6b4421 --- /dev/null +++ b/sale_invoice_detail/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 02.05.2024 +#### Version 17.0.1.0.0 +##### ADD + +- Initial Commit for Advanced Invoice Details on Sale order diff --git a/sale_invoice_detail/models/__init__.py b/sale_invoice_detail/models/__init__.py new file mode 100644 index 000000000..5be2b7168 --- /dev/null +++ b/sale_invoice_detail/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anurudh P (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 diff --git a/sale_invoice_detail/models/sale_order.py b/sale_invoice_detail/models/sale_order.py new file mode 100644 index 000000000..3c6f46d6e --- /dev/null +++ b/sale_invoice_detail/models/sale_order.py @@ -0,0 +1,63 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anurudh P (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 + + +class SaleOrder(models.Model): + """inherited model sale order for customising """ + + _inherit = 'sale.order' + + invoiced_amount = fields.Float("Invoiced Amount", + compute="_compute_invoice_amount", + help="Invoiced Amount for the Order") + due_amount = fields.Float("Due Amount", help="Due amount in the invoice") + paid_amount = fields.Float("Paid Amount", help="Paid amount") + paid_amount_percent = fields.Float("Paid Amount in %", + compute="_compute_paid_amount_percent", + help="Paid amount in percentage") + + def _compute_invoice_amount(self): + """ function for computing the invoice amount""" + for rec in self: + rec.invoiced_amount = 0.0 + rec.paid_amount = 0.0 + rec.due_amount = 0.0 + if rec.invoice_ids: + inv = self.env['account.move'].search([ + ('id', 'in', rec.invoice_ids.ids)]) + for r in inv: + rec.invoiced_amount += r.amount_total + rec.paid_amount += r.amount_total - r.amount_residual + rec.due_amount = rec.amount_total - rec.paid_amount + + def _compute_paid_amount_percent(self): + """function for computing paid amount in percentage""" + for rec in self: + rec.paid_amount_percent = 0.0 + if rec.invoice_ids: + inv = self.env['account.move'].search( + [('id', 'in', rec.invoice_ids.ids)]) + p_amount = 0 + for r in inv: + p_amount += r.amount_total - r.amount_residual + rec.paid_amount_percent = (p_amount/rec.amount_total)*100 diff --git a/sale_invoice_detail/static/description/assets/icons/capture (1).png b/sale_invoice_detail/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/capture (1).png differ diff --git a/sale_invoice_detail/static/description/assets/icons/check.png b/sale_invoice_detail/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/check.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/chevron.png b/sale_invoice_detail/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/chevron.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/cogs.png b/sale_invoice_detail/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/cogs.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/consultation.png b/sale_invoice_detail/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/consultation.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/ecom-black.png b/sale_invoice_detail/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/ecom-black.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/education-black.png b/sale_invoice_detail/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/education-black.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/hotel-black.png b/sale_invoice_detail/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/hotel-black.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/img.png b/sale_invoice_detail/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/img.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/license.png b/sale_invoice_detail/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/license.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/lifebuoy.png b/sale_invoice_detail/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/lifebuoy.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/manufacturing-black.png b/sale_invoice_detail/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/manufacturing-black.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/photo-capture.png b/sale_invoice_detail/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/photo-capture.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/pos-black.png b/sale_invoice_detail/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/pos-black.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/puzzle.png b/sale_invoice_detail/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/puzzle.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/restaurant-black.png b/sale_invoice_detail/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/restaurant-black.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/service-black.png b/sale_invoice_detail/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/service-black.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/trading-black.png b/sale_invoice_detail/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/trading-black.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/training.png b/sale_invoice_detail/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/training.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/update.png b/sale_invoice_detail/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/update.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/user.png b/sale_invoice_detail/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/user.png differ diff --git a/sale_invoice_detail/static/description/assets/icons/wrench.png b/sale_invoice_detail/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/sale_invoice_detail/static/description/assets/icons/wrench.png differ diff --git a/sale_invoice_detail/static/description/assets/misc/Cybrosys R.png b/sale_invoice_detail/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/misc/Cybrosys R.png differ diff --git a/sale_invoice_detail/static/description/assets/misc/email.svg b/sale_invoice_detail/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/sale_invoice_detail/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sale_invoice_detail/static/description/assets/misc/phone.svg b/sale_invoice_detail/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/sale_invoice_detail/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/sale_invoice_detail/static/description/assets/misc/star (1) 2.svg b/sale_invoice_detail/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/sale_invoice_detail/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sale_invoice_detail/static/description/assets/misc/support (1) 1.svg b/sale_invoice_detail/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/sale_invoice_detail/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sale_invoice_detail/static/description/assets/misc/support-email.svg b/sale_invoice_detail/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/sale_invoice_detail/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/sale_invoice_detail/static/description/assets/misc/tick-mark.svg b/sale_invoice_detail/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/sale_invoice_detail/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sale_invoice_detail/static/description/assets/misc/whatsapp 1.svg b/sale_invoice_detail/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/sale_invoice_detail/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sale_invoice_detail/static/description/assets/misc/whatsapp.svg b/sale_invoice_detail/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/sale_invoice_detail/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sale_invoice_detail/static/description/assets/modules/1.png b/sale_invoice_detail/static/description/assets/modules/1.png new file mode 100644 index 000000000..6cebeb2e3 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/modules/1.png differ diff --git a/sale_invoice_detail/static/description/assets/modules/2.png b/sale_invoice_detail/static/description/assets/modules/2.png new file mode 100644 index 000000000..97a95f263 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/modules/2.png differ diff --git a/sale_invoice_detail/static/description/assets/modules/3.png b/sale_invoice_detail/static/description/assets/modules/3.png new file mode 100644 index 000000000..3ee809af0 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/modules/3.png differ diff --git a/sale_invoice_detail/static/description/assets/modules/4.png b/sale_invoice_detail/static/description/assets/modules/4.png new file mode 100644 index 000000000..bda40f933 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/modules/4.png differ diff --git a/sale_invoice_detail/static/description/assets/modules/5.png b/sale_invoice_detail/static/description/assets/modules/5.png new file mode 100644 index 000000000..286367550 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/modules/5.png differ diff --git a/sale_invoice_detail/static/description/assets/modules/6.png b/sale_invoice_detail/static/description/assets/modules/6.png new file mode 100644 index 000000000..2275c150a Binary files /dev/null and b/sale_invoice_detail/static/description/assets/modules/6.png differ diff --git a/sale_invoice_detail/static/description/assets/screenshots/1.png b/sale_invoice_detail/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..b0d8e3419 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/screenshots/1.png differ diff --git a/sale_invoice_detail/static/description/assets/screenshots/2.png b/sale_invoice_detail/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..4532a7a22 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/screenshots/2.png differ diff --git a/sale_invoice_detail/static/description/assets/screenshots/3.png b/sale_invoice_detail/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..da0fa9b95 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/screenshots/3.png differ diff --git a/sale_invoice_detail/static/description/assets/screenshots/4.png b/sale_invoice_detail/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..4a5e3aa53 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/screenshots/4.png differ diff --git a/sale_invoice_detail/static/description/assets/screenshots/5.png b/sale_invoice_detail/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..f62c105ea Binary files /dev/null and b/sale_invoice_detail/static/description/assets/screenshots/5.png differ diff --git a/sale_invoice_detail/static/description/assets/screenshots/6.png b/sale_invoice_detail/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..f96c2e9a2 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/screenshots/6.png differ diff --git a/sale_invoice_detail/static/description/assets/screenshots/7.png b/sale_invoice_detail/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..6045d61a4 Binary files /dev/null and b/sale_invoice_detail/static/description/assets/screenshots/7.png differ diff --git a/sale_invoice_detail/static/description/assets/screenshots/hero.gif b/sale_invoice_detail/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..20867d8db Binary files /dev/null and b/sale_invoice_detail/static/description/assets/screenshots/hero.gif differ diff --git a/sale_invoice_detail/static/description/banner.png b/sale_invoice_detail/static/description/banner.png new file mode 100644 index 000000000..c662f8e92 Binary files /dev/null and b/sale_invoice_detail/static/description/banner.png differ diff --git a/sale_invoice_detail/static/description/icon.png b/sale_invoice_detail/static/description/icon.png new file mode 100644 index 000000000..8370a0acf Binary files /dev/null and b/sale_invoice_detail/static/description/icon.png differ diff --git a/sale_invoice_detail/static/description/index.html b/sale_invoice_detail/static/description/index.html new file mode 100644 index 000000000..eb1c1a92a --- /dev/null +++ b/sale_invoice_detail/static/description/index.html @@ -0,0 +1,490 @@ + + + + + + + Advanced Invoice Details on Sale order + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Advanced Invoice Details on Sale order

+

+ You can view the Invoiced Amount, Paid Amount and Due Amount on sale orders list view. + +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

View the Invoiced Amount

+

This module helps you to view the Invoiced Amount. +

+
+
+
+
+
+
+ +
+
+

Advanced list view

+

Paid Amount and Due Amount on sale orders list view. +

+
+
+
+
+
+
+ +
+
+

Percentage of amount paid in sale order

+

The percentage of amount paid can be viewed on the sale order. +

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

+ You can see the Invoiced Amount, Paid Amount and Due Amount.

+
+
+
+
+
+
+ +
+
+

+ Create Sale order, confirm it to create the invoice.

+
+
+
+
+
+
+ +
+
+

+ You can confirm the invoice and register the payment.

+
+
+
+
+
+
+ +
+
+

+ You can change the amount to pay.

+
+
+
+
+
+
+ +
+
+

+ Since the invoiced amount is not fully paid, it shows the Partial paid Ribbon.

+
+
+
+
+
+
+ +
+
+

+ You can view the percentage of amount paid on the sale order as a smart button.

+
+
+
+
+
+
+ +
+
+

+ The invoice details can be seen on the list view.

+
+
+
+
+
+
+
    +
  • + You can view the Invoiced amount, Paid amount and Due amount on sale orders list view. +
  • +
  • + You can view the percentage of paid amount on the sale order. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:22nd Jan 2024 +
+

+ Initial Commit for Advanced Invoice Details on Sale order.

+
+
+
+
+
+
+
+

Related Products

+
+
+ +
+
+

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/sale_invoice_detail/views/sale_order.xml b/sale_invoice_detail/views/sale_order.xml new file mode 100644 index 000000000..a6ff371dd --- /dev/null +++ b/sale_invoice_detail/views/sale_order.xml @@ -0,0 +1,39 @@ + + + + + + sale.order.view.tree.inherit.sale.invoice.detail + sale.order + + + + + + + + + + + + sale.order.view.form.inherit.sale.invoice.detail + sale.order + + + + + + + + +