Browse Source

Merge pull request #3 from coopiteasy/12.0-fix_install

[FIX] emc: Let emc be installable
pull/7/head
Rémy Taymans 5 years ago
committed by GitHub
parent
commit
79f0724c2c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 27
      easy_my_coop/__manifest__.py

27
easy_my_coop/__manifest__.py

@ -1,24 +1,25 @@
# Copyright 2013-2018 Open Architects Consulting SPRL. # Copyright 2013-2018 Open Architects Consulting SPRL.
# Copyright 2018-Coop IT Easy SCRLfs (<http://www.coopiteasy.be>)
# Copyright 2018- Coop IT Easy SCRLfs (<http://www.coopiteasy.be>)
# - Houssine BAKKALI - <houssine@coopiteasy.be> # - Houssine BAKKALI - <houssine@coopiteasy.be>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{ {
"name": "Easy My Coop", "name": "Easy My Coop",
"version": "12.0.1.0.0", "version": "12.0.1.0.0",
"depends": ["base",
"sale",
"account",
"base_iban",
"product",
"partner_firstname",
"partner_contact_birthdate",
"partner_contact_address",
"email_template_config",
],
"depends": [
"base",
"sale",
"account",
"base_iban",
"product",
"partner_firstname",
"partner_contact_birthdate",
"partner_contact_address",
"email_template_config",
],
"author": "Coop IT Easy SCRLfs", "author": "Coop IT Easy SCRLfs",
"category": "Cooperative management", "category": "Cooperative management",
"website": "www.coopiteasy.be",
"website": "https://www.coopiteasy.be",
"license": "AGPL-3", "license": "AGPL-3",
"description": """ "description": """
This module allows to manage the cooperator subscription and all the This module allows to manage the cooperator subscription and all the
@ -28,7 +29,6 @@
'security/easy_my_coop_security.xml', 'security/easy_my_coop_security.xml',
'security/ir.model.access.csv', 'security/ir.model.access.csv',
'data/easy_my_coop_data.xml', 'data/easy_my_coop_data.xml',
'data/mail_template_data.xml',
'wizard/create_subscription_from_partner.xml', 'wizard/create_subscription_from_partner.xml',
'wizard/update_partner_info.xml', 'wizard/update_partner_info.xml',
'wizard/validate_subscription_request.xml', 'wizard/validate_subscription_request.xml',
@ -47,6 +47,7 @@
'report/cooperator_certificat_G001.xml', 'report/cooperator_certificat_G001.xml',
'report/cooperator_subscription_G001.xml', 'report/cooperator_subscription_G001.xml',
'report/cooperator_register_G001.xml', 'report/cooperator_register_G001.xml',
'data/mail_template_data.xml', # Must be loaded after reports
], ],
'installable': True, 'installable': True,
'application': True, 'application': True,

Loading…
Cancel
Save