diff --git a/order_line_note/README.rst b/order_line_note/README.rst new file mode 100755 index 000000000..293ad8712 --- /dev/null +++ b/order_line_note/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Order Line Notes +================ +* The Order Line Notes module is used to add notes to sale and purchase order lines, which can also be viewed in the sales and purchase order reports. + +Installation +============ + - www.odoo.com/documentation/15.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: (V16) Afra MP, + (V15) Adarsh K, + Contact: odoo@cybrosys.com + +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 https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ + diff --git a/order_line_note/__init__.py b/order_line_note/__init__.py new file mode 100644 index 000000000..dde810730 --- /dev/null +++ b/order_line_note/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Adarsh K (odoo@cybrosys.com) +# +# 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/order_line_note/__manifest__.py b/order_line_note/__manifest__.py new file mode 100644 index 000000000..f316f6158 --- /dev/null +++ b/order_line_note/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Adarsh K (odoo@cybrosys.com) +# +# 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': 'Order Line Notes', + 'version': '15.0.1.0.0', + 'category': 'Sales,Purchases,Productivity', + 'summary': """This module is used to add note for product.""", + 'description': """The Order Line Notes module is used to add notes to + sale and purchase order lines, which can be viewed in the sales and purchase + order reports and also view in Transfers & Invoices.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base', 'sale_management', 'purchase', 'stock'], + 'data': [ + 'report/ir_actions_report_templates.xml', + 'report/purchase_order_templates.xml', + 'report/purchase_quotation_templates.xml', + 'views/account_move_views.xml', + 'views/purchase_order_views.xml', + 'views/sale_order_views.xml', + 'views/stock_picking_views.xml' + ], + 'images': ['static/description/banner.jpg'], + 'License': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/order_line_note/doc/RELEASE_NOTES.md b/order_line_note/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..e80909ecc --- /dev/null +++ b/order_line_note/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 27.06.2024 +#### Version 15.0.1.0.0 +#### ADD +- Initial commit for Order Line Notes diff --git a/order_line_note/models/__init__.py b/order_line_note/models/__init__.py new file mode 100644 index 000000000..86fbff479 --- /dev/null +++ b/order_line_note/models/__init__.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Adarsh K (odoo@cybrosys.com) +# +# 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_line +from . import purchase_order +from . import purchase_order_line +from . import sale_order +from . import sale_order_line +from . import stock_move diff --git a/order_line_note/models/account_move_line.py b/order_line_note/models/account_move_line.py new file mode 100644 index 000000000..4ab0f6b38 --- /dev/null +++ b/order_line_note/models/account_move_line.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Adarsh K (odoo@cybrosys.com) +# +# 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 AccountMoveLine(models.Model): + """Inherited account.move.line to add field""" + _inherit = 'account.move.line' + + note = fields.Text(string='Note', readonly=True, + help='A field to store additional notes or comments.') diff --git a/order_line_note/models/purchase_order.py b/order_line_note/models/purchase_order.py new file mode 100644 index 000000000..ab941ad0d --- /dev/null +++ b/order_line_note/models/purchase_order.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Adarsh K (odoo@cybrosys.com) +# +# 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 PurchaseOrder(models.Model): + """This class extends the 'purchase.order' model to add additional + functionality related to purchase orders.""" + _inherit = 'purchase.order' + + def button_confirm(self): + """Override of the button_confirm method to copy notes from purchase + order lines to correspond stock moves.""" + res = super().button_confirm() + for rec in self.order_line: + self.env['stock.move'].search([('purchase_line_id', '=', rec.id)])[ + 'note'] = rec.note + return res + + def action_create_invoice(self): + """Override of the action_create_invoice method to copy notes from + purchase order lines to correspond account move lines.""" + res = super().action_create_invoice() + for rec in self.order_line: + self.env['account.move.line'].search( + [('purchase_line_id', '=', rec.id)])[ + 'note'] = rec.note + return res diff --git a/order_line_note/models/purchase_order_line.py b/order_line_note/models/purchase_order_line.py new file mode 100644 index 000000000..4d0d2c689 --- /dev/null +++ b/order_line_note/models/purchase_order_line.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Adarsh K (odoo@cybrosys.com) +# +# 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 PurchaseOrderLine(models.Model): + """Inherited purchase.order.line to add field""" + _inherit = 'purchase.order.line' + + note = fields.Text(string='Note', help='Add note for product') diff --git a/order_line_note/models/sale_order.py b/order_line_note/models/sale_order.py new file mode 100644 index 000000000..0ecdce1e2 --- /dev/null +++ b/order_line_note/models/sale_order.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Adarsh K (odoo@cybrosys.com) +# +# 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 SaleOrder(models.Model): + """This class extends the 'sale.order' model to customize the behavior of + confirming sale orders.""" + _inherit = 'sale.order' + + def action_confirm(self): + """This method extends the base 'action_confirm' method to copy notes + from sale order lines to related stock moves.""" + res = super().action_confirm() + for rec in self.order_line: + self.env['stock.move'].search([('sale_line_id', '=', rec.id)])[ + 'note'] = rec.note + return res diff --git a/order_line_note/models/sale_order_line.py b/order_line_note/models/sale_order_line.py new file mode 100644 index 000000000..6263c56ba --- /dev/null +++ b/order_line_note/models/sale_order_line.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Adarsh K (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class SaleOrderLine(models.Model): + """Inherited sale.order.line to add field""" + _inherit = 'sale.order.line' + + note = fields.Text(string='Note', help='Add note for product') + + def _prepare_invoice_line(self, **optional_values): + """This method is called to prepare the values required for creating + an invoice line based on the sale order line.""" + res = super(SaleOrderLine,self)._prepare_invoice_line(**optional_values) + res['note'] = self.note + return res diff --git a/order_line_note/models/stock_move.py b/order_line_note/models/stock_move.py new file mode 100644 index 000000000..a31c6e50d --- /dev/null +++ b/order_line_note/models/stock_move.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Adarsh K (odoo@cybrosys.com) +# +# 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 StockMove(models.Model): + """Inherited stock_move to add custom field""" + _inherit = 'stock.move' + + note = fields.Text(string='Note', readonly=True, + help='A field to store additional notes or comments.') diff --git a/order_line_note/report/ir_actions_report_templates.xml b/order_line_note/report/ir_actions_report_templates.xml new file mode 100644 index 000000000..81285058a --- /dev/null +++ b/order_line_note/report/ir_actions_report_templates.xml @@ -0,0 +1,14 @@ + + + + + diff --git a/order_line_note/report/purchase_order_templates.xml b/order_line_note/report/purchase_order_templates.xml new file mode 100644 index 000000000..bda8c84ce --- /dev/null +++ b/order_line_note/report/purchase_order_templates.xml @@ -0,0 +1,15 @@ + + + + + diff --git a/order_line_note/report/purchase_quotation_templates.xml b/order_line_note/report/purchase_quotation_templates.xml new file mode 100644 index 000000000..53d3199b5 --- /dev/null +++ b/order_line_note/report/purchase_quotation_templates.xml @@ -0,0 +1,13 @@ + + + + + diff --git a/order_line_note/static/description/assets/icons/check.png b/order_line_note/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/order_line_note/static/description/assets/icons/check.png differ diff --git a/order_line_note/static/description/assets/icons/chevron.png b/order_line_note/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/order_line_note/static/description/assets/icons/chevron.png differ diff --git a/order_line_note/static/description/assets/icons/cogs.png b/order_line_note/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/order_line_note/static/description/assets/icons/cogs.png differ diff --git a/order_line_note/static/description/assets/icons/consultation.png b/order_line_note/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/order_line_note/static/description/assets/icons/consultation.png differ diff --git a/order_line_note/static/description/assets/icons/ecom-black.png b/order_line_note/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/order_line_note/static/description/assets/icons/ecom-black.png differ diff --git a/order_line_note/static/description/assets/icons/education-black.png b/order_line_note/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/order_line_note/static/description/assets/icons/education-black.png differ diff --git a/order_line_note/static/description/assets/icons/hotel-black.png b/order_line_note/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/order_line_note/static/description/assets/icons/hotel-black.png differ diff --git a/order_line_note/static/description/assets/icons/license.png b/order_line_note/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/order_line_note/static/description/assets/icons/license.png differ diff --git a/order_line_note/static/description/assets/icons/lifebuoy.png b/order_line_note/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/order_line_note/static/description/assets/icons/lifebuoy.png differ diff --git a/order_line_note/static/description/assets/icons/manufacturing-black.png b/order_line_note/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/order_line_note/static/description/assets/icons/manufacturing-black.png differ diff --git a/order_line_note/static/description/assets/icons/pos-black.png b/order_line_note/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/order_line_note/static/description/assets/icons/pos-black.png differ diff --git a/order_line_note/static/description/assets/icons/puzzle.png b/order_line_note/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/order_line_note/static/description/assets/icons/puzzle.png differ diff --git a/order_line_note/static/description/assets/icons/restaurant-black.png b/order_line_note/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/order_line_note/static/description/assets/icons/restaurant-black.png differ diff --git a/order_line_note/static/description/assets/icons/service-black.png b/order_line_note/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/order_line_note/static/description/assets/icons/service-black.png differ diff --git a/order_line_note/static/description/assets/icons/trading-black.png b/order_line_note/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/order_line_note/static/description/assets/icons/trading-black.png differ diff --git a/order_line_note/static/description/assets/icons/training.png b/order_line_note/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/order_line_note/static/description/assets/icons/training.png differ diff --git a/order_line_note/static/description/assets/icons/update.png b/order_line_note/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/order_line_note/static/description/assets/icons/update.png differ diff --git a/order_line_note/static/description/assets/icons/user.png b/order_line_note/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/order_line_note/static/description/assets/icons/user.png differ diff --git a/order_line_note/static/description/assets/icons/wrench.png b/order_line_note/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/order_line_note/static/description/assets/icons/wrench.png differ diff --git a/order_line_note/static/description/assets/misc/categories.png b/order_line_note/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/order_line_note/static/description/assets/misc/categories.png differ diff --git a/order_line_note/static/description/assets/misc/check-box.png b/order_line_note/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/order_line_note/static/description/assets/misc/check-box.png differ diff --git a/order_line_note/static/description/assets/misc/compass.png b/order_line_note/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/order_line_note/static/description/assets/misc/compass.png differ diff --git a/order_line_note/static/description/assets/misc/corporate.png b/order_line_note/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/order_line_note/static/description/assets/misc/corporate.png differ diff --git a/order_line_note/static/description/assets/misc/customer-support.png b/order_line_note/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/order_line_note/static/description/assets/misc/customer-support.png differ diff --git a/order_line_note/static/description/assets/misc/cybrosys-logo.png b/order_line_note/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/order_line_note/static/description/assets/misc/cybrosys-logo.png differ diff --git a/order_line_note/static/description/assets/misc/features.png b/order_line_note/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/order_line_note/static/description/assets/misc/features.png differ diff --git a/order_line_note/static/description/assets/misc/logo.png b/order_line_note/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/order_line_note/static/description/assets/misc/logo.png differ diff --git a/order_line_note/static/description/assets/misc/pictures.png b/order_line_note/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/order_line_note/static/description/assets/misc/pictures.png differ diff --git a/order_line_note/static/description/assets/misc/pie-chart.png b/order_line_note/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/order_line_note/static/description/assets/misc/pie-chart.png differ diff --git a/order_line_note/static/description/assets/misc/right-arrow.png b/order_line_note/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/order_line_note/static/description/assets/misc/right-arrow.png differ diff --git a/order_line_note/static/description/assets/misc/star.png b/order_line_note/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/order_line_note/static/description/assets/misc/star.png differ diff --git a/order_line_note/static/description/assets/misc/support.png b/order_line_note/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/order_line_note/static/description/assets/misc/support.png differ diff --git a/order_line_note/static/description/assets/misc/whatsapp.png b/order_line_note/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/order_line_note/static/description/assets/misc/whatsapp.png differ diff --git a/order_line_note/static/description/assets/modules/1.png b/order_line_note/static/description/assets/modules/1.png new file mode 100644 index 000000000..f2fba8927 Binary files /dev/null and b/order_line_note/static/description/assets/modules/1.png differ diff --git a/order_line_note/static/description/assets/modules/2.png b/order_line_note/static/description/assets/modules/2.png new file mode 100644 index 000000000..4c52bc471 Binary files /dev/null and b/order_line_note/static/description/assets/modules/2.png differ diff --git a/order_line_note/static/description/assets/modules/3.png b/order_line_note/static/description/assets/modules/3.png new file mode 100644 index 000000000..a4ec31283 Binary files /dev/null and b/order_line_note/static/description/assets/modules/3.png differ diff --git a/order_line_note/static/description/assets/modules/4.png b/order_line_note/static/description/assets/modules/4.png new file mode 100644 index 000000000..0844511ca Binary files /dev/null and b/order_line_note/static/description/assets/modules/4.png differ diff --git a/order_line_note/static/description/assets/modules/5.png b/order_line_note/static/description/assets/modules/5.png new file mode 100644 index 000000000..71cc0a9ae Binary files /dev/null and b/order_line_note/static/description/assets/modules/5.png differ diff --git a/order_line_note/static/description/assets/modules/6.png b/order_line_note/static/description/assets/modules/6.png new file mode 100644 index 000000000..b30170171 Binary files /dev/null and b/order_line_note/static/description/assets/modules/6.png differ diff --git a/order_line_note/static/description/assets/screenshots/1.png b/order_line_note/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..b3ddc8bfe Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/1.png differ diff --git a/order_line_note/static/description/assets/screenshots/2.png b/order_line_note/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..2c2fb926a Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/2.png differ diff --git a/order_line_note/static/description/assets/screenshots/3.png b/order_line_note/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..48e07e34b Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/3.png differ diff --git a/order_line_note/static/description/assets/screenshots/4.png b/order_line_note/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..936f57842 Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/4.png differ diff --git a/order_line_note/static/description/assets/screenshots/5.png b/order_line_note/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..cfdb4428a Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/5.png differ diff --git a/order_line_note/static/description/assets/screenshots/6.png b/order_line_note/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..240d1d4da Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/6.png differ diff --git a/order_line_note/static/description/assets/screenshots/7.png b/order_line_note/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..323445db7 Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/7.png differ diff --git a/order_line_note/static/description/assets/screenshots/8.png b/order_line_note/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..9e99f4149 Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/8.png differ diff --git a/order_line_note/static/description/assets/screenshots/9.png b/order_line_note/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..ef884dfef Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/9.png differ diff --git a/order_line_note/static/description/assets/screenshots/hero.gif b/order_line_note/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..f08577f70 Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/hero.gif differ diff --git a/order_line_note/static/description/banner.png b/order_line_note/static/description/banner.png new file mode 100644 index 000000000..12c3bc897 Binary files /dev/null and b/order_line_note/static/description/banner.png differ diff --git a/order_line_note/static/description/icon.png b/order_line_note/static/description/icon.png new file mode 100644 index 000000000..22ba89de7 Binary files /dev/null and b/order_line_note/static/description/icon.png differ diff --git a/order_line_note/static/description/index.html b/order_line_note/static/description/index.html new file mode 100644 index 000000000..544707582 --- /dev/null +++ b/order_line_note/static/description/index.html @@ -0,0 +1,567 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Order Line Notes

