trytond-account_invoice_fac.../company.py

15 lines
436 B
Python
Raw Normal View History

2016-09-16 13:08:52 +02:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.model import fields
from trytond.pool import PoolMeta
__all__ = ['Company']
2018-08-18 23:55:49 +02:00
class Company(metaclass=PoolMeta):
2016-09-16 13:08:52 +02:00
__name__ = 'company.company'
facturae_certificate = fields.Binary('Factura-e Certificate',
help='The certificate to generate the XAdES electronic firm for '
'invoices.')
2018-07-08 19:30:21 +02:00