-
-
Notifications
You must be signed in to change notification settings - Fork 408
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[17.0][IMP] crm_tag_team: improve module structure
- Loading branch information
1 parent
30a8261
commit 3c9b14f
Showing
7 changed files
with
27 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.3.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
# Part of Odoo. See LICENSE file for full copyright and licensing details. | ||
|
||
|
||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
# Part of Odoo. See LICENSE file for full copyright and licensing details. | ||
# Copyright 2024 Invitu SARL | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). | ||
{ | ||
'name': 'CRM Tags Sales Team', | ||
'author': 'INVITU, Cyril VINH-TUNG', | ||
'website': 'https://www.invitu.com', | ||
'version': '1.0', | ||
'category': 'CRM', | ||
'description': """ | ||
This module adds a filter by sales_team for crm_tag. | ||
=========================================================================== | ||
""", | ||
'depends': ['crm'], | ||
'data': [ | ||
'views/crm_tag_views.xml', | ||
'views/crm_lead_views.xml', | ||
"name": "CRM Tags Sales Team", | ||
"summary": "This module adds a filter by sales_team for crm_tags", | ||
"author": "INVITU, Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/crm", | ||
"version": "17.0.1.0", | ||
"license": "AGPL-3", | ||
"category": "Customer Relationship Management", | ||
"depends": [ | ||
"crm", | ||
], | ||
'installable': True, | ||
"data": [ | ||
"views/crm_tag_views.xml", | ||
"views/crm_lead_views.xml", | ||
], | ||
"installable": True, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
# Part of Odoo. See LICENSE file for full copyright and licensing details. | ||
|
||
|
||
from . import crm_tag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters