[MIG] base_comment_template to 9.0
parent
baacc1ab53
commit
56a9780994
|
@ -1,3 +1,8 @@
|
||||||
|
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
||||||
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||||
|
:alt: License: AGPL-3
|
||||||
|
|
||||||
|
=======================
|
||||||
Base Comments Templates
|
Base Comments Templates
|
||||||
=======================
|
=======================
|
||||||
|
|
||||||
|
@ -5,7 +10,6 @@ Add a new model to define templates of comments to print on
|
||||||
documents.
|
documents.
|
||||||
|
|
||||||
Two positions are available for the comments:
|
Two positions are available for the comments:
|
||||||
|
|
||||||
- above document lines
|
- above document lines
|
||||||
- below document lines
|
- below document lines
|
||||||
|
|
||||||
|
@ -15,9 +19,32 @@ This module is the base module for following modules:
|
||||||
* purchase_comment_template
|
* purchase_comment_template
|
||||||
* invoice_comment_template
|
* invoice_comment_template
|
||||||
|
|
||||||
|
Credits
|
||||||
|
=======
|
||||||
|
|
||||||
|
Images
|
||||||
|
------
|
||||||
|
|
||||||
|
* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
|
||||||
|
|
||||||
Contributors
|
Contributors
|
||||||
------------
|
------------
|
||||||
|
|
||||||
* Nicolas Bessi <nicolas.bessi@camptocamp.com>
|
* Nicolas Bessi <nicolas.bessi@camptocamp.com>
|
||||||
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
|
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
|
||||||
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
||||||
|
|
||||||
|
Maintainer
|
||||||
|
----------
|
||||||
|
|
||||||
|
.. image:: https://odoo-community.org/logo.png
|
||||||
|
:alt: Odoo Community Association
|
||||||
|
:target: https://odoo-community.org
|
||||||
|
|
||||||
|
This module is maintained by the OCA.
|
||||||
|
|
||||||
|
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||||
|
mission is to support the collaborative development of Odoo features and
|
||||||
|
promote its widespread use.
|
||||||
|
|
||||||
|
To contribute to this module, please visit https://odoo-community.org.
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from . import comment
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||||
|
from . import models
|
||||||
|
|
|
@ -1,31 +1,14 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
# © 2013-2014 Nicolas Bessi (Camptocamp SA)
|
||||||
#
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||||
# Author: Nicolas Bessi
|
{'name': 'Base Comments Templates',
|
||||||
# Copyright 2013-2014 Camptocamp SA
|
'summary': 'Comments templates on documents',
|
||||||
#
|
'version': '9.0.1.0.0',
|
||||||
# This program is free software: you can redistribute it and/or modify
|
'license': 'AGPL-3',
|
||||||
# it under the terms of the GNU Affero General Public License as
|
'depends': ['base', ],
|
||||||
# published by the Free Software Foundation, either version 3 of the
|
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
||||||
# License, or (at your option) any later version.
|
'data': ['views/comment.xml',
|
||||||
#
|
|
||||||
# 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": "Base Comments Templates",
|
|
||||||
"summary": "Comments templates on documents",
|
|
||||||
"version": "8.0.1.0.0",
|
|
||||||
"depends": ["base"],
|
|
||||||
"author": "Camptocamp,Odoo Community Association (OCA)",
|
|
||||||
"data": ["comment_view.xml",
|
|
||||||
'security/ir.model.access.csv',
|
'security/ir.model.access.csv',
|
||||||
],
|
],
|
||||||
"category": "Sale",
|
'category': 'Sale',
|
||||||
"installable": True,
|
'installable': True, }
|
||||||
"active": False, }
|
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from . import comment
|
|
@ -1,23 +1,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
# © 2013-2014 Nicolas Bessi (Camptocamp SA)
|
||||||
#
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||||
# Author: Nicolas Bessi
|
|
||||||
# Copyright 2013-2014 Camptocamp SA
|
|
||||||
#
|
|
||||||
# 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/>.
|
|
||||||
#
|
|
||||||
#
|
|
||||||
from openerp import models, fields, api
|
from openerp import models, fields, api
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue