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.
42 lines
1.3 KiB
42 lines
1.3 KiB
# Copyright (C) 2020 Open Source Integrators
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class Animal(models.Model):
|
|
_name = "animal"
|
|
_description = "Animal"
|
|
_inherit = ["mail.thread", "mail.activity.mixin"]
|
|
_order = "name"
|
|
|
|
name = fields.Char(string="Name")
|
|
ref = fields.Char(string="Reference")
|
|
species_id = fields.Many2one("animal.species", string="Species", required=True)
|
|
breed_id = fields.Many2one("animal.breed", string="Breed", required=True)
|
|
color_id = fields.Many2one("animal.color", string="Color")
|
|
size = fields.Char(string="Size")
|
|
weight = fields.Float(string="Weight (in kg)")
|
|
birth_date = fields.Date(string="Birth Date")
|
|
gender = fields.Selection(
|
|
string="Gender",
|
|
selection=[
|
|
("female", "Female"),
|
|
("male", "Male"),
|
|
("hermaphrodite", "Hermaphrodite"),
|
|
("neutered", "Neutered"),
|
|
],
|
|
default="female",
|
|
required=True,
|
|
)
|
|
active = fields.Boolean(default=True)
|
|
image = fields.Binary(
|
|
"Image", attachment=True, help="This field holds the photo of the animal."
|
|
)
|
|
|
|
@api.onchange("species_id")
|
|
def onchange_species(self):
|
|
self.breed_id = False
|
|
|
|
@api.onchange("breed_id")
|
|
def onchange_breed(self):
|
|
self.color_id = False
|