Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odpovědi
10644 Zobrazení

How to Unique constraint a field in custom model on Odoo Enterprise 12.0 Online?

Avatar
Zrušit
Nejlepší odpověď

Hi Tameem,

I think you are trying to make the Unique field.

Usually, this is handled by SQL Constraints. In your case, you are using Odoo Online. So we must think differently to make it possible.

Anyway

Try this way. Maybe you will get the result you wish.

  1. Create an Automated action with the following parameters.

    • Model: your custom model

    • Trigger Condition: On Update

    • Action To Do: Execute Python Code

    • In the python code, try this code

new_value = record.YourFieldName
existing_records = env['Your.Model'].search([('YourFieldName', '=', new_value)])
if len(existing_records) > 1:
    raise Warning('Field value must be unique')


Thanks

Avatar
Zrušit
Autor

Dear Avinash,

Your answer worked perfectly!

Thank you for your reply.

My pleasure

Hello, do you know if we can manage to do the same using Studio ?

Nejlepší odpověď

Hello, Avinash's answer works for me too but instead of having the warning I setted I have an Odoo error about the automated action itself. Do you know how to solve this ?

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
lis 24
1399
2
led 24
4709
3
čvc 25
563
2
čvc 25
3866
2
zář 21
4862