trytonpsk-hotel/policy.py

12 lines
411 B
Python
Raw Normal View History

2020-04-16 14:45:13 +02:00
#This file is part of Presik. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.model import ModelView, ModelSQL, fields
__all__ = ['HotelPolicyCancellation']
class HotelPolicyCancellation(ModelSQL, ModelView):
'Hotel Policy Cancellation'
__name__ = 'hotel.policy.cancellation'
name = fields.Char('Name', required=True)