You want to learn more about Odoo inheritance, please check below link. kzbin.info/aero/PLAR8TpPnVeTSfczpIKvh_ZvdD8G1yT2EF DonateUS :- ko-fi.com/weblearns paypal.me/weblearners For business inquiry :- inquiryweblearns@gmail.com Source Code :- github.com/er-harsh-dhaduk/odoo-training Subscribe - Share - Comment/Suggestion - Enjoy - DonateUS
@darshna-shah2 жыл бұрын
very very good explanation........especially for who doesn't know what is inheritance in odoo.
@Weblearns2 жыл бұрын
Thank you🌹🙏❤
@EverythingisOnline5 ай бұрын
Thank you very much how to add a new option value inside selection field. For standard models. Inside or attribute ?
@Weblearns5 ай бұрын
1) Extend option at last. your_selection_field = fields.Selection( selection_add=[ ('new_value', 'New Value'), ], ) 2) Override options using like this. your_selection_field = fields.Selection( [ ('A', 'A'), ('B', 'B'), ('D', 'D'), # Adding the new option here Before 'C' ('C', 'C'), ], string="Your Selection Field", ) 3) Before C option you can add new option as D your_selection_field = fields.Selection( selection_add = [('D', 'D'), ('C',)] string="Your Selection Field", )
@mdmohiuddin75662 жыл бұрын
Outstanding
@kenzasouabni2 жыл бұрын
how can i do something like the school_inherit_views without scaffold
@Weblearns2 жыл бұрын
kzbin.info/aero/PLAR8TpPnVeTSfczpIKvh_ZvdD8G1yT2EF Pls check this playlist.
@robertamberwich13687 ай бұрын
How to identify view and how to add element to the existing view ?
@Weblearns6 ай бұрын
Well its explained already please refer view related playlist :)