I have a class Student. How can auto increment the id_number. The id_number should also be unique. id_number should always check the highest number and then increment it by one.
class Student(models.Model):
id_number = fields.Integer('Number')
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I have a class Student. How can auto increment the id_number. The id_number should also be unique. id_number should always check the highest number and then increment it by one.
class Student(models.Model):
id_number = fields.Integer('Number')
Hi,
You can create a sequence like this,
first in XML:
<record id="seq_hr_employee" model="ir.sequence">
<field name="name">omega_sequencer</field> <field name="code">hr.employee</field>
<field name="prefix">QO</field> <field name="padding">5</field> </record>
Then in the python, override the create method and assign the value
@api.model
def create(self, vals):
seq = self.env['ir.sequence'].next_by_code('hr.employee') or '/'
vals['sequence_id'] = seq
return super(omega, self).create(vals)
Thanks
Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!
Inscreva-sePublicações relacionadas | Respostas | Visualizações | Atividade | |
---|---|---|---|---|
|
3
nov. 24
|
28702 | ||
|
6
mar. 24
|
20816 | ||
Limit the number of digits in integer?
Resolvido
|
|
4
abr. 23
|
34384 | |
Integer Field Converts Value to Zero
Resolvido
|
|
1
mar. 23
|
1828 | |
|
1
dez. 21
|
2107 |