res_company.py 533 Bytes
Newer Older
François C. committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# -*- coding: utf-8 -*-
# Copyright (C) 2016-Today: La Louve (<http://www.lalouve.net/>)
# @author: Julien Weste (julien.weste@akretion.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from openerp import fields, models


class ResCompany(models.Model):
    _inherit = 'res.company'

    capital_certificate_header = fields.Char(
        "Capital Certificate Header",
        help="example: 'La S.A.S. Coopérative à Capital Variable LA LOUVE'")
    signature = fields.Binary("Signature", attachment=True)