diff --git a/customer_so_history/README.rst b/customer_so_history/README.rst new file mode 100644 index 000000000..7506f5fe1 --- /dev/null +++ b/customer_so_history/README.rst @@ -0,0 +1,49 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 +Customer Sale Order History +=========================== +* Customer Sale Order History for Odoo 17 + +Installation +============ +- www.odoo.com/documentation/17.0/setup/install.html +- Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/user/13.0/legal/licenses/licenses.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developers : (V17) Ajith V, + (V16) Ajith V, + (V15) Athul +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/customer_so_history/__init__.py b/customer_so_history/__init__.py new file mode 100644 index 000000000..097bdb395 --- /dev/null +++ b/customer_so_history/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/customer_so_history/__manifest__.py b/customer_so_history/__manifest__.py new file mode 100644 index 000000000..ed245d9a3 --- /dev/null +++ b/customer_so_history/__manifest__.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +{ + 'name': 'Customer Sale Order History', + 'version': '17.0.1.0.0', + 'summary': 'Customer Sale Order History for Odoo 17', + 'description': """Customer Sale Order History for Odoo 17""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'category': 'Sales', + 'website': 'https://www.cybrosys.com', + 'depends': ['sale_management'], + 'data': [ + 'security/ir.model.access.csv', + 'views/sale_order_inherit.xml' + ], + 'images': ['static/description/banner.png'], + 'installable': True, + 'application': True, + 'license': 'LGPL-3', +} diff --git a/customer_so_history/doc/RELEASE_NOTES.md b/customer_so_history/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..5d38f0e63 --- /dev/null +++ b/customer_so_history/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 10.09.2024 +#### Version 17.1.0.0 +##### ADD +- Initial Commit for Customer Sale Order History diff --git a/customer_so_history/models/__init__.py b/customer_so_history/models/__init__.py new file mode 100644 index 000000000..ded378bda --- /dev/null +++ b/customer_so_history/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import sale_order +from . import order_history_line diff --git a/customer_so_history/models/order_history_line.py b/customer_so_history/models/order_history_line.py new file mode 100644 index 000000000..b3ea4eeb0 --- /dev/null +++ b/customer_so_history/models/order_history_line.py @@ -0,0 +1,69 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class OrderHistoryLine(models.Model): + _name = 'order.history.line' + _description = 'Order History Line' + + order_id = fields.Many2one('sale.order', help="Related Sale order") + name = fields.Char('Order', help="Order history line name") + product_id = fields.Many2one('product.product', help="Related Product") + product_uom_qty = fields.Integer('Quantity', help="Product Quantity Ordered") + price_unit = fields.Integer('Unit price', help="Product Unit Price Ordered") + tax_id = fields.Many2many('account.tax', help="Tax applied") + company_id = fields.Many2one('res.company', + default=lambda self: self.env.company, help="Related company") + price_subtotal = fields.Integer(string='Subtotal', help="Subtotal of the Placed Order") + + def action_add(self): + """ + Creates a new sale order line with the current form data. + + This method collects the current values from the form (such as `order_id`, + `product_id`, `product_uom_qty`, `price_unit`, `tax_id`, `price_subtotal`, + and `company_id`) and creates a new record in the `sale.order.line` model. + + Fields Used: + - order_id: The ID of the associated sale order. + - product_id: The ID of the product being sold. + - product_uom_qty: The quantity of the product in the specified unit of measure. + - price_unit: The unit price of the product. + - tax_id: The list of applicable taxes for the product. + - price_subtotal: The subtotal price after calculating quantities and taxes. + - company_id: The ID of the company for the sale order line. + + This method uses `sudo()` to bypass access restrictions and allows the creation + of sale order lines even for users with limited permissions. + + """ + vals = { + 'order_id':self.order_id.id, + 'product_id':self.product_id.id, + 'product_uom_qty':self.product_uom_qty, + 'price_unit':self.price_unit, + 'tax_id': self.tax_id.ids, + 'price_subtotal': self.price_subtotal, + 'company_id': self.company_id.id, + } + self.env['sale.order.line'].sudo().create(vals) diff --git a/customer_so_history/models/sale_order.py b/customer_so_history/models/sale_order.py new file mode 100644 index 000000000..adf12ad2f --- /dev/null +++ b/customer_so_history/models/sale_order.py @@ -0,0 +1,68 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, fields, models + + +class SaleOrder(models.Model): + _inherit = 'sale.order' + + order_details_ids = fields.One2many('order.history.line', 'order_id') + + @api.onchange('partner_id') + def sale_order_domain(self): + """ + Updates the sale order lines based on the selected partner. + + This method is triggered when the `partner_id` field changes. If a partner is selected, + it searches for all sale order lines associated with the partner's completed or confirmed + sale orders ('sale' or 'done' states). It then creates new lines based on the retrieved + sale orders and updates the `order_details_ids` field with these new lines. + + If no partner is selected, it clears the `order_details_ids` field. + + Fields Updated: + - order_details_ids: A list of order lines (product, quantity, unit price, tax, and subtotal) + associated with the partner's completed or confirmed orders. + + Behavior: + - Adds new order lines when a partner is selected. + - Clears the order details if no partner is selected. + + """ + if self.partner_id: + new_lines = [] + lines = self.env['sale.order.line'].search( + [('order_id.partner_id', '=', self.partner_id.id), + ('order_id.state', 'in', ('sale', 'done'))]) + for rec in lines: + new_lines.append(fields.Command.create({ + 'name': rec.order_id.name, + 'product_id': rec.product_id, + 'product_uom_qty': rec.product_uom_qty, + 'price_unit': rec.price_unit, + 'tax_id': [ + fields.Command.set([line.id for line in rec.tax_id])], + 'price_subtotal': rec.price_subtotal + })) + self.write({'order_details_ids': new_lines}) + else: + self.write({'order_details_ids': [fields.Command.clear()]}) diff --git a/customer_so_history/security/ir.model.access.csv b/customer_so_history/security/ir.model.access.csv new file mode 100644 index 000000000..5a01a5c9b --- /dev/null +++ b/customer_so_history/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_order_history_line,access.order.history.line,model_order_history_line,,1,1,1,1 diff --git a/customer_so_history/static/description/assets/icons/capture (1).png b/customer_so_history/static/description/assets/icons/capture (1).png new file mode 100755 index 000000000..8824deafc Binary files /dev/null and b/customer_so_history/static/description/assets/icons/capture (1).png differ diff --git a/customer_so_history/static/description/assets/icons/check.png b/customer_so_history/static/description/assets/icons/check.png new file mode 100755 index 000000000..c8e85f51d Binary files /dev/null and b/customer_so_history/static/description/assets/icons/check.png differ diff --git a/customer_so_history/static/description/assets/icons/chevron.png b/customer_so_history/static/description/assets/icons/chevron.png new file mode 100755 index 000000000..2089293d6 Binary files /dev/null and b/customer_so_history/static/description/assets/icons/chevron.png differ diff --git a/customer_so_history/static/description/assets/icons/cogs.png b/customer_so_history/static/description/assets/icons/cogs.png new file mode 100755 index 000000000..95d0bad62 Binary files /dev/null and b/customer_so_history/static/description/assets/icons/cogs.png differ diff --git a/customer_so_history/static/description/assets/icons/consultation.png b/customer_so_history/static/description/assets/icons/consultation.png new file mode 100755 index 000000000..8319d4baa Binary files /dev/null and b/customer_so_history/static/description/assets/icons/consultation.png differ diff --git a/customer_so_history/static/description/assets/icons/ecom-black.png b/customer_so_history/static/description/assets/icons/ecom-black.png new file mode 100755 index 000000000..a9385ff13 Binary files /dev/null and b/customer_so_history/static/description/assets/icons/ecom-black.png differ diff --git a/customer_so_history/static/description/assets/icons/education-black.png b/customer_so_history/static/description/assets/icons/education-black.png new file mode 100755 index 000000000..3eb09b27b Binary files /dev/null and b/customer_so_history/static/description/assets/icons/education-black.png differ diff --git a/customer_so_history/static/description/assets/icons/hotel-black.png b/customer_so_history/static/description/assets/icons/hotel-black.png new file mode 100755 index 000000000..130f613be Binary files /dev/null and b/customer_so_history/static/description/assets/icons/hotel-black.png differ diff --git a/customer_so_history/static/description/assets/icons/img.png b/customer_so_history/static/description/assets/icons/img.png new file mode 100755 index 000000000..70197f477 Binary files /dev/null and b/customer_so_history/static/description/assets/icons/img.png differ diff --git a/customer_so_history/static/description/assets/icons/license.png b/customer_so_history/static/description/assets/icons/license.png new file mode 100755 index 000000000..a5869797e Binary files /dev/null and b/customer_so_history/static/description/assets/icons/license.png differ diff --git a/customer_so_history/static/description/assets/icons/lifebuoy.png b/customer_so_history/static/description/assets/icons/lifebuoy.png new file mode 100755 index 000000000..658d56ccc Binary files /dev/null and b/customer_so_history/static/description/assets/icons/lifebuoy.png differ diff --git a/customer_so_history/static/description/assets/icons/manufacturing-black.png b/customer_so_history/static/description/assets/icons/manufacturing-black.png new file mode 100755 index 000000000..697eb0e9f Binary files /dev/null and b/customer_so_history/static/description/assets/icons/manufacturing-black.png differ diff --git a/customer_so_history/static/description/assets/icons/photo-capture.png b/customer_so_history/static/description/assets/icons/photo-capture.png new file mode 100755 index 000000000..06c111758 Binary files /dev/null and b/customer_so_history/static/description/assets/icons/photo-capture.png differ diff --git a/customer_so_history/static/description/assets/icons/pos-black.png b/customer_so_history/static/description/assets/icons/pos-black.png new file mode 100755 index 000000000..97c0f90c1 Binary files /dev/null and b/customer_so_history/static/description/assets/icons/pos-black.png differ diff --git a/customer_so_history/static/description/assets/icons/puzzle.png b/customer_so_history/static/description/assets/icons/puzzle.png new file mode 100755 index 000000000..65cf854e7 Binary files /dev/null and b/customer_so_history/static/description/assets/icons/puzzle.png differ diff --git a/customer_so_history/static/description/assets/icons/restaurant-black.png b/customer_so_history/static/description/assets/icons/restaurant-black.png new file mode 100755 index 000000000..4a35eb939 Binary files /dev/null and b/customer_so_history/static/description/assets/icons/restaurant-black.png differ diff --git a/customer_so_history/static/description/assets/icons/service-black.png b/customer_so_history/static/description/assets/icons/service-black.png new file mode 100755 index 000000000..301ab51cb Binary files /dev/null and b/customer_so_history/static/description/assets/icons/service-black.png differ diff --git a/customer_so_history/static/description/assets/icons/trading-black.png b/customer_so_history/static/description/assets/icons/trading-black.png new file mode 100755 index 000000000..9398ba2f1 Binary files /dev/null and b/customer_so_history/static/description/assets/icons/trading-black.png differ diff --git a/customer_so_history/static/description/assets/icons/training.png b/customer_so_history/static/description/assets/icons/training.png new file mode 100755 index 000000000..884ca024d Binary files /dev/null and b/customer_so_history/static/description/assets/icons/training.png differ diff --git a/customer_so_history/static/description/assets/icons/update.png b/customer_so_history/static/description/assets/icons/update.png new file mode 100755 index 000000000..ecbc5a01a Binary files /dev/null and b/customer_so_history/static/description/assets/icons/update.png differ diff --git a/customer_so_history/static/description/assets/icons/user.png b/customer_so_history/static/description/assets/icons/user.png new file mode 100755 index 000000000..6ffb23d9f Binary files /dev/null and b/customer_so_history/static/description/assets/icons/user.png differ diff --git a/customer_so_history/static/description/assets/icons/wrench.png b/customer_so_history/static/description/assets/icons/wrench.png new file mode 100755 index 000000000..6c04dea0f Binary files /dev/null and b/customer_so_history/static/description/assets/icons/wrench.png differ diff --git a/customer_so_history/static/description/assets/misc/Cybrosys R.png b/customer_so_history/static/description/assets/misc/Cybrosys R.png new file mode 100755 index 000000000..da4058087 Binary files /dev/null and b/customer_so_history/static/description/assets/misc/Cybrosys R.png differ diff --git a/customer_so_history/static/description/assets/misc/email.svg b/customer_so_history/static/description/assets/misc/email.svg new file mode 100755 index 000000000..15291cdc3 --- /dev/null +++ b/customer_so_history/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/customer_so_history/static/description/assets/misc/phone.svg b/customer_so_history/static/description/assets/misc/phone.svg new file mode 100755 index 000000000..b7bd7f251 --- /dev/null +++ b/customer_so_history/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/customer_so_history/static/description/assets/misc/star (1) 2.svg b/customer_so_history/static/description/assets/misc/star (1) 2.svg new file mode 100755 index 000000000..5ae9f507a --- /dev/null +++ b/customer_so_history/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/customer_so_history/static/description/assets/misc/support (1) 1.svg b/customer_so_history/static/description/assets/misc/support (1) 1.svg new file mode 100755 index 000000000..7d37a8f30 --- /dev/null +++ b/customer_so_history/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/customer_so_history/static/description/assets/misc/support-email.svg b/customer_so_history/static/description/assets/misc/support-email.svg new file mode 100755 index 000000000..eb70370d6 --- /dev/null +++ b/customer_so_history/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/customer_so_history/static/description/assets/misc/tick-mark.svg b/customer_so_history/static/description/assets/misc/tick-mark.svg new file mode 100755 index 000000000..2dbb40187 --- /dev/null +++ b/customer_so_history/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/customer_so_history/static/description/assets/misc/whatsapp 1.svg b/customer_so_history/static/description/assets/misc/whatsapp 1.svg new file mode 100755 index 000000000..0bfaf8fc6 --- /dev/null +++ b/customer_so_history/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/customer_so_history/static/description/assets/misc/whatsapp.svg b/customer_so_history/static/description/assets/misc/whatsapp.svg new file mode 100755 index 000000000..b618aea1d --- /dev/null +++ b/customer_so_history/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/customer_so_history/static/description/assets/modules/l1.png b/customer_so_history/static/description/assets/modules/l1.png new file mode 100755 index 000000000..ca9e86ba7 Binary files /dev/null and b/customer_so_history/static/description/assets/modules/l1.png differ diff --git a/customer_so_history/static/description/assets/modules/l2.png b/customer_so_history/static/description/assets/modules/l2.png new file mode 100755 index 000000000..4774e32ee Binary files /dev/null and b/customer_so_history/static/description/assets/modules/l2.png differ diff --git a/customer_so_history/static/description/assets/modules/l3.png b/customer_so_history/static/description/assets/modules/l3.png new file mode 100755 index 000000000..b17a2667d Binary files /dev/null and b/customer_so_history/static/description/assets/modules/l3.png differ diff --git a/customer_so_history/static/description/assets/modules/l4.png b/customer_so_history/static/description/assets/modules/l4.png new file mode 100755 index 000000000..968bd03c9 Binary files /dev/null and b/customer_so_history/static/description/assets/modules/l4.png differ diff --git a/customer_so_history/static/description/assets/modules/l5.png b/customer_so_history/static/description/assets/modules/l5.png new file mode 100755 index 000000000..f68b76095 Binary files /dev/null and b/customer_so_history/static/description/assets/modules/l5.png differ diff --git a/customer_so_history/static/description/assets/modules/l6.png b/customer_so_history/static/description/assets/modules/l6.png new file mode 100755 index 000000000..eb16e49d0 Binary files /dev/null and b/customer_so_history/static/description/assets/modules/l6.png differ diff --git a/customer_so_history/static/description/assets/screenshots/1.png b/customer_so_history/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..596680a1e Binary files /dev/null and b/customer_so_history/static/description/assets/screenshots/1.png differ diff --git a/customer_so_history/static/description/assets/screenshots/2.png b/customer_so_history/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..1120b70cd Binary files /dev/null and b/customer_so_history/static/description/assets/screenshots/2.png differ diff --git a/customer_so_history/static/description/assets/screenshots/hero-v17.gif b/customer_so_history/static/description/assets/screenshots/hero-v17.gif new file mode 100644 index 000000000..185fd1410 Binary files /dev/null and b/customer_so_history/static/description/assets/screenshots/hero-v17.gif differ diff --git a/customer_so_history/static/description/banner.jpg b/customer_so_history/static/description/banner.jpg new file mode 100644 index 000000000..6e4debc75 Binary files /dev/null and b/customer_so_history/static/description/banner.jpg differ diff --git a/customer_so_history/static/description/icon.png b/customer_so_history/static/description/icon.png new file mode 100644 index 000000000..6d11ffcca Binary files /dev/null and b/customer_so_history/static/description/icon.png differ diff --git a/customer_so_history/static/description/index.html b/customer_so_history/static/description/index.html new file mode 100755 index 000000000..b5dd2272e --- /dev/null +++ b/customer_so_history/static/description/index.html @@ -0,0 +1,631 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Customer Sale Order History

+

+ shows customer's sale order history +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Sale Order History

+
+
+
+
+
+
+ +
+
+

+ Directly add products into Sale order line from + History

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

+ Shows the previous sale order history of + selected Customer +

+
+
+
+
+
+
+ +
+
+

+ Using 'Add' users can add products directly + into Sale order Line +

+
+
+
+
+
+
+
    +
  • + Sale Order + History +
  • +
  • + Directly add + products into Sale order line from History +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:10th September 2024 +
+

+ Initial Commit for Customer Sale Order + History

+
+
+
+
+
+
+
+

+ 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/customer_so_history/views/sale_order_inherit.xml b/customer_so_history/views/sale_order_inherit.xml new file mode 100644 index 000000000..7ccfee749 --- /dev/null +++ b/customer_so_history/views/sale_order_inherit.xml @@ -0,0 +1,35 @@ + + + + + sale.order.form.view.inherit.customer.so.history + sale.order + + + + + + + + + + + + + +