mirror of
https://github.com/NaN-tic/trytond-jasper_reports_options.git
synced 2023-12-14 02:42:53 +01:00
Add python 3 support
This commit is contained in:
parent
46ae548b0a
commit
289fc8e7d3
1 changed files with 1 additions and 1 deletions
|
@ -5,10 +5,10 @@ from trytond.model import fields
|
|||
from trytond.pool import PoolMeta
|
||||
|
||||
__all__ = ['Company']
|
||||
__metaclass__ = PoolMeta
|
||||
|
||||
|
||||
class Company:
|
||||
__metaclass__ = PoolMeta
|
||||
__name__ = 'company.company'
|
||||
invoice_qty = fields.Boolean('Invoice Qty', help='Show qty without decimals')
|
||||
sale_qty = fields.Boolean('Sale Qty', help='Show qty without decimals')
|
||||
|
|
Loading…
Reference in a new issue