diff --git a/account_line_view/README.rst b/account_line_view/README.rst new file mode 100644 index 000000000..9e9cb9b6f --- /dev/null +++ b/account_line_view/README.rst @@ -0,0 +1,46 @@ +.. 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 + + +Account Invoice Line Views +========================== +* Account Invoice/Bill Lines Tree,Form,Kanban,Pivot,Graph,Calendar Views + +Configuration +============= +* No additional configuration needed. + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: (V17) Swathy K S + +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/account_line_view/__init__.py b/account_line_view/__init__.py new file mode 100644 index 000000000..fd9a03f79 --- /dev/null +++ b/account_line_view/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Swathy K S (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/account_line_view/__manifest__.py b/account_line_view/__manifest__.py new file mode 100644 index 000000000..e1ecc6674 --- /dev/null +++ b/account_line_view/__manifest__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Swathy K S (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': "Account Invoice Line Views", + "version": "17.0.1.0.0", + "category": "Accounting", + "summary": "Account Invoice/Bill Lines Tree," + "Form,Kanban,Pivot,Graph,Calendar Views", + "description": """This module enables users to count invoice/bill lines + through various views including tree, form, kanban, pivot, + graph, and calendar, facilitating comprehensive analysis + and management.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['account'], + 'data': [ + 'views/invoice_line_view.xml', + 'views/bill_line_view.xml', + 'views/credit_note_line_view.xml', + 'views/refund_line_view.xml', + 'views/account_move_line_view.xml' + ], + 'images': [ + 'static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/account_line_view/doc/RELEASE_NOTES.md b/account_line_view/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..a1d970aa1 --- /dev/null +++ b/account_line_view/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 05.02.2024 +#### Version 17.0.1.0.0 +##### ADD + +- Initial Commit for Account Invoice Line Views diff --git a/account_line_view/models/__init__.py b/account_line_view/models/__init__.py new file mode 100644 index 000000000..9d640d540 --- /dev/null +++ b/account_line_view/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Swathy K S (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 diff --git a/account_line_view/models/account_move_line.py b/account_line_view/models/account_move_line.py new file mode 100644 index 000000000..ea91a8630 --- /dev/null +++ b/account_line_view/models/account_move_line.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Swathy K S (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, fields + + +class AccountMoveLine(models.Model): + """Inherit model account move line for adding new field""" + _inherit = 'account.move.line' + _description = "Inherit model account move line" + + product_image = fields.Binary(related='product_id.image_1920', string="Product Image", + help="Product image") diff --git a/account_line_view/static/description/assets/icons/capture (1).png b/account_line_view/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/account_line_view/static/description/assets/icons/capture (1).png differ diff --git a/account_line_view/static/description/assets/icons/check.png b/account_line_view/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/account_line_view/static/description/assets/icons/check.png differ diff --git a/account_line_view/static/description/assets/icons/chevron.png b/account_line_view/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/account_line_view/static/description/assets/icons/chevron.png differ diff --git a/account_line_view/static/description/assets/icons/cogs.png b/account_line_view/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/account_line_view/static/description/assets/icons/cogs.png differ diff --git a/account_line_view/static/description/assets/icons/consultation.png b/account_line_view/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/account_line_view/static/description/assets/icons/consultation.png differ diff --git a/account_line_view/static/description/assets/icons/ecom-black.png b/account_line_view/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/account_line_view/static/description/assets/icons/ecom-black.png differ diff --git a/account_line_view/static/description/assets/icons/education-black.png b/account_line_view/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/account_line_view/static/description/assets/icons/education-black.png differ diff --git a/account_line_view/static/description/assets/icons/hotel-black.png b/account_line_view/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/account_line_view/static/description/assets/icons/hotel-black.png differ diff --git a/account_line_view/static/description/assets/icons/img.png b/account_line_view/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/account_line_view/static/description/assets/icons/img.png differ diff --git a/account_line_view/static/description/assets/icons/license.png b/account_line_view/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/account_line_view/static/description/assets/icons/license.png differ diff --git a/account_line_view/static/description/assets/icons/lifebuoy.png b/account_line_view/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/account_line_view/static/description/assets/icons/lifebuoy.png differ diff --git a/account_line_view/static/description/assets/icons/manufacturing-black.png b/account_line_view/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/account_line_view/static/description/assets/icons/manufacturing-black.png differ diff --git a/account_line_view/static/description/assets/icons/photo-capture.png b/account_line_view/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/account_line_view/static/description/assets/icons/photo-capture.png differ diff --git a/account_line_view/static/description/assets/icons/pos-black.png b/account_line_view/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/account_line_view/static/description/assets/icons/pos-black.png differ diff --git a/account_line_view/static/description/assets/icons/puzzle.png b/account_line_view/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/account_line_view/static/description/assets/icons/puzzle.png differ diff --git a/account_line_view/static/description/assets/icons/restaurant-black.png b/account_line_view/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/account_line_view/static/description/assets/icons/restaurant-black.png differ diff --git a/account_line_view/static/description/assets/icons/service-black.png b/account_line_view/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/account_line_view/static/description/assets/icons/service-black.png differ diff --git a/account_line_view/static/description/assets/icons/trading-black.png b/account_line_view/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/account_line_view/static/description/assets/icons/trading-black.png differ diff --git a/account_line_view/static/description/assets/icons/training.png b/account_line_view/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/account_line_view/static/description/assets/icons/training.png differ diff --git a/account_line_view/static/description/assets/icons/update.png b/account_line_view/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/account_line_view/static/description/assets/icons/update.png differ diff --git a/account_line_view/static/description/assets/icons/user.png b/account_line_view/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/account_line_view/static/description/assets/icons/user.png differ diff --git a/account_line_view/static/description/assets/icons/wrench.png b/account_line_view/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/account_line_view/static/description/assets/icons/wrench.png differ diff --git a/account_line_view/static/description/assets/misc/Cybrosys R.png b/account_line_view/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/account_line_view/static/description/assets/misc/Cybrosys R.png differ diff --git a/account_line_view/static/description/assets/misc/email.svg b/account_line_view/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/account_line_view/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/account_line_view/static/description/assets/misc/phone.svg b/account_line_view/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/account_line_view/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/account_line_view/static/description/assets/misc/star (1) 2.svg b/account_line_view/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/account_line_view/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/account_line_view/static/description/assets/misc/support (1) 1.svg b/account_line_view/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/account_line_view/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/account_line_view/static/description/assets/misc/support-email.svg b/account_line_view/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/account_line_view/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/account_line_view/static/description/assets/misc/tick-mark.svg b/account_line_view/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/account_line_view/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/account_line_view/static/description/assets/misc/whatsapp 1.svg b/account_line_view/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/account_line_view/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/account_line_view/static/description/assets/misc/whatsapp.svg b/account_line_view/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/account_line_view/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/account_line_view/static/description/assets/modules/1.png b/account_line_view/static/description/assets/modules/1.png new file mode 100644 index 000000000..318b8a6ff Binary files /dev/null and b/account_line_view/static/description/assets/modules/1.png differ diff --git a/account_line_view/static/description/assets/modules/2.png b/account_line_view/static/description/assets/modules/2.png new file mode 100644 index 000000000..bc29461e5 Binary files /dev/null and b/account_line_view/static/description/assets/modules/2.png differ diff --git a/account_line_view/static/description/assets/modules/3.png b/account_line_view/static/description/assets/modules/3.png new file mode 100644 index 000000000..770289e4d Binary files /dev/null and b/account_line_view/static/description/assets/modules/3.png differ diff --git a/account_line_view/static/description/assets/modules/4.png b/account_line_view/static/description/assets/modules/4.png new file mode 100644 index 000000000..3ee472b0a Binary files /dev/null and b/account_line_view/static/description/assets/modules/4.png differ diff --git a/account_line_view/static/description/assets/modules/5.gif b/account_line_view/static/description/assets/modules/5.gif new file mode 100644 index 000000000..2a5f8e659 Binary files /dev/null and b/account_line_view/static/description/assets/modules/5.gif differ diff --git a/account_line_view/static/description/assets/modules/5.png b/account_line_view/static/description/assets/modules/5.png new file mode 100644 index 000000000..840ae54b2 Binary files /dev/null and b/account_line_view/static/description/assets/modules/5.png differ diff --git a/account_line_view/static/description/assets/modules/6.png b/account_line_view/static/description/assets/modules/6.png new file mode 100644 index 000000000..292bfb472 Binary files /dev/null and b/account_line_view/static/description/assets/modules/6.png differ diff --git a/account_line_view/static/description/assets/screenshots/1.png b/account_line_view/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..4c31dd148 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/1.png differ diff --git a/account_line_view/static/description/assets/screenshots/10.png b/account_line_view/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..3e0f19d2d Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/10.png differ diff --git a/account_line_view/static/description/assets/screenshots/11.png b/account_line_view/static/description/assets/screenshots/11.png new file mode 100644 index 000000000..9dd20ab1e Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/11.png differ diff --git a/account_line_view/static/description/assets/screenshots/12.png b/account_line_view/static/description/assets/screenshots/12.png new file mode 100644 index 000000000..98e25452a Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/12.png differ diff --git a/account_line_view/static/description/assets/screenshots/13.png b/account_line_view/static/description/assets/screenshots/13.png new file mode 100644 index 000000000..a0da3bf1a Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/13.png differ diff --git a/account_line_view/static/description/assets/screenshots/14.png b/account_line_view/static/description/assets/screenshots/14.png new file mode 100644 index 000000000..3db7557c6 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/14.png differ diff --git a/account_line_view/static/description/assets/screenshots/15.png b/account_line_view/static/description/assets/screenshots/15.png new file mode 100644 index 000000000..cba5397dd Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/15.png differ diff --git a/account_line_view/static/description/assets/screenshots/16.png b/account_line_view/static/description/assets/screenshots/16.png new file mode 100644 index 000000000..7a9ffd4c8 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/16.png differ diff --git a/account_line_view/static/description/assets/screenshots/17.png b/account_line_view/static/description/assets/screenshots/17.png new file mode 100644 index 000000000..679092da7 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/17.png differ diff --git a/account_line_view/static/description/assets/screenshots/18.png b/account_line_view/static/description/assets/screenshots/18.png new file mode 100644 index 000000000..a9380800b Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/18.png differ diff --git a/account_line_view/static/description/assets/screenshots/19.png b/account_line_view/static/description/assets/screenshots/19.png new file mode 100644 index 000000000..4f9ae6bc9 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/19.png differ diff --git a/account_line_view/static/description/assets/screenshots/2.png b/account_line_view/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..ac0e50ba1 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/2.png differ diff --git a/account_line_view/static/description/assets/screenshots/20.png b/account_line_view/static/description/assets/screenshots/20.png new file mode 100644 index 000000000..d6186e04e Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/20.png differ diff --git a/account_line_view/static/description/assets/screenshots/21.png b/account_line_view/static/description/assets/screenshots/21.png new file mode 100644 index 000000000..3498b1edb Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/21.png differ diff --git a/account_line_view/static/description/assets/screenshots/22.png b/account_line_view/static/description/assets/screenshots/22.png new file mode 100644 index 000000000..d7565f320 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/22.png differ diff --git a/account_line_view/static/description/assets/screenshots/23.png b/account_line_view/static/description/assets/screenshots/23.png new file mode 100644 index 000000000..747db4bf4 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/23.png differ diff --git a/account_line_view/static/description/assets/screenshots/24.png b/account_line_view/static/description/assets/screenshots/24.png new file mode 100644 index 000000000..6798fd39c Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/24.png differ diff --git a/account_line_view/static/description/assets/screenshots/25.png b/account_line_view/static/description/assets/screenshots/25.png new file mode 100644 index 000000000..98e29c548 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/25.png differ diff --git a/account_line_view/static/description/assets/screenshots/26.png b/account_line_view/static/description/assets/screenshots/26.png new file mode 100644 index 000000000..642e75d52 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/26.png differ diff --git a/account_line_view/static/description/assets/screenshots/27.png b/account_line_view/static/description/assets/screenshots/27.png new file mode 100644 index 000000000..999e4bee7 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/27.png differ diff --git a/account_line_view/static/description/assets/screenshots/28.png b/account_line_view/static/description/assets/screenshots/28.png new file mode 100644 index 000000000..839b59eff Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/28.png differ diff --git a/account_line_view/static/description/assets/screenshots/3.png b/account_line_view/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..449f7ab48 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/3.png differ diff --git a/account_line_view/static/description/assets/screenshots/4.png b/account_line_view/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..8416d3045 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/4.png differ diff --git a/account_line_view/static/description/assets/screenshots/5.png b/account_line_view/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..c312cc89e Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/5.png differ diff --git a/account_line_view/static/description/assets/screenshots/6.png b/account_line_view/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..28d3ba94c Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/6.png differ diff --git a/account_line_view/static/description/assets/screenshots/7.png b/account_line_view/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..f58873d4e Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/7.png differ diff --git a/account_line_view/static/description/assets/screenshots/8.png b/account_line_view/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..50514156e Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/8.png differ diff --git a/account_line_view/static/description/assets/screenshots/9.png b/account_line_view/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..58ec0eeee Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/9.png differ diff --git a/account_line_view/static/description/assets/screenshots/hero.gif b/account_line_view/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..c02b60014 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/hero.gif differ diff --git a/account_line_view/static/description/banner.jpg b/account_line_view/static/description/banner.jpg new file mode 100644 index 000000000..de3bf1564 Binary files /dev/null and b/account_line_view/static/description/banner.jpg differ diff --git a/account_line_view/static/description/icon.png b/account_line_view/static/description/icon.png new file mode 100644 index 000000000..6ffbedb45 Binary files /dev/null and b/account_line_view/static/description/icon.png differ diff --git a/account_line_view/static/description/index.html b/account_line_view/static/description/index.html new file mode 100644 index 000000000..0753c868d --- /dev/null +++ b/account_line_view/static/description/index.html @@ -0,0 +1,909 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+
+
+
+
+

+ Account Invoice Line Views

+

+ Provide Account Lines Tree, Form, Kanban, Pivot, Graph, and Calendar Views +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

Provide different views.

+

+ Tree view,Form view,Kanban view,Pivot view,Graph view,calendar view +

+
+
+
+
+
+
+ +
+
+

Easy to view account line

+

Easy to view account line view with product details. +

+
+
+
+
+
+
+ +
+
+

Filter line views

+

Filter line views by Invoice,Bill,Credit Note,Refund. +

+
+
+
+
+
+
+ +
+
+

Community & Enterprise Support

+

Available in Odoo 17.0 Community and Enterprise. +

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

+ Go to invoicing --> Customers --> We can see the Invoice Line and Credit Note Line menu +

+
+
+
+
+
+
+ +
+
+

+ Tree view of Invoice line.

+
+
+
+
+
+
+ +
+
+

+ Kanban view of Invoice line.

+
+
+
+
+
+
+ +
+
+

+ Pivot view of Invoice line.

+
+
+
+
+
+
+ +
+
+

+ Graph view of Invoice line.

+
+
+
+
+
+
+ +
+
+

+ Calendar view of Invoice line

+
+
+
+
+
+
+ +
+
+

+ Tree view of Credit Note Line

+
+
+
+
+
+
+ +
+
+

+ Kanban view of Credit Note Line

+
+
+
+
+
+
+ +
+
+

+ Pivot view of Credit Note Line

+
+
+
+
+
+
+ +
+
+

+ Graph view of Credit Note Line

+
+
+
+
+
+
+ +
+
+

+ Calendar view of Credit Note Line

+
+
+
+
+
+
+ +
+
+

+ Go to invoicing --> Vendors --> We can see the Bill Line and Refund Line menu +

+
+
+
+
+
+
+ +
+
+

+ Tree view of Bill Line

+
+
+
+
+
+
+ +
+
+

+ Kanban view of Bill Line

+
+
+
+
+
+
+ +
+
+

+ Pivot view of Bill Line

+
+
+
+
+
+
+ +
+
+

+ Graph view of Bill Line

+
+
+
+
+
+
+ +
+
+

+ Calendar view of Bill Line

+
+
+
+
+
+
+ +
+
+

+ Tree view of Refund Line

+
+
+
+
+
+
+ +
+
+

+ Kanban view of Refund Line

+
+
+
+
+
+
+ +
+
+

+ Pivot view of Refund Line

+
+
+
+
+
+
+ +
+
+

+ Graph view of Refund Line

+
+
+
+
+
+
+ +
+
+

+ Calendar view of Refund Line

+
+
+
+
+
+
+ +
+
+

+ Go to Accounting --> Accounting --> We can see the Account Line menu

+
+
+
+
+
+
+ +
+
+

+ Tree view of Account Line

+
+
+
+
+
+
+ +
+
+

+ Kanban view of Account Line

+
+
+
+
+
+
+ +
+
+

+ Pivot view of Account Line

+
+
+
+
+
+
+ +
+
+

+ Graph view of Account Line

+
+
+
+
+
+
+ +
+
+

+ Calendar view of Account Line

+
+
+
+
+
+
+
    +
  • + Interactive graph,pivot and calendar views +
  • +
  • + Filter line views by Invoice,Bill,Credit Note,Refund +
  • +
  • + Available in Odoo 16.0 Community and Enterprise. +
  • +
  • + Simple to use group by and custom filters +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:05th February 2024 +
+

+ Initial Commit for Account Invoice Line Views

+
+
+
+
+
+
+
+

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/account_line_view/views/account_move_line_view.xml b/account_line_view/views/account_move_line_view.xml new file mode 100644 index 000000000..1b3976e00 --- /dev/null +++ b/account_line_view/views/account_move_line_view.xml @@ -0,0 +1,132 @@ + + + + + account.line.view.tree + account.move.line + + + + + + + + + + + + + + + + + + + + account.line.view.kanban + account.move.line + + + > + + +
+
+ +
+
+
+
+ + + +
+
+
+ Product: + +
+ Quantity: + +
+ Price + +
+ State: + +
+
+
+
+
+
+
+ + + + account.line.pivot.view + account.move.line + + + + + + + + + + + + + + account.line.view.graph + account.move.line + + + + + + + + + + + + account.line.view.calender + account.move.line + + + + + + + + + + + Account Line + account.move.line + tree,form,kanban,pivot,graph + [('product_id','!=',False)] + + +

+ Invoice Lines Views +

+
+
+ + + + +
\ No newline at end of file diff --git a/account_line_view/views/bill_line_view.xml b/account_line_view/views/bill_line_view.xml new file mode 100644 index 000000000..0e3cd3521 --- /dev/null +++ b/account_line_view/views/bill_line_view.xml @@ -0,0 +1,134 @@ + + + + + bill.line.view.tree + account.move.line + + + + + + + + + + + + + + + + + + + + bill.line.view.kanban + account.move.line + + + > + + +
+
+ +
+
+
+
+ + + +
+
+
+ Product: + +
+ Quantity: + +
+ Price + +
+ State: + +
+
+
+
+
+
+
+ + + + bill.line.view.pivot + account.move.line + + + + + + + + + + + + + + bill.line.view.graph + account.move.line + + + + + + + + + + + + bill.line.view.calender + account.move.line + + + + + + + + + + + bill Line + account.move.line + tree,form,kanban,pivot,graph + + [('move_type','=','in_invoice'),('product_id','!=',False)] + + + +

+ Invoice Lines Views +

+
+
+ + + + +
\ No newline at end of file diff --git a/account_line_view/views/credit_note_line_view.xml b/account_line_view/views/credit_note_line_view.xml new file mode 100644 index 000000000..ece069a39 --- /dev/null +++ b/account_line_view/views/credit_note_line_view.xml @@ -0,0 +1,137 @@ + + + + + credit.note.line.view.tree + account.move.line + + + + + + + + + + + + + + + + + + + + credit.note.line.view.kanban + account.move.line + + + > + + +
+
+ +
+
+
+
+ + + +
+
+
+ Product: + +
+ Quantity: + +
+ Price + +
+ State: + +
+
+
+
+
+
+
+ + + + credit.note.line.view.pivot + account.move.line + + + + + + + + + + + + + + credit.note.line.view.graph + account.move.line + + + + + + + + + + + + credit.note.line.view.calender + account.move.line + + + + + + + + + + + Credit Note line + account.move.line + tree,form,kanban,pivot,graph + + [('move_type','=','out_refund'),('product_id','!=',False)] + + + + +

+ Credit Note Lines +

+
+
+ + + + +
\ No newline at end of file diff --git a/account_line_view/views/invoice_line_view.xml b/account_line_view/views/invoice_line_view.xml new file mode 100644 index 000000000..d3fa516b1 --- /dev/null +++ b/account_line_view/views/invoice_line_view.xml @@ -0,0 +1,150 @@ + + + + + + account.move.line.view.form.inherit.account.line.view + + account.move.line + + + + + + + + + + + invoice.line.view.tree + account.move.line + + + + + + + + + + + + + + + + + + + + Invoice.line.view.kanban + account.move.line + + + > + + +
+
+ +
+
+
+
+ + + +
+
+
+ Product: + +
+ Quantity: + +
+ Price + +
+ State: + +
+
+
+
+
+
+
+ + + + Invoice.line.view.pivot + account.move.line + + + + + + + + + + + + + + invoice.line.view.graph + account.move.line + + + + + + + + + + + + invoice.line.view.calender + account.move.line + + + + + + + + + + + Invoice Line + account.move.line + tree,form,kanban,pivot,graph + + [('move_type','=','out_invoice'),('product_id','!=',False)] + + + +

+ Invoice Lines Views +

+
+
+ + + + +
\ No newline at end of file diff --git a/account_line_view/views/refund_line_view.xml b/account_line_view/views/refund_line_view.xml new file mode 100644 index 000000000..40b72cd32 --- /dev/null +++ b/account_line_view/views/refund_line_view.xml @@ -0,0 +1,150 @@ + + + + + + account.move.line.view.form.inherit.account.line.view + + account.move.line + + + + + + + + + + + refund.line.view.tree + account.move.line + + + + + + + + + + + + + + + + + + + + refund.line.view.kanban + account.move.line + + + > + + +
+
+ +
+
+
+
+ + + +
+
+
+ Product: + +
+ Quantity: + +
+ Price + +
+ State: + +
+
+
+
+
+
+
+ + + + refund.line.view.pivot + account.move.line + + + + + + + + + + + + + + refund.line.view.graph + account.move.line + + + + + + + + + + + + refund.line.view.calender + account.move.line + + + + + + + + + + + Debit Note Line + account.move.line + tree,form,kanban,pivot,graph + + [('move_type','=','in_refund'),('product_id','!=',False)] + + + +

+ Refund Lines Views +

+
+
+ + + + +
\ No newline at end of file