trytond-sale_shop_trade_info/shop.py
?ngel ?lvarez 48b24be534 add phone
2014-12-02 14:00:36 +01:00

19 lines
563 B
Python

# This file is part sale_shop module for Tryton.
# 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__ = ['Shop']
__metaclass__ = PoolMeta
class Shop:
__name__ = 'sale.shop'
logo = fields.Binary('Logo')
lang = fields.Many2One("ir.lang", 'Language')
company_trade_name = fields.Char('Company Trade Name')
phone = fields.Char('Phone')
website = fields.Char('Website')
email = fields.Char('E-Mail')