diff --git a/account_line_view/README.rst b/account_line_view/README.rst new file mode 100644 index 000000000..8417f909a --- /dev/null +++ b/account_line_view/README.rst @@ -0,0 +1,40 @@ +ACCOUNT LINE VIEWS +================== +* Account Invoice/Bill Lines Tree,Form,Kanban,Pivot,Graph,Calendar Views + +Installation +============ + - www.odoo.com/documentation/16.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 +------- +* 'Cybrosys Techno Solutions '__ + +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..3367fdfdb --- /dev/null +++ b/account_line_view/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-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..2b3ff2843 --- /dev/null +++ b/account_line_view/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-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", + "description": """ccount Invoice/Bill + Lines Tree,Form,Kanban,Pivot,Graph,Calendar Views""", + "summary": "Account Invoice/Bill Lines Tree,Form,Kanban,Pivot,Graph,Calendar Views", + "category": "Accounting", + "version": "16.0.1.0.0", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['account'], + 'data': [ + 'views/account_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.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..362c0ef7c --- /dev/null +++ b/account_line_view/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 10.12.2022 +#### Version 16.0.1.0.0 +##### ADD +- Initial Commit diff --git a/account_line_view/models/__init__.py b/account_line_view/models/__init__.py new file mode 100644 index 000000000..ce57fc35f --- /dev/null +++ b/account_line_view/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-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 \ No newline at end of file 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..f77c66bfb --- /dev/null +++ b/account_line_view/models/account_move_line.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-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 models, fields + + +class AccountMoveLine(models.Model): + _inherit = 'account.move.line' + + product_image = fields.Binary(related='product_id.image_1920') 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/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/categories.png b/account_line_view/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/account_line_view/static/description/assets/misc/categories.png differ diff --git a/account_line_view/static/description/assets/misc/check-box.png b/account_line_view/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/account_line_view/static/description/assets/misc/check-box.png differ diff --git a/account_line_view/static/description/assets/misc/compass.png b/account_line_view/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/account_line_view/static/description/assets/misc/compass.png differ diff --git a/account_line_view/static/description/assets/misc/corporate.png b/account_line_view/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/account_line_view/static/description/assets/misc/corporate.png differ diff --git a/account_line_view/static/description/assets/misc/customer-support.png b/account_line_view/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/account_line_view/static/description/assets/misc/customer-support.png differ diff --git a/account_line_view/static/description/assets/misc/cybrosys-logo.png b/account_line_view/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/account_line_view/static/description/assets/misc/cybrosys-logo.png differ diff --git a/account_line_view/static/description/assets/misc/features.png b/account_line_view/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/account_line_view/static/description/assets/misc/features.png differ diff --git a/account_line_view/static/description/assets/misc/logo.png b/account_line_view/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/account_line_view/static/description/assets/misc/logo.png differ diff --git a/account_line_view/static/description/assets/misc/pictures.png b/account_line_view/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/account_line_view/static/description/assets/misc/pictures.png differ diff --git a/account_line_view/static/description/assets/misc/pie-chart.png b/account_line_view/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/account_line_view/static/description/assets/misc/pie-chart.png differ diff --git a/account_line_view/static/description/assets/misc/right-arrow.png b/account_line_view/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/account_line_view/static/description/assets/misc/right-arrow.png differ diff --git a/account_line_view/static/description/assets/misc/star.png b/account_line_view/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/account_line_view/static/description/assets/misc/star.png differ diff --git a/account_line_view/static/description/assets/misc/support.png b/account_line_view/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/account_line_view/static/description/assets/misc/support.png differ diff --git a/account_line_view/static/description/assets/misc/whatsapp.png b/account_line_view/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/account_line_view/static/description/assets/misc/whatsapp.png differ 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..5238bdeab 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..1ae7cfe3b 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..3c3ff1afb 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..3fae4631e 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/6.png b/account_line_view/static/description/assets/modules/6.png new file mode 100644 index 000000000..7f2815273 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/account_line_view_01.png b/account_line_view/static/description/assets/screenshots/account_line_view_01.png new file mode 100644 index 000000000..d5d3ae82f Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_01.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_02.png b/account_line_view/static/description/assets/screenshots/account_line_view_02.png new file mode 100644 index 000000000..86facf375 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_02.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_03.png b/account_line_view/static/description/assets/screenshots/account_line_view_03.png new file mode 100644 index 000000000..d85246ec3 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_03.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_04.png b/account_line_view/static/description/assets/screenshots/account_line_view_04.png new file mode 100644 index 000000000..6a2874c4d Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_04.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_05.png b/account_line_view/static/description/assets/screenshots/account_line_view_05.png new file mode 100644 index 000000000..e7aeb0848 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_05.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_06.png b/account_line_view/static/description/assets/screenshots/account_line_view_06.png new file mode 100644 index 000000000..b3765addc Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_06.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_07.png b/account_line_view/static/description/assets/screenshots/account_line_view_07.png new file mode 100644 index 000000000..310c5fad1 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_07.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_08.png b/account_line_view/static/description/assets/screenshots/account_line_view_08.png new file mode 100644 index 000000000..3447f715e Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_08.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_09.png b/account_line_view/static/description/assets/screenshots/account_line_view_09.png new file mode 100644 index 000000000..412b44327 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_09.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_10.png b/account_line_view/static/description/assets/screenshots/account_line_view_10.png new file mode 100644 index 000000000..8623ed85a Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_10.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_11.png b/account_line_view/static/description/assets/screenshots/account_line_view_11.png new file mode 100644 index 000000000..2a02244ed Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_11.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_12.png b/account_line_view/static/description/assets/screenshots/account_line_view_12.png new file mode 100644 index 000000000..f7b1f816a Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_12.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_13.png b/account_line_view/static/description/assets/screenshots/account_line_view_13.png new file mode 100644 index 000000000..103944163 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_13.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_14.png b/account_line_view/static/description/assets/screenshots/account_line_view_14.png new file mode 100644 index 000000000..681a40810 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_14.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_15.png b/account_line_view/static/description/assets/screenshots/account_line_view_15.png new file mode 100644 index 000000000..c60022b35 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_15.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_16.png b/account_line_view/static/description/assets/screenshots/account_line_view_16.png new file mode 100644 index 000000000..017e6746d Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_16.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_17.png b/account_line_view/static/description/assets/screenshots/account_line_view_17.png new file mode 100644 index 000000000..38d4114c7 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_17.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_18.png b/account_line_view/static/description/assets/screenshots/account_line_view_18.png new file mode 100644 index 000000000..697e7fd80 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_18.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_19.png b/account_line_view/static/description/assets/screenshots/account_line_view_19.png new file mode 100644 index 000000000..bb59bf2e6 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_19.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_20.png b/account_line_view/static/description/assets/screenshots/account_line_view_20.png new file mode 100644 index 000000000..ed5e46f5b Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_20.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_21.png b/account_line_view/static/description/assets/screenshots/account_line_view_21.png new file mode 100644 index 000000000..0424bbd85 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_21.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_22.png b/account_line_view/static/description/assets/screenshots/account_line_view_22.png new file mode 100644 index 000000000..a58860be7 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_22.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_23.png b/account_line_view/static/description/assets/screenshots/account_line_view_23.png new file mode 100644 index 000000000..6bd135f2b Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_23.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_24.png b/account_line_view/static/description/assets/screenshots/account_line_view_24.png new file mode 100644 index 000000000..a0df06b67 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_24.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_25.png b/account_line_view/static/description/assets/screenshots/account_line_view_25.png new file mode 100644 index 000000000..3d6e04ab4 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_25.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_26.png b/account_line_view/static/description/assets/screenshots/account_line_view_26.png new file mode 100644 index 000000000..1207aaf17 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_26.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_27.png b/account_line_view/static/description/assets/screenshots/account_line_view_27.png new file mode 100644 index 000000000..616019ef1 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_27.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_28.png b/account_line_view/static/description/assets/screenshots/account_line_view_28.png new file mode 100644 index 000000000..671806b9f Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_28.png differ diff --git a/account_line_view/static/description/assets/screenshots/account_line_view_29.png b/account_line_view/static/description/assets/screenshots/account_line_view_29.png new file mode 100644 index 000000000..726788e86 Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/account_line_view_29.png differ diff --git a/account_line_view/static/description/assets/screenshots/v16-hero-66.gif b/account_line_view/static/description/assets/screenshots/v16-hero-66.gif new file mode 100644 index 000000000..efae38aad Binary files /dev/null and b/account_line_view/static/description/assets/screenshots/v16-hero-66.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..03592f67a 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..23b53f07c 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..3452c3b6a --- /dev/null +++ b/account_line_view/static/description/index.html @@ -0,0 +1,807 @@ +
+ +
+ +
+
+ Community +
+
+
+ +
+
+
+ +

+ ACCOUNT LINE VIEWS

+

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

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

Explore This + Module

+
+ + + + +
+
+ +
+

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 +
+
+ + 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 + +
+
+
+ +
+ + Available in Odoo 16.0 + Community. +
+ +
+ + Interactive graph,pivot and calendar views + +
+ +
+ + Easy to use custom filters and group by + +
+ +
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+ +
+

Menu for Invoice and + Credit Note line +

+

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

+ +
+ +
+

Invoice Tree View +

+

Go to invoicing -> + customer ->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 invoicing -> + Customer ->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 invoicing -> + Vendor -> + -> + We can see the Bill Line and Refund Line menu +

+ +
+ +
+

Bill Tree View +

+

Go to invoicing -> + Vendor ->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 invoicing -> + Vendor ->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 invoicing -> + Accounting -> + -> + We can see the Account Line and menu +

+ +
+ +
+

Account Tree View +

+

Go to 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

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

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

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

Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/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..4a9ae0837 --- /dev/null +++ b/account_line_view/views/account_move_line_view.xml @@ -0,0 +1,127 @@ + + + + + account line tree view + account.move.line + + + + + + + + + + + + + + + + + + + account.line.kanban.view + account.move.line + + + > + + +
+
+ +
+
+
+
+ + + +
+
+
+ Product: + +
+ Quantity: + +
+ Price + +
+ State: + +
+
+
+
+
+
+
+ + + account pivot view + account.move.line + + + + + + + + + + + + + account.line.graph.view + account.move.line + + + + + + + + + + + account.line.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..227c5a546 --- /dev/null +++ b/account_line_view/views/bill_line_view.xml @@ -0,0 +1,127 @@ + + + + + bill line tree view + account.move.line + + + + + + + + + + + + + + + + + + + bill.line.kanban.view + account.move.line + + + > + + +
+
+ +
+
+
+
+ + + +
+
+
+ Product: + +
+ Quantity: + +
+ Price + +
+ State: + +
+
+
+
+
+
+
+ + + bill pivot view + account.move.line + + + + + + + + + + + + + bill.line.graph.view + account.move.line + + + + + + + + + + + bill.line.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..d315d1257 --- /dev/null +++ b/account_line_view/views/credit_note_line_view.xml @@ -0,0 +1,130 @@ + + + + + Credit note line tree view + account.move.line + + + + + + + + + + + + + + + + + + + credit.note.line.kanban.view + account.move.line + + + > + + +
+
+ +
+
+
+
+ + + +
+
+
+ Product: + +
+ Quantity: + +
+ Price + +
+ State: + +
+
+
+
+
+
+
+ + + pivot + account.move.line + + + + + + + + + + + + + credit.note.line.graph.view + account.move.line + + + + + + + + + + + credit.note.line.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..88cbd30f3 --- /dev/null +++ b/account_line_view/views/invoice_line_view.xml @@ -0,0 +1,140 @@ + + + + + account.move.line.form.view.inherit + account.move.line + + + + + + + + + + invoice line tree view + account.move.line + + + + + + + + + + + + + + + + + + + Invoice.line.kanban.view + account.move.line + + + > + + +
+
+ +
+
+
+
+ + + +
+
+
+ Product: + +
+ Quantity: + +
+ Price + +
+ State: + +
+
+
+
+
+
+
+ + + Invoice pivot view + account.move.line + + + + + + + + + + + + + invoice.line.graph.view + account.move.line + + + + + + + + + + + invoice.line.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..0660d7fce --- /dev/null +++ b/account_line_view/views/refund_line_view.xml @@ -0,0 +1,140 @@ + + + + + account.move.line.form.form.inherit + account.move.line + + + + + + + + + + Refund line tree view + account.move.line + + + + + + + + + + + + + + + + + + + refund.line.kanban.view + account.move.line + + + > + + +
+
+ +
+
+
+
+ + + +
+
+
+ Product: + +
+ Quantity: + +
+ Price + +
+ State: + +
+
+
+
+
+
+
+ + + pivot + account.move.line + + + + + + + + + + + + + refund.line.graph.view + account.move.line + + + + + + + + + + + refund.line.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