diff --git a/account_line_view/README.rst b/account_line_view/README.rst new file mode 100644 index 000000000..b2b713ffe --- /dev/null +++ b/account_line_view/README.rst @@ -0,0 +1,44 @@ +.. 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 + +Installation +============ +- www.odoo.com/documentation/15.0/setup/install.html +- Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/user/16.0/legal/licenses/licenses.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +*Developer: (V15) Busthana Shirin, 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 +========== +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..097bdb395 --- /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: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/account_line_view/__manifest__.py b/account_line_view/__manifest__.py new file mode 100644 index 000000000..d44148802 --- /dev/null +++ b/account_line_view/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': "Account Invoice Line Views", + "version": "15.0.1.0.0", + "category": "Accounting", + "summary": """Account Invoice/Bill Lines Tree,Form,Kanban,Pivot,Graph, + Calendar Views""", + "description": """Account Invoice/Bill Lines Tree,Form,Kanban,Pivot,Graph, + Calendar Views""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['account'], + 'data': [ + 'views/invoice_line_views.xml', + 'views/bill_line_views.xml', + 'views/credit_note_line_views.xml', + 'views/refund_line_views.xml', + 'views/account_move_line_views.xml' + ], + 'images': ['static/description/banner.png'], + 'license': 'LGPL-3', + 'installable': True, + 'application': False, + 'auto_install': 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..c47b48f75 --- /dev/null +++ b/account_line_view/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 29.07.2024 +#### Version 15.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..94ef9539b --- /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: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import 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..fb20f1dca --- /dev/null +++ b/account_line_view/models/account_move_line.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class AccountMoveLine(models.Model): + _inherit = 'account.move.line' + + product_image = fields.Binary(related='product_id.image_1920', + string='Image', help='Image of the product') 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/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/logo.png b/account_line_view/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/account_line_view/static/description/assets/icons/logo.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/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/automatic_image.png b/account_line_view/static/description/assets/modules/automatic_image.png new file mode 100644 index 000000000..a49c2a820 Binary files /dev/null and b/account_line_view/static/description/assets/modules/automatic_image.png differ diff --git a/account_line_view/static/description/assets/modules/budget_image.png b/account_line_view/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..b50130c7d Binary files /dev/null and b/account_line_view/static/description/assets/modules/budget_image.png differ diff --git a/account_line_view/static/description/assets/modules/crm_dashboard_image.png b/account_line_view/static/description/assets/modules/crm_dashboard_image.png new file mode 100644 index 000000000..6547c3081 Binary files /dev/null and b/account_line_view/static/description/assets/modules/crm_dashboard_image.png differ diff --git a/account_line_view/static/description/assets/modules/crm_image.png b/account_line_view/static/description/assets/modules/crm_image.png new file mode 100644 index 000000000..8793336c0 Binary files /dev/null and b/account_line_view/static/description/assets/modules/crm_image.png differ diff --git a/account_line_view/static/description/assets/modules/crm_kit_image.png b/account_line_view/static/description/assets/modules/crm_kit_image.png new file mode 100644 index 000000000..0bbad468d Binary files /dev/null and b/account_line_view/static/description/assets/modules/crm_kit_image.png differ diff --git a/account_line_view/static/description/assets/modules/employee_image.png b/account_line_view/static/description/assets/modules/employee_image.png new file mode 100644 index 000000000..30ad58232 Binary files /dev/null and b/account_line_view/static/description/assets/modules/employee_image.png differ diff --git a/account_line_view/static/description/assets/modules/ip_image.png b/account_line_view/static/description/assets/modules/ip_image.png new file mode 100644 index 000000000..707e2b7ed Binary files /dev/null and b/account_line_view/static/description/assets/modules/ip_image.png differ diff --git a/account_line_view/static/description/assets/modules/payable_image.png b/account_line_view/static/description/assets/modules/payable_image.png new file mode 100644 index 000000000..fd1059dec Binary files /dev/null and b/account_line_view/static/description/assets/modules/payable_image.png differ diff --git a/account_line_view/static/description/assets/modules/product_custom_image.png b/account_line_view/static/description/assets/modules/product_custom_image.png new file mode 100644 index 000000000..9c34fd89f Binary files /dev/null and b/account_line_view/static/description/assets/modules/product_custom_image.png differ diff --git a/account_line_view/static/description/assets/modules/salesperson_image.png b/account_line_view/static/description/assets/modules/salesperson_image.png new file mode 100644 index 000000000..958ed2bf4 Binary files /dev/null and b/account_line_view/static/description/assets/modules/salesperson_image.png differ diff --git a/account_line_view/static/description/assets/modules/task_deadline_image.png b/account_line_view/static/description/assets/modules/task_deadline_image.png new file mode 100644 index 000000000..c128be58a Binary files /dev/null and b/account_line_view/static/description/assets/modules/task_deadline_image.png differ diff --git a/account_line_view/static/description/assets/screenshots/account1.png b/account_line_view/static/description/assets/screenshots/account1.png new file mode 100644 index 000000000..88089881a Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account1.png differ diff --git a/account_line_view/static/description/assets/screenshots/account10.png b/account_line_view/static/description/assets/screenshots/account10.png new file mode 100644 index 000000000..174de012d Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account10.png differ diff --git a/account_line_view/static/description/assets/screenshots/account11.png b/account_line_view/static/description/assets/screenshots/account11.png new file mode 100644 index 000000000..065eb1c0a Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account11.png differ diff --git a/account_line_view/static/description/assets/screenshots/account12.png b/account_line_view/static/description/assets/screenshots/account12.png new file mode 100644 index 000000000..0fe0f4d18 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account12.png differ diff --git a/account_line_view/static/description/assets/screenshots/account13.png b/account_line_view/static/description/assets/screenshots/account13.png new file mode 100644 index 000000000..28fed4a16 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account13.png differ diff --git a/account_line_view/static/description/assets/screenshots/account14.png b/account_line_view/static/description/assets/screenshots/account14.png new file mode 100644 index 000000000..1bd5bcb7d Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account14.png differ diff --git a/account_line_view/static/description/assets/screenshots/account15.png b/account_line_view/static/description/assets/screenshots/account15.png new file mode 100644 index 000000000..95851f3d3 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account15.png differ diff --git a/account_line_view/static/description/assets/screenshots/account16.png b/account_line_view/static/description/assets/screenshots/account16.png new file mode 100644 index 000000000..b0667403e Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account16.png differ diff --git a/account_line_view/static/description/assets/screenshots/account17.png b/account_line_view/static/description/assets/screenshots/account17.png new file mode 100644 index 000000000..f53b0aed7 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account17.png differ diff --git a/account_line_view/static/description/assets/screenshots/account18.png b/account_line_view/static/description/assets/screenshots/account18.png new file mode 100644 index 000000000..c99d11536 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account18.png differ diff --git a/account_line_view/static/description/assets/screenshots/account19.png b/account_line_view/static/description/assets/screenshots/account19.png new file mode 100644 index 000000000..85c562e34 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account19.png differ diff --git a/account_line_view/static/description/assets/screenshots/account2.png b/account_line_view/static/description/assets/screenshots/account2.png new file mode 100644 index 000000000..5ff687f8e Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account2.png differ diff --git a/account_line_view/static/description/assets/screenshots/account20.png b/account_line_view/static/description/assets/screenshots/account20.png new file mode 100644 index 000000000..c8409c1a8 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account20.png differ diff --git a/account_line_view/static/description/assets/screenshots/account21.png b/account_line_view/static/description/assets/screenshots/account21.png new file mode 100644 index 000000000..271c85911 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account21.png differ diff --git a/account_line_view/static/description/assets/screenshots/account22.png b/account_line_view/static/description/assets/screenshots/account22.png new file mode 100644 index 000000000..c61741a77 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account22.png differ diff --git a/account_line_view/static/description/assets/screenshots/account23.png b/account_line_view/static/description/assets/screenshots/account23.png new file mode 100644 index 000000000..3b6bfa7cb Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account23.png differ diff --git a/account_line_view/static/description/assets/screenshots/account24.png b/account_line_view/static/description/assets/screenshots/account24.png new file mode 100644 index 000000000..51860138a Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account24.png differ diff --git a/account_line_view/static/description/assets/screenshots/account25.png b/account_line_view/static/description/assets/screenshots/account25.png new file mode 100644 index 000000000..680ec1eb4 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account25.png differ diff --git a/account_line_view/static/description/assets/screenshots/account26.png b/account_line_view/static/description/assets/screenshots/account26.png new file mode 100644 index 000000000..1ef06ac05 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account26.png differ diff --git a/account_line_view/static/description/assets/screenshots/account27.png b/account_line_view/static/description/assets/screenshots/account27.png new file mode 100644 index 000000000..03d696397 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account27.png differ diff --git a/account_line_view/static/description/assets/screenshots/account28.png b/account_line_view/static/description/assets/screenshots/account28.png new file mode 100644 index 000000000..57a9ee11a Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account28.png differ diff --git a/account_line_view/static/description/assets/screenshots/account29.png b/account_line_view/static/description/assets/screenshots/account29.png new file mode 100644 index 000000000..8d75600ac Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account29.png differ diff --git a/account_line_view/static/description/assets/screenshots/account3.png b/account_line_view/static/description/assets/screenshots/account3.png new file mode 100644 index 000000000..a64808ef4 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account3.png differ diff --git a/account_line_view/static/description/assets/screenshots/account4.png b/account_line_view/static/description/assets/screenshots/account4.png new file mode 100644 index 000000000..57ef7d39b Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account4.png differ diff --git a/account_line_view/static/description/assets/screenshots/account5.png b/account_line_view/static/description/assets/screenshots/account5.png new file mode 100644 index 000000000..7320703e2 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account5.png differ diff --git a/account_line_view/static/description/assets/screenshots/account6.png b/account_line_view/static/description/assets/screenshots/account6.png new file mode 100644 index 000000000..46ab9027c Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account6.png differ diff --git a/account_line_view/static/description/assets/screenshots/account7.png b/account_line_view/static/description/assets/screenshots/account7.png new file mode 100644 index 000000000..ca94c2cd4 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account7.png differ diff --git a/account_line_view/static/description/assets/screenshots/account8.png b/account_line_view/static/description/assets/screenshots/account8.png new file mode 100644 index 000000000..9001c46d1 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account8.png differ diff --git a/account_line_view/static/description/assets/screenshots/account9.png b/account_line_view/static/description/assets/screenshots/account9.png new file mode 100644 index 000000000..20faea944 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account9.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..e4ba62c48 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.png b/account_line_view/static/description/banner.png new file mode 100644 index 000000000..3be4bdc5a Binary files /dev/null and b/account_line_view/static/description/banner.png 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..62072e3f7 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..2c91b8432 --- /dev/null +++ b/account_line_view/static/description/index.html @@ -0,0 +1,889 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ Account Invoice Line Views

