diff --git a/order_line_note/README.rst b/order_line_note/README.rst new file mode 100755 index 000000000..4864932b7 --- /dev/null +++ b/order_line_note/README.rst @@ -0,0 +1,45 @@ +.. 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/17.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: (V17) Manasa T P, 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..e9719ce73 --- /dev/null +++ b/order_line_note/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Manasa T P (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..eed143aa7 --- /dev/null +++ b/order_line_note/__manifest__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Manasa T P (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': '17.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..a6d6a782f --- /dev/null +++ b/order_line_note/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 16.10.2024 +#### Version 17.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..b51ff5e4c --- /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: Manasa T P (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..7b78883fb --- /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: Manasa T P (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.Char(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..5de0c35d4 --- /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: Manasa T P (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..9727ed93e --- /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: Manasa T P (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.Char(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..f5c621595 --- /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: Manasa T P (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..396e590e7 --- /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: Manasa T P (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.Char(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..2801839c0 --- /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: Manasa T P (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.Char(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..e62de5279 --- /dev/null +++ b/order_line_note/report/ir_actions_report_templates.xml @@ -0,0 +1,17 @@ + + + + + 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..e9c2b2398 --- /dev/null +++ b/order_line_note/report/purchase_order_templates.xml @@ -0,0 +1,18 @@ + + + + + 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..169381133 --- /dev/null +++ b/order_line_note/report/purchase_quotation_templates.xml @@ -0,0 +1,16 @@ + + + + + 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/Cybrosys R.png b/order_line_note/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/order_line_note/static/description/assets/misc/Cybrosys R.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/email.svg b/order_line_note/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/order_line_note/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/phone.svg b/order_line_note/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/order_line_note/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + 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 (1) 2.svg b/order_line_note/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/order_line_note/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + 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 (1) 1.svg b/order_line_note/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/order_line_note/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/order_line_note/static/description/assets/misc/support-email.svg b/order_line_note/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/order_line_note/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + 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/tick-mark.svg b/order_line_note/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/order_line_note/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/order_line_note/static/description/assets/misc/whatsapp 1.svg b/order_line_note/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/order_line_note/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + 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/misc/whatsapp.svg b/order_line_note/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/order_line_note/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/order_line_note/static/description/assets/modules/m1.png b/order_line_note/static/description/assets/modules/m1.png new file mode 100644 index 000000000..acb4c76c6 Binary files /dev/null and b/order_line_note/static/description/assets/modules/m1.png differ diff --git a/order_line_note/static/description/assets/modules/m2.png b/order_line_note/static/description/assets/modules/m2.png new file mode 100644 index 000000000..3ef91f771 Binary files /dev/null and b/order_line_note/static/description/assets/modules/m2.png differ diff --git a/order_line_note/static/description/assets/modules/m3.png b/order_line_note/static/description/assets/modules/m3.png new file mode 100644 index 000000000..72febf6ae Binary files /dev/null and b/order_line_note/static/description/assets/modules/m3.png differ diff --git a/order_line_note/static/description/assets/modules/m4.png b/order_line_note/static/description/assets/modules/m4.png new file mode 100644 index 000000000..f7d7f9241 Binary files /dev/null and b/order_line_note/static/description/assets/modules/m4.png differ diff --git a/order_line_note/static/description/assets/modules/m5.png b/order_line_note/static/description/assets/modules/m5.png new file mode 100644 index 000000000..1d3324e88 Binary files /dev/null and b/order_line_note/static/description/assets/modules/m5.png differ diff --git a/order_line_note/static/description/assets/modules/m6.png b/order_line_note/static/description/assets/modules/m6.png new file mode 100644 index 000000000..80938c15a Binary files /dev/null and b/order_line_note/static/description/assets/modules/m6.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..938984050 Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/hero.gif differ diff --git a/order_line_note/static/description/assets/screenshots/img01.png b/order_line_note/static/description/assets/screenshots/img01.png new file mode 100644 index 000000000..9fe71af12 Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/img01.png differ diff --git a/order_line_note/static/description/assets/screenshots/img02.png b/order_line_note/static/description/assets/screenshots/img02.png new file mode 100644 index 000000000..47f8b7c17 Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/img02.png differ diff --git a/order_line_note/static/description/assets/screenshots/img03.png b/order_line_note/static/description/assets/screenshots/img03.png new file mode 100644 index 000000000..91afda393 Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/img03.png differ diff --git a/order_line_note/static/description/assets/screenshots/img04.png b/order_line_note/static/description/assets/screenshots/img04.png new file mode 100644 index 000000000..a3a85dd71 Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/img04.png differ diff --git a/order_line_note/static/description/assets/screenshots/img05.png b/order_line_note/static/description/assets/screenshots/img05.png new file mode 100644 index 000000000..8fb076405 Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/img05.png differ diff --git a/order_line_note/static/description/assets/screenshots/img06.png b/order_line_note/static/description/assets/screenshots/img06.png new file mode 100644 index 000000000..d67af0a81 Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/img06.png differ diff --git a/order_line_note/static/description/assets/screenshots/img07.png b/order_line_note/static/description/assets/screenshots/img07.png new file mode 100644 index 000000000..3948d13ac Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/img07.png differ diff --git a/order_line_note/static/description/assets/screenshots/img08.png b/order_line_note/static/description/assets/screenshots/img08.png new file mode 100644 index 000000000..0af6394c4 Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/img08.png differ diff --git a/order_line_note/static/description/assets/screenshots/img09.png b/order_line_note/static/description/assets/screenshots/img09.png new file mode 100644 index 000000000..719d2c9b3 Binary files /dev/null and b/order_line_note/static/description/assets/screenshots/img09.png differ diff --git a/order_line_note/static/description/banner.jpg b/order_line_note/static/description/banner.jpg new file mode 100644 index 000000000..490864fa2 Binary files /dev/null and b/order_line_note/static/description/banner.jpg 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..35e053ae3 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..2aabdb9f4 --- /dev/null +++ b/order_line_note/static/description/index.html @@ -0,0 +1,829 @@ + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Order Line Notes

+

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

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ 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 17.0 Community and + Enterprise

+

+

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

+ 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 Quotation + Report.

+
+
+
+
+
+
+ +
+
+

+ View Note in the Purchase + Report.

+
+
+
+
+
+
+ +
+
+

+ View Note in the Transfers.

+
+
+
+
+
+
+ +
+
+

+ View Note in the Invoices.

+
+
+
+
+
+
+
+
+
    +
  • + + 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 17.0 Community and Enterprise. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:15th October 2024 +
+

+ Initial Commit for Order Line Notes.

+
+
+
+
+
+
+
+

+ 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_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 + + + + + + + + +