trytonpsk-hotel/policy.py

10 lines
373 B
Python
Raw Normal View History

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