View Inheritance In Odoo | Extend Views in Odoo | Basic overview of view inheritance

Поділитися
Вставка
  • Опубліковано 1 лют 2025

КОМЕНТАРІ • 12

  • @Weblearns
    @Weblearns  3 роки тому +4

    You want to learn more about Odoo inheritance, please check below link.
    ua-cam.com/play/PLAR8TpPnVeTSfczpIKvh_ZvdD8G1yT2EF.html
    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-shah
    @darshna-shah 2 роки тому

    very very good explanation........especially for who doesn't know what is inheritance in odoo.

  • @EverythingisOnline
    @EverythingisOnline 5 місяців тому +1

    Thank you very much how to add a new option value inside selection field. For standard models. Inside or attribute ?

    • @Weblearns
      @Weblearns  5 місяців тому

      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",
      )

  • @kenzasouabni
    @kenzasouabni 2 роки тому

    how can i do something like the school_inherit_views without scaffold

    • @Weblearns
      @Weblearns  2 роки тому

      ua-cam.com/play/PLAR8TpPnVeTSfczpIKvh_ZvdD8G1yT2EF.html
      Pls check this playlist.

  • @robertamberwich1368
    @robertamberwich1368 7 місяців тому

    How to identify view and how to add element to the existing view ?

    • @Weblearns
      @Weblearns  6 місяців тому

      Well its explained already please refer view related playlist :)

  • @mdmohiuddin7566
    @mdmohiuddin7566 2 роки тому

    Outstanding