odoo_class_inherit 146 B

123456789
  1. # name: Odoo Class Inherit
  2. # key: class inherit odoo
  3. # --
  4. class ${1:ClassName}(models.${2:class_type}):
  5. _inherit = '${3:class.name}'
  6. $0