+

The Order Line Notes Module is Used to Add Notes to + Sale and Purchase Order Lines.

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

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ The 'Order Line Notes' module is used to add notes to sale and purchase order lines, which can also be viewed in the sales and purchase order reports. +
+
+ + + +
+
+ +
+

Features +

+
+
+
+
+ + Add Note in Sale and Purchase Order Line. +
+
+ + View the Note in the Report. +
+
+ + View the Note in the Invoice Line and Delivery Line. +
+
+ + + Available in Odoo 15.0 Community and Enterprise. +
+
+
+ + + +
+
+ +
+

Screenshots +

+
+ +
+
+ +
+

Add Note to the Sale Order Line for each Product. +

+ + +
+ +
+

+ Print Sales Report. +

+ + +
+ +
+

+ View Note in the Sales Report. +

+ +
+
+

+ Add Note to the Purchase Order Line for each Product. +

+ +
+
+

+ Print Purchase Report. +

+ +
+
+

+ View Note in the Purchase Report. +

+ + +
+
+

+ View Note in the Transfers. +

+ +
+
+

+ View Note in the Invoices. +

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

Related Modules

+

Explore our related modules

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

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

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

Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/order_line_note/views/account_move_views.xml b/order_line_note/views/account_move_views.xml new file mode 100644 index 000000000..0dc64c6f6 --- /dev/null +++ b/order_line_note/views/account_move_views.xml @@ -0,0 +1,17 @@ + + + + + + account.move.view.form.inherit.order.line.note + + account.move + + + + + + + + + diff --git a/order_line_note/views/purchase_order_views.xml b/order_line_note/views/purchase_order_views.xml new file mode 100644 index 000000000..8ff23562f --- /dev/null +++ b/order_line_note/views/purchase_order_views.xml @@ -0,0 +1,17 @@ + + + + + + purchase.order.view.form.inherit.order.line.note + + purchase.order + + + + + + + + + diff --git a/order_line_note/views/sale_order_views.xml b/order_line_note/views/sale_order_views.xml new file mode 100644 index 000000000..c11ef7437 --- /dev/null +++ b/order_line_note/views/sale_order_views.xml @@ -0,0 +1,17 @@ + + + + + + sale.order.view.form.inherit.order.line.note + + sale.order + + + + + + + + + diff --git a/order_line_note/views/stock_picking_views.xml b/order_line_note/views/stock_picking_views.xml new file mode 100644 index 000000000..512ddda9e --- /dev/null +++ b/order_line_note/views/stock_picking_views.xml @@ -0,0 +1,17 @@ + + + + + + stock.picking.view.form.inherit.order.line.note + + stock.picking + + + + + + + + +