mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
14 lines
357 B
Python
14 lines
357 B
Python
from odoo import fields, models
|
|
|
|
|
|
class PmsCheckinPartner(models.Model):
|
|
_inherit = 'pms.checkin.partner'
|
|
|
|
origin_input_data = fields.Selection([
|
|
('wizard', 'Wizard'),
|
|
('form', 'Form'),
|
|
('regular_customer', 'Regular Customer'),
|
|
('ocr', 'OCR'),
|
|
('precheckin', 'Precheckin'),
|
|
], string='Origin Input Data')
|