diff --git a/account_line_view/README.rst b/account_line_view/README.rst deleted file mode 100644 index 02c9a24f3..000000000 --- a/account_line_view/README.rst +++ /dev/null @@ -1,46 +0,0 @@ -.. 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: (V18) Ashwin T - -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 deleted file mode 100644 index 828bcb7bb..000000000 --- a/account_line_view/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Ashwin T (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 deleted file mode 100644 index 6bff6da10..000000000 --- a/account_line_view/__manifest__.py +++ /dev/null @@ -1,50 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Ashwin T (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": "18.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','sale','purchase'], - '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.png'], - '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 deleted file mode 100644 index e972b27a5..000000000 --- a/account_line_view/doc/RELEASE_NOTES.md +++ /dev/null @@ -1,7 +0,0 @@ -## Module - -#### 10.10.2024 -#### Version 18.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 deleted file mode 100644 index dafd471ef..000000000 --- a/account_line_view/models/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Ashwin T (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 deleted file mode 100644 index 123ec184e..000000000 --- a/account_line_view/models/account_move_line.py +++ /dev/null @@ -1,31 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Ashwin - T (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/arrows-repeat.svg b/account_line_view/static/description/assets/icons/arrows-repeat.svg deleted file mode 100644 index 1d7efabc5..000000000 --- a/account_line_view/static/description/assets/icons/arrows-repeat.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/banner-1.png b/account_line_view/static/description/assets/icons/banner-1.png deleted file mode 100644 index c180db172..000000000 Binary files a/account_line_view/static/description/assets/icons/banner-1.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/banner-2.svg b/account_line_view/static/description/assets/icons/banner-2.svg deleted file mode 100644 index e606d97d9..000000000 --- a/account_line_view/static/description/assets/icons/banner-2.svg +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/banner-bg.png b/account_line_view/static/description/assets/icons/banner-bg.png deleted file mode 100644 index a8238d3c0..000000000 Binary files a/account_line_view/static/description/assets/icons/banner-bg.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/banner-bg.svg b/account_line_view/static/description/assets/icons/banner-bg.svg deleted file mode 100644 index b1378103e..000000000 --- a/account_line_view/static/description/assets/icons/banner-bg.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/banner-call.svg b/account_line_view/static/description/assets/icons/banner-call.svg deleted file mode 100644 index 96c687e81..000000000 --- a/account_line_view/static/description/assets/icons/banner-call.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/account_line_view/static/description/assets/icons/banner-mail.svg b/account_line_view/static/description/assets/icons/banner-mail.svg deleted file mode 100644 index cbf0d158d..000000000 --- a/account_line_view/static/description/assets/icons/banner-mail.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/account_line_view/static/description/assets/icons/banner-pattern.svg b/account_line_view/static/description/assets/icons/banner-pattern.svg deleted file mode 100644 index 9c1c7e101..000000000 --- a/account_line_view/static/description/assets/icons/banner-pattern.svg +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/banner-promo.svg b/account_line_view/static/description/assets/icons/banner-promo.svg deleted file mode 100644 index d52791b11..000000000 --- a/account_line_view/static/description/assets/icons/banner-promo.svg +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/brand-pair.svg b/account_line_view/static/description/assets/icons/brand-pair.svg deleted file mode 100644 index d8db7fc1e..000000000 --- a/account_line_view/static/description/assets/icons/brand-pair.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/capture (1).png b/account_line_view/static/description/assets/icons/capture (1).png deleted file mode 100644 index 8824deafc..000000000 Binary files a/account_line_view/static/description/assets/icons/capture (1).png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/check.png b/account_line_view/static/description/assets/icons/check.png deleted file mode 100644 index c8e85f51d..000000000 Binary files a/account_line_view/static/description/assets/icons/check.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/chevron.png b/account_line_view/static/description/assets/icons/chevron.png deleted file mode 100644 index 2089293d6..000000000 Binary files a/account_line_view/static/description/assets/icons/chevron.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/close-icon.svg b/account_line_view/static/description/assets/icons/close-icon.svg deleted file mode 100644 index df8cce37a..000000000 --- a/account_line_view/static/description/assets/icons/close-icon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/account_line_view/static/description/assets/icons/cogs.png b/account_line_view/static/description/assets/icons/cogs.png deleted file mode 100644 index 95d0bad62..000000000 Binary files a/account_line_view/static/description/assets/icons/cogs.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/collabarate-icon.svg b/account_line_view/static/description/assets/icons/collabarate-icon.svg deleted file mode 100644 index dd4e10518..000000000 --- a/account_line_view/static/description/assets/icons/collabarate-icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/account_line_view/static/description/assets/icons/consultation.png b/account_line_view/static/description/assets/icons/consultation.png deleted file mode 100644 index 8319d4baa..000000000 Binary files a/account_line_view/static/description/assets/icons/consultation.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/cybro-logo.png b/account_line_view/static/description/assets/icons/cybro-logo.png deleted file mode 100644 index ff4b78220..000000000 Binary files a/account_line_view/static/description/assets/icons/cybro-logo.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/down.svg b/account_line_view/static/description/assets/icons/down.svg deleted file mode 100644 index f21c36271..000000000 --- a/account_line_view/static/description/assets/icons/down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/account_line_view/static/description/assets/icons/ecom-black.png b/account_line_view/static/description/assets/icons/ecom-black.png deleted file mode 100644 index a9385ff13..000000000 Binary files a/account_line_view/static/description/assets/icons/ecom-black.png and /dev/null 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 deleted file mode 100644 index 3eb09b27b..000000000 Binary files a/account_line_view/static/description/assets/icons/education-black.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/faq.png b/account_line_view/static/description/assets/icons/faq.png deleted file mode 100644 index 4250b5b81..000000000 Binary files a/account_line_view/static/description/assets/icons/faq.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/feature-icon.svg b/account_line_view/static/description/assets/icons/feature-icon.svg deleted file mode 100644 index fa0ea6850..000000000 --- a/account_line_view/static/description/assets/icons/feature-icon.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/feature.png b/account_line_view/static/description/assets/icons/feature.png deleted file mode 100644 index ac7a785c0..000000000 Binary files a/account_line_view/static/description/assets/icons/feature.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/gear.svg b/account_line_view/static/description/assets/icons/gear.svg deleted file mode 100644 index 0cc66b6ea..000000000 --- a/account_line_view/static/description/assets/icons/gear.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/hero.gif b/account_line_view/static/description/assets/icons/hero.gif deleted file mode 100644 index 6a0274d9c..000000000 Binary files a/account_line_view/static/description/assets/icons/hero.gif and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/hire-odoo.svg b/account_line_view/static/description/assets/icons/hire-odoo.svg deleted file mode 100644 index e1ac089b0..000000000 --- a/account_line_view/static/description/assets/icons/hire-odoo.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/hotel-black.png b/account_line_view/static/description/assets/icons/hotel-black.png deleted file mode 100644 index 130f613be..000000000 Binary files a/account_line_view/static/description/assets/icons/hotel-black.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/img.png b/account_line_view/static/description/assets/icons/img.png deleted file mode 100644 index 70197f477..000000000 Binary files a/account_line_view/static/description/assets/icons/img.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/license.png b/account_line_view/static/description/assets/icons/license.png deleted file mode 100644 index a5869797e..000000000 Binary files a/account_line_view/static/description/assets/icons/license.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/life-ring-icon.svg b/account_line_view/static/description/assets/icons/life-ring-icon.svg deleted file mode 100644 index 3ae6e1d89..000000000 --- a/account_line_view/static/description/assets/icons/life-ring-icon.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/lifebuoy.png b/account_line_view/static/description/assets/icons/lifebuoy.png deleted file mode 100644 index 658d56ccc..000000000 Binary files a/account_line_view/static/description/assets/icons/lifebuoy.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/mail.svg b/account_line_view/static/description/assets/icons/mail.svg deleted file mode 100644 index 1eedde695..000000000 --- a/account_line_view/static/description/assets/icons/mail.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/account_line_view/static/description/assets/icons/manufacturing-black.png b/account_line_view/static/description/assets/icons/manufacturing-black.png deleted file mode 100644 index 697eb0e9f..000000000 Binary files a/account_line_view/static/description/assets/icons/manufacturing-black.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/notes.png b/account_line_view/static/description/assets/icons/notes.png deleted file mode 100644 index ee5e95404..000000000 Binary files a/account_line_view/static/description/assets/icons/notes.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/notification icon.svg b/account_line_view/static/description/assets/icons/notification icon.svg deleted file mode 100644 index 053189973..000000000 --- a/account_line_view/static/description/assets/icons/notification icon.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/odoo-consultancy.svg b/account_line_view/static/description/assets/icons/odoo-consultancy.svg deleted file mode 100644 index e05f65bde..000000000 --- a/account_line_view/static/description/assets/icons/odoo-consultancy.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/account_line_view/static/description/assets/icons/odoo-licencing.svg b/account_line_view/static/description/assets/icons/odoo-licencing.svg deleted file mode 100644 index 2606c88b0..000000000 --- a/account_line_view/static/description/assets/icons/odoo-licencing.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/account_line_view/static/description/assets/icons/odoo-logo.png b/account_line_view/static/description/assets/icons/odoo-logo.png deleted file mode 100644 index 0e4d0eb5a..000000000 Binary files a/account_line_view/static/description/assets/icons/odoo-logo.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/patter.svg b/account_line_view/static/description/assets/icons/patter.svg deleted file mode 100644 index 25c9c0a8f..000000000 --- a/account_line_view/static/description/assets/icons/patter.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/pattern1.png b/account_line_view/static/description/assets/icons/pattern1.png deleted file mode 100644 index 09ab0fb2d..000000000 Binary files a/account_line_view/static/description/assets/icons/pattern1.png and /dev/null 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 deleted file mode 100644 index 06c111758..000000000 Binary files a/account_line_view/static/description/assets/icons/photo-capture.png and /dev/null 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 deleted file mode 100644 index 97c0f90c1..000000000 Binary files a/account_line_view/static/description/assets/icons/pos-black.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/puzzle-piece-icon.svg b/account_line_view/static/description/assets/icons/puzzle-piece-icon.svg deleted file mode 100644 index 3e9ad9373..000000000 --- a/account_line_view/static/description/assets/icons/puzzle-piece-icon.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/puzzle.png b/account_line_view/static/description/assets/icons/puzzle.png deleted file mode 100644 index 65cf854e7..000000000 Binary files a/account_line_view/static/description/assets/icons/puzzle.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/replace-icon.svg b/account_line_view/static/description/assets/icons/replace-icon.svg deleted file mode 100644 index d0e3a7af1..000000000 --- a/account_line_view/static/description/assets/icons/replace-icon.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/restaurant-black.png b/account_line_view/static/description/assets/icons/restaurant-black.png deleted file mode 100644 index 4a35eb939..000000000 Binary files a/account_line_view/static/description/assets/icons/restaurant-black.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/screenshot-main.png b/account_line_view/static/description/assets/icons/screenshot-main.png deleted file mode 100644 index 575f8e676..000000000 Binary files a/account_line_view/static/description/assets/icons/screenshot-main.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/screenshot.png b/account_line_view/static/description/assets/icons/screenshot.png deleted file mode 100644 index cef272529..000000000 Binary files a/account_line_view/static/description/assets/icons/screenshot.png and /dev/null 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 deleted file mode 100644 index 301ab51cb..000000000 Binary files a/account_line_view/static/description/assets/icons/service-black.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/skype-fill.svg b/account_line_view/static/description/assets/icons/skype-fill.svg deleted file mode 100644 index c17423639..000000000 --- a/account_line_view/static/description/assets/icons/skype-fill.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/skype.png b/account_line_view/static/description/assets/icons/skype.png deleted file mode 100644 index 51b409fb3..000000000 Binary files a/account_line_view/static/description/assets/icons/skype.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/skype.svg b/account_line_view/static/description/assets/icons/skype.svg deleted file mode 100644 index df3dad39b..000000000 --- a/account_line_view/static/description/assets/icons/skype.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/account_line_view/static/description/assets/icons/star-1.svg b/account_line_view/static/description/assets/icons/star-1.svg deleted file mode 100644 index 7e55ab162..000000000 --- a/account_line_view/static/description/assets/icons/star-1.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/star-2.svg b/account_line_view/static/description/assets/icons/star-2.svg deleted file mode 100644 index 5ae9f507a..000000000 --- a/account_line_view/static/description/assets/icons/star-2.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/support.png b/account_line_view/static/description/assets/icons/support.png deleted file mode 100644 index 4f18b8b82..000000000 Binary files a/account_line_view/static/description/assets/icons/support.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/test-1 - Copy.png b/account_line_view/static/description/assets/icons/test-1 - Copy.png deleted file mode 100644 index f6a902663..000000000 Binary files a/account_line_view/static/description/assets/icons/test-1 - Copy.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/test-1.png b/account_line_view/static/description/assets/icons/test-1.png deleted file mode 100644 index 0908add2b..000000000 Binary files a/account_line_view/static/description/assets/icons/test-1.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/test-2.png b/account_line_view/static/description/assets/icons/test-2.png deleted file mode 100644 index 4671fe91e..000000000 Binary files a/account_line_view/static/description/assets/icons/test-2.png and /dev/null 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 deleted file mode 100644 index 9398ba2f1..000000000 Binary files a/account_line_view/static/description/assets/icons/trading-black.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/training.png b/account_line_view/static/description/assets/icons/training.png deleted file mode 100644 index 884ca024d..000000000 Binary files a/account_line_view/static/description/assets/icons/training.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/translate.svg b/account_line_view/static/description/assets/icons/translate.svg deleted file mode 100644 index af9c8a1aa..000000000 --- a/account_line_view/static/description/assets/icons/translate.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/update.png b/account_line_view/static/description/assets/icons/update.png deleted file mode 100644 index ecbc5a01a..000000000 Binary files a/account_line_view/static/description/assets/icons/update.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/user.png b/account_line_view/static/description/assets/icons/user.png deleted file mode 100644 index 6ffb23d9f..000000000 Binary files a/account_line_view/static/description/assets/icons/user.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/video.png b/account_line_view/static/description/assets/icons/video.png deleted file mode 100644 index 576705b17..000000000 Binary files a/account_line_view/static/description/assets/icons/video.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/whatsapp.png b/account_line_view/static/description/assets/icons/whatsapp.png deleted file mode 100644 index d513a5356..000000000 Binary files a/account_line_view/static/description/assets/icons/whatsapp.png and /dev/null differ diff --git a/account_line_view/static/description/assets/icons/wrench-icon.svg b/account_line_view/static/description/assets/icons/wrench-icon.svg deleted file mode 100644 index 174b5a465..000000000 --- a/account_line_view/static/description/assets/icons/wrench-icon.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/account_line_view/static/description/assets/icons/wrench.png b/account_line_view/static/description/assets/icons/wrench.png deleted file mode 100644 index 6c04dea0f..000000000 Binary files a/account_line_view/static/description/assets/icons/wrench.png and /dev/null differ diff --git a/account_line_view/static/description/assets/modules/1.gif b/account_line_view/static/description/assets/modules/1.gif deleted file mode 100644 index ae3a880a2..000000000 Binary files a/account_line_view/static/description/assets/modules/1.gif and /dev/null differ diff --git a/account_line_view/static/description/assets/modules/2.gif b/account_line_view/static/description/assets/modules/2.gif deleted file mode 100644 index d19e2b352..000000000 Binary files a/account_line_view/static/description/assets/modules/2.gif and /dev/null differ diff --git a/account_line_view/static/description/assets/modules/3.png b/account_line_view/static/description/assets/modules/3.png deleted file mode 100644 index 8513873ea..000000000 Binary files a/account_line_view/static/description/assets/modules/3.png and /dev/null differ diff --git a/account_line_view/static/description/assets/modules/4.png b/account_line_view/static/description/assets/modules/4.png deleted file mode 100644 index 3bedf7981..000000000 Binary files a/account_line_view/static/description/assets/modules/4.png and /dev/null differ diff --git a/account_line_view/static/description/assets/modules/5.png b/account_line_view/static/description/assets/modules/5.png deleted file mode 100644 index 0e311ca87..000000000 Binary files a/account_line_view/static/description/assets/modules/5.png and /dev/null differ diff --git a/account_line_view/static/description/assets/modules/6.jpg b/account_line_view/static/description/assets/modules/6.jpg deleted file mode 100644 index 67c7f7062..000000000 Binary files a/account_line_view/static/description/assets/modules/6.jpg and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/1.png b/account_line_view/static/description/assets/screenshots/1.png deleted file mode 100644 index b31c10f12..000000000 Binary files a/account_line_view/static/description/assets/screenshots/1.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/10.png b/account_line_view/static/description/assets/screenshots/10.png deleted file mode 100644 index f470fa600..000000000 Binary files a/account_line_view/static/description/assets/screenshots/10.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/11.png b/account_line_view/static/description/assets/screenshots/11.png deleted file mode 100644 index 7079b2194..000000000 Binary files a/account_line_view/static/description/assets/screenshots/11.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/12.png b/account_line_view/static/description/assets/screenshots/12.png deleted file mode 100644 index 68cb332ac..000000000 Binary files a/account_line_view/static/description/assets/screenshots/12.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/13.png b/account_line_view/static/description/assets/screenshots/13.png deleted file mode 100644 index 02e56a8cc..000000000 Binary files a/account_line_view/static/description/assets/screenshots/13.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/14.png b/account_line_view/static/description/assets/screenshots/14.png deleted file mode 100644 index e0ed7cbea..000000000 Binary files a/account_line_view/static/description/assets/screenshots/14.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/15.png b/account_line_view/static/description/assets/screenshots/15.png deleted file mode 100644 index 069e54fe4..000000000 Binary files a/account_line_view/static/description/assets/screenshots/15.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/16.png b/account_line_view/static/description/assets/screenshots/16.png deleted file mode 100644 index 5d850d1da..000000000 Binary files a/account_line_view/static/description/assets/screenshots/16.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/17.png b/account_line_view/static/description/assets/screenshots/17.png deleted file mode 100644 index 648e536d0..000000000 Binary files a/account_line_view/static/description/assets/screenshots/17.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/18.png b/account_line_view/static/description/assets/screenshots/18.png deleted file mode 100644 index 2775b3c69..000000000 Binary files a/account_line_view/static/description/assets/screenshots/18.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/19.png b/account_line_view/static/description/assets/screenshots/19.png deleted file mode 100644 index e001e5cad..000000000 Binary files a/account_line_view/static/description/assets/screenshots/19.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/2.png b/account_line_view/static/description/assets/screenshots/2.png deleted file mode 100644 index 9645d64ce..000000000 Binary files a/account_line_view/static/description/assets/screenshots/2.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/20.png b/account_line_view/static/description/assets/screenshots/20.png deleted file mode 100644 index c91fa964b..000000000 Binary files a/account_line_view/static/description/assets/screenshots/20.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/21.png b/account_line_view/static/description/assets/screenshots/21.png deleted file mode 100644 index f8ce88ba2..000000000 Binary files a/account_line_view/static/description/assets/screenshots/21.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/22.png b/account_line_view/static/description/assets/screenshots/22.png deleted file mode 100644 index f9e2d62ab..000000000 Binary files a/account_line_view/static/description/assets/screenshots/22.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/23.png b/account_line_view/static/description/assets/screenshots/23.png deleted file mode 100644 index ff03c5bb8..000000000 Binary files a/account_line_view/static/description/assets/screenshots/23.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/24.png b/account_line_view/static/description/assets/screenshots/24.png deleted file mode 100644 index eddb3e08b..000000000 Binary files a/account_line_view/static/description/assets/screenshots/24.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/25.png b/account_line_view/static/description/assets/screenshots/25.png deleted file mode 100644 index bd58c4fef..000000000 Binary files a/account_line_view/static/description/assets/screenshots/25.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/26.png b/account_line_view/static/description/assets/screenshots/26.png deleted file mode 100644 index af59816ca..000000000 Binary files a/account_line_view/static/description/assets/screenshots/26.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/27.png b/account_line_view/static/description/assets/screenshots/27.png deleted file mode 100644 index 18a750392..000000000 Binary files a/account_line_view/static/description/assets/screenshots/27.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/28.png b/account_line_view/static/description/assets/screenshots/28.png deleted file mode 100644 index b0e7e69ff..000000000 Binary files a/account_line_view/static/description/assets/screenshots/28.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/3.png b/account_line_view/static/description/assets/screenshots/3.png deleted file mode 100644 index 087220d14..000000000 Binary files a/account_line_view/static/description/assets/screenshots/3.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/4.png b/account_line_view/static/description/assets/screenshots/4.png deleted file mode 100644 index b419d5771..000000000 Binary files a/account_line_view/static/description/assets/screenshots/4.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/5.png b/account_line_view/static/description/assets/screenshots/5.png deleted file mode 100644 index 5507d911d..000000000 Binary files a/account_line_view/static/description/assets/screenshots/5.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/6.png b/account_line_view/static/description/assets/screenshots/6.png deleted file mode 100644 index 2520573c5..000000000 Binary files a/account_line_view/static/description/assets/screenshots/6.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/7.png b/account_line_view/static/description/assets/screenshots/7.png deleted file mode 100644 index babbc0418..000000000 Binary files a/account_line_view/static/description/assets/screenshots/7.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/8.png b/account_line_view/static/description/assets/screenshots/8.png deleted file mode 100644 index b2b0f3e47..000000000 Binary files a/account_line_view/static/description/assets/screenshots/8.png and /dev/null differ diff --git a/account_line_view/static/description/assets/screenshots/9.png b/account_line_view/static/description/assets/screenshots/9.png deleted file mode 100644 index f940c231f..000000000 Binary files a/account_line_view/static/description/assets/screenshots/9.png and /dev/null differ diff --git a/account_line_view/static/description/banner.png b/account_line_view/static/description/banner.png deleted file mode 100644 index 5de723666..000000000 Binary files a/account_line_view/static/description/banner.png and /dev/null differ diff --git a/account_line_view/static/description/icon.png b/account_line_view/static/description/icon.png deleted file mode 100644 index d5c5cff76..000000000 Binary files a/account_line_view/static/description/icon.png and /dev/null differ diff --git a/account_line_view/static/description/index.html b/account_line_view/static/description/index.html deleted file mode 100644 index 0dfc5eccd..000000000 --- a/account_line_view/static/description/index.html +++ /dev/null @@ -1,1645 +0,0 @@ - - - - - - Account Invoice Line Views - - - - - - - - - - -
-
- - - -
-
- Community -
-
- Enterprise -
-
-
- -
-
-
-
-

- Provide Account Lines List, Form, Kanban, Pivot, Graph, and Calendar Views. -

-

Account Invoice Line Views -

-
-
- -
- -
- -
-
-
- -
-
- -
-
- -
-
-
-

Key - Highlights

-
-
-
-
- -
-
- Provide different views. -
-

- List 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 18.0 Community and Enterprise.

-
-
-
-
- -
-
-
- Account Invoice Line Views -

- Are you ready to make your business more - organized? -
Improve now! -

- -
-
- -
-
-
- - - - -
-
- -
-
-
-
- acc_bg -
- -
-
-
-
-

- Accounting - - Invoice Line and Credit note lin -

-
-
-

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

-
-
-
- -
-
-
-
-
-
-
-
-
-

- List View of - - Invoice Line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- Kanban view of - - Invoice line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- Pivot View of - - - Invoice line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- Graph view of - - - Invoice line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- Calendar view of - - - Invoice line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- List 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. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- Vendor - - - Bill line and refund line. -

-
-
-

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

-
-
-
- -
-
-
-
-
-
-
-
-
-

- List view of - - - bill line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- kanban view of - - - bill line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- Pivot view of - - - bill line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- Graph view of - - - bill line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- Calendar view of - - - bill line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- list view of - - - refund line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- kanban view of - - - refund line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- Pivot view of - - - refund line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- graph view of - - - refund line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- calendar view of - - - refund line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- Account line - - - menu. -

-
-
-

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

-
-
-
- -
-
-
-
-
-
-
-
-
-

- list view of - - - account line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- kanban view of - - - account line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- Pivot view of - - - account line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- Graph view of - - - account line. -

-
-
-
- -
-
-
-
-
-
-
-
-
-

- calendar view of - - - account line. -

-
-
-
- -
-
-
-
-
-
-
-
- -
-
-
-
- -
-

- User-Friendly Navigation

-
-
-

- Intuitive interface for viewing and managing account lines across different document types, simplifying accounting workflows. -

-
- -
-
-
-
-
-
- -
-

- Enhanced Data Analysis

-
-
-

- With the Pivot and Graph views, users can analyze account line data - effectively, facilitating decision-making with visual representations of - financial data.

-
-
-
-
-
-
-
- -
-

- Multiple View Options.

-
-
-

- Provides List, Form, Kanban, Pivot, Graph, and Calendar views for flexible and detailed account line management. -

-
- -
-
-
-
-
-
-
-
-
- -
- -
- -
-

- Odoo 18 provides multiple views for account lines, - including List, Form, Kanban, Pivot, Graph, and Calendar views. -

-
-
- -
- -
-

- Yes, the Account Line View is available in both Odoo 18.0 Community and Enterprise editions. -

-
-
- -
- -
-

- Yes, the Calendar view allows you to view account lines based on dates, - making it easier to track deadlines or important accounting events. -

-
-
-
- -
-
-
-
-
-
- -
-
-

- Latest Release 18.0.1.0.0 -

- - 8th October, 2024 - -
-
-
-
-
- Add -
-
-
-
    -
  • - Initial Commit -
  • - -
-
-
-
-
-
-
-
-
-
- - - - - - -
-

- Our Services

- -
- -
-
- .... -
-
- -
- - -
-
- - - - - - diff --git a/account_line_view/views/account_move_line_view.xml b/account_line_view/views/account_move_line_view.xml deleted file mode 100644 index ca35e15b7..000000000 --- a/account_line_view/views/account_move_line_view.xml +++ /dev/null @@ -1,132 +0,0 @@ - - - - - account.line.view.list - 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 - list,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 deleted file mode 100644 index db5b364f1..000000000 --- a/account_line_view/views/bill_line_view.xml +++ /dev/null @@ -1,134 +0,0 @@ - - - - - bill.line.view.list - 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 - list,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 deleted file mode 100644 index 8d711dfa7..000000000 --- a/account_line_view/views/credit_note_line_view.xml +++ /dev/null @@ -1,137 +0,0 @@ - - - - - credit.note.line.view.list - 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 - list,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 deleted file mode 100644 index 319dadb89..000000000 --- a/account_line_view/views/invoice_line_view.xml +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - account.move.line.view.form.inherit.account.line.view - - account.move.line - - - - - - - - - - - invoice.line.view.list - 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 - list,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 deleted file mode 100644 index 7b27db544..000000000 --- a/account_line_view/views/refund_line_view.xml +++ /dev/null @@ -1,134 +0,0 @@ - - - - - refund.line.view.list - 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 - list,form,kanban,pivot,graph - - [('move_type','=','in_refund'),('product_id','!=',False)] - - - -

- Refund Lines Views -

-
-
- - - - -
\ No newline at end of file