-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
48 lines (48 loc) · 1.9 KB
/
__manifest__.py
File metadata and controls
48 lines (48 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
##############################################################################
#
# Venture Technology
#
# Copyright (C) 2024-TODAY Venture Technology(<https://www.venturetech.site>)
# Author: Venture Technology(info@venturetech.site)
#
# You can modify it under the terms of the GNU AFFERO
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
#
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'Sales Contract and Recurring Invoices',
'version': '0.1',
'category': 'Sales,Accounting',
'summary': """Create sale contracts and recurring invoices.""",
'description': """This module helps to create sale contracts with recurring
invoices and enable to access all sale contracts from website portal.""",
'author': 'Jose Artavia',
'company': 'Venture Technology',
'maintainer': 'Venture Technology',
'website': 'https://www.venturetech.site',
'depends': ['sale_management', 'website'],
'data': [
'security/subscription_contracts_security.xml',
'security/ir.model.access.csv',
'data/ir_cron_data.xml',
'report/subscription_contract_reports.xml',
'views/subscription_contracts_views.xml',
'views/account_move_views.xml',
'views/subscription_contracts_templates.xml',
'report/subscription_contract_templates.xml',
],
'license': 'AGPL-3',
'installable': True,
'auto_install': False,
'application': False,
}