mirror of
https://github.com/NaN-tic/trytond-sale_shop_trade_info.git
synced 2023-12-14 03:43:04 +01:00
19 lines
563 B
Python
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')
|