Skip to content

Instantly share code, notes, and snippets.

@bangjc
bangjc / odoo.txt
Created April 15, 2024 07:47
let's sharing about odoo
im using odoo 12 for now and i will share about tricks how i did custom development of my odoo ERP
@bangjc
bangjc / archive.py
Created April 15, 2024 07:37
odoo -> this code to add an addons for archive the data were not active anymore
active = fields.Boolean('Active', default=True)
@bangjc
bangjc / prevent_duplicate.py
Last active April 15, 2024 07:36
this is how i secure my odoo database for decline the duplicating, add this code by studio
# add this code on server action
if record.field:
existing_field= env['your_model'].search([('id','!=',record.id),('field','=',record.field)])
if existing_field:
raise Warning("your message")