mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
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.
52 lines
1.9 KiB
Python
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:
|