+

+ Account Invoice/Bill + Lines Tree,Form,Kanban,Pivot,Graph,Calendar Views +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ + This module helps you to see the Invoice,Credit Note,Bill,Refund lines in tree,form,kanban,pivot,graph,calendar + views

+ +
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Account Line View

+

+ Available in Odoo 15.0 Community and Enterprise.

+
+
+
+
+ +
+
+

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

+
+
+ +
+
+ +
+
+

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

+
+
+ +
+
+ +
+
+

+ Easy to view account line view with product details

+
+
+ +
+
+ +
+
+

+ Interactive graph,pivot and calendar views

+
+
+ +
+
+ +
+
+

+ Easy to use custom filters and group by

+
+
+
+ +
+
+

+ Screenshots +

+
+
+

+ Menu for Invoice and + Credit Note line

+

Go to Accounting/Invoicing >> Customers >> + We can see the Invoice Line and Credit Note Line menu +

+ +
+ +
+

+ Invoice Tree View

+

Go to Accounting/Invoicing >> + Customers >> Invoice Line + We can see the Invoice Line Tree view

+ +
+ +
+

+ Invoice Line Kanban + View

+

By clicking the kanban + icon we can see the kanban view with product image +

+ +
+ +
+

+ Invoice Line Pivot View

+

