Files
Alexandre Fayolle 16a8b888d7 Add OCA as author of OCA addons
In order to get visibility on https://www.odoo.com/apps the OCA board has
decided to add the OCA as author of all the addons maintained as part of the
association.
2015-03-02 17:24:20 +01:00

52 lines
1.9 KiB
Python

# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# 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 for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'Contracts Management recurring',
'version': '0.1',
'category': 'Other',
'description': """
This module add a new feature in contracts to manage recurring invoice
======================================================================
This is a backport of the new V8 feature available in trunk and saas. With
the V8 release this module will be deprecated.
It also add a little feature, you can use #START# and #END# in the contract
line to automatically insert the dates of the invoiced period.
Backport done By Yannick Buron.
""",
'author': "OpenERP SA,Odoo Community Association (OCA)",
'website': 'http://openerp.com',
'depends': ['base', 'account_analytic_analysis'],
'data': [
'account_analytic_analysis_recurring_cron.xml',
'account_analytic_analysis_recurring_view.xml',
],
'demo': [''],
'test': [],
'installable': True,
'images': [],
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: