mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
- Add stage_type to agreement.stage - Track stage of service profile - Add Kanban view for service profiles to the dashboard - Add product_id field to service profile [UPD] Update agreement_serviceprofile.pot [UPD] README.rst Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: contract-12.0/contract-12.0-agreement_serviceprofile Translate-URL: https://translation.odoo-community.org/projects/contract-12-0/contract-12-0-agreement_serviceprofile/
27 lines
787 B
Python
27 lines
787 B
Python
# Copyright (C) 2018 - TODAY, Pavlov Media
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': 'Agreement Service Profile',
|
|
'summary': "Adds an Agreement Service Profile object",
|
|
'version': '12.0.1.0.0',
|
|
'category': 'Contract',
|
|
'author': 'Pavlov Media, '
|
|
'Open Source Integrators, '
|
|
'Odoo Community Association (OCA)',
|
|
'website': 'https://github.com/oca/contract',
|
|
'license': 'AGPL-3',
|
|
'depends': ['agreement_legal'],
|
|
'data': [
|
|
'data/serviceprofile_stage.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/agreement_serviceprofile.xml',
|
|
'views/agreement.xml'
|
|
],
|
|
'development_status': 'Beta',
|
|
'maintainers': [
|
|
'max3903',
|
|
],
|
|
'installable': True,
|
|
}
|