Clicking the Pivot icon + we can see the Pivot view and we an customize using measure +

+ +
+ +
+

+ Invoice Line Graph View

+

By clicking the graph + icon we can see the graph view with different views like bar graph,line graph etc.based on product + details +

+ +
+ +
+

+ Invoice Line Calendar + View

+

+ By clicking the calendar icon we can see the calendar view with product and account details

+ + +
+ +
+

+ Credit Note Tree + View

+

Go to Accounting/Invoicing >> + Customers >> Credit Note Line + We can see the Credit Note Line Tree view

+ +
+ +
+

+ Credit Note Line + Kanban View

+

By clicking the + kanban icon we can see the kanban view with product image +

+ +
+ +
+

+ Credit Note Line + Pivot View

+

Clicking the Pivot + icon we can see the Pivot view and we an customize using measure +

+ +
+ +
+

+ Credit Note Line + Graph View

+

By clicking the + graph icon we can see the graph view with different views like bar graph,line graph etc.based on + product details +

+ +
+ +
+

+ Credit Note Line + Calendar View

+

+ By clicking the calendar icon we can see the calendar view with product and account details

+ +
+ +
+

+ Menu for Bill and + Refund line

+

Go to Accounting/Invoicing >> + Vendors >> + We can see the Bill Line and Refund Line menu +

