You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
2.3 KiB

  1. # Copyright 2004-2010 Tiny SPRL http://tiny.be
  2. # Copyright 2010-2012 ChriCar Beteiligungs- und Beratungs- GmbH
  3. # http://www.camptocamp.at
  4. # Copyright 2015 Antiun Ingenieria, SL (Madrid, Spain)
  5. # http://www.antiun.com
  6. # Antonio Espinosa <antonioea@antiun.com>
  7. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  8. from odoo import api, models, fields
  9. class ResPartnerIdNumber(models.Model):
  10. _name = "res.partner.id_number"
  11. _description = "Partner ID Number"
  12. _order = "name"
  13. @api.constrains('name', 'category_id')
  14. def validate_id_number(self):
  15. self.category_id.validate_id_number(self)
  16. name = fields.Char(
  17. string="ID Number", required=True,
  18. help="The ID itself. For example, Driver License number of this "
  19. "person")
  20. category_id = fields.Many2one(
  21. string="Category", required=True,
  22. comodel_name='res.partner.id_category',
  23. help="ID type defined in configuration. For example, Driver License")
  24. partner_id = fields.Many2one(string="Partner", required=True,
  25. comodel_name='res.partner',
  26. ondelete='cascade')
  27. partner_issued_id = fields.Many2one(
  28. string="Issued by", comodel_name='res.partner',
  29. help="Another partner, who issued this ID. For example, Traffic "
  30. "National Institution")
  31. place_issuance = fields.Char(
  32. string="Place of Issuance",
  33. help="The place where the ID has been issued. For example the country "
  34. "for passports and visa")
  35. date_issued = fields.Date(
  36. string="Issued on",
  37. help="Issued date. For example, date when person approved his driving "
  38. "exam, 21/10/2009")
  39. valid_from = fields.Date(
  40. string="Valid from",
  41. help="Validation period stating date.")
  42. valid_until = fields.Date(
  43. string="Valid until",
  44. help="Expiration date. For example, date when person needs to renew "
  45. "his driver license, 21/10/2019")
  46. comment = fields.Text(string="Notes")
  47. status = fields.Selection(
  48. [('draft', 'New'),
  49. ('open', 'Running'),
  50. ('pending', 'To Renew'),
  51. ('close', 'Expired')])
  52. active = fields.Boolean(string="Active", default=True)