Files
pms/pms_l10n_es/models/pms_property.py
2021-05-27 10:33:53 +02:00

19 lines
785 B
Python

from odoo import _, fields, models
class PmsProperty(models.Model):
_inherit = "pms.property"
police_type = fields.Selection(
[
("guardia_civil", "Guardia Civil"),
("policia_nacional","Policía Nacional"),
("ertxaintxa", "Ertxaintxa"),
("mossos", "Mossos_d'esquadra")
],
string="Police Type",
default="guardia_civil")
police_number = fields.Char("Police Number", size=10)
police_user = fields.Char("Police User")
police_pass = fields.Char("Police Password")