+
+ +
+

+ Bill Tree View

+

Go to Accounting/Invoicing >> + Vendors >> Bill LIne + We can see the Bill Line Tree view

+ +
+ +
+

+ Bill Line Kanban + View

+

By clicking the + kanban icon we can see the kanban view with product image +

+ +
+ +
+

+ Bill Line Pivot + View

+

Clicking the Pivot + icon we can see the Pivot view and we an customize using measure +

+ +
+ +
+

+ Bill Line Graph + View

+

By clicking the + graph icon we can see the graph view with different views like bar graph,line graph etc.based on + product details +

+ +
+ +
+

+ Bill Line Calendar + View

+

+ By clicking the calendar icon we can see the calendar view with product and account details

+ +
+ +
+

+ Refund Tree View

+

Go to Accounting/Invoicing >> + Vendors >> Refund LIne + We can see the Refund Line Tree view

+ +
+ +
+

+ Refund Line + Kanban View

+

By clicking the + kanban icon we can see the kanban view with product image +

+ +
+ +
+

+ Refund Line Pivot + View

+

Clicking the Pivot + icon we can see the Pivot view and we an customize using measure +

+ +
+ +
+

+ Menu for Account + Line

+

Go to Accounting/Invoicing >> + Accounting >> + We can see the Account Line and menu +

+ +
+ +
+

+ Account Tree View

+

Go to Accounting/Invoicing >> + Accounting >> Account LIne + We can see the Account Line Tree view

+ +
+ +
+

+ Account Line + Kanban View

+

By clicking the + kanban icon we can see the kanban view with product image +

+ +
+ +
+

+ Account Line + Pivot View

+

Clicking the Pivot + icon we can see the Pivot view and we an customize using measure +

+ +
+ +
+

+ Account Line + Graph View

+

By clicking the + graph icon we can see the graph view with different views like bar graph,line graph etc.based on + product details +

+ +
+ +
+

+ Account Line + Calendar View

+

+ By clicking the calendar icon we can see the calendar view with product and account details

+ + +
+ +
+

+ Account Line Form + View with Product Image

+

+ By clicking any of the view we can see form view with product image

+ + +
+ +
+ + +
+
+

Suggested Products

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

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

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

Need Help?

+
+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/account_line_view/views/account_move_line_views.xml b/account_line_view/views/account_move_line_views.xml new file mode 100644 index 000000000..4ace640d7 --- /dev/null +++ b/account_line_view/views/account_move_line_views.xml @@ -0,0 +1,126 @@ + + + + + account.line.view.tree + account.move.line + + + + + + + + + + + + + + + + + + + account.line.view.kanban + account.move.line + + + > + + +
+
+ +
+
+
+
+ + + +
+
+
+ Product: + +
+ Quantity: + +
+ Price + +
+ State: + +
+
+
+
+
+
+
+ + + account.line.view.pivot + 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_views.xml b/account_line_view/views/bill_line_views.xml new file mode 100644 index 000000000..ac2d25516 --- /dev/null +++ b/account_line_view/views/bill_line_views.xml @@ -0,0 +1,128 @@ + + + + + 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_id.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_views.xml b/account_line_view/views/credit_note_line_views.xml new file mode 100644 index 000000000..d4d9a8d1d --- /dev/null +++ b/account_line_view/views/credit_note_line_views.xml @@ -0,0 +1,131 @@ + + + + + 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_id.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_views.xml b/account_line_view/views/invoice_line_views.xml new file mode 100644 index 000000000..37f9fa98c --- /dev/null +++ b/account_line_view/views/invoice_line_views.xml @@ -0,0 +1,145 @@ + + + + + + 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_id.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_views.xml b/account_line_view/views/refund_line_views.xml new file mode 100644 index 000000000..25ad8b2ba --- /dev/null +++ b/account_line_view/views/refund_line_views.xml @@ -0,0 +1,143 @@ + + + + + + account.move.line.refund.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.calendar + account.move.line + + + + + + + + + + Debit Note Line + account.move.line + tree,form,kanban,pivot,graph + + [('move_id.move_type','=','in_refund'),('product_id','!=',False)] + + + +

+ Refund Lines Views +

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