I have written Model class for Customer in custom_addon/medicine/models directory
for add new field in customer view
buyer.pyfrom odoo import api, fields, models
class Buyer(models.Model):
_inherit = "res.partner"
buyer_name = fields.Char(string='Buyer Name', required=True)And In __manifest__.py I want to add depends modules for customer however I am not able
to find what should I add in following attribute depends to inherit Customer View and add new fields.
'depends': [''],I have tried following ref: https://www.youtube.com/watch?v=3iY3ea-wvjw
Inheritance in model and views: https://goo.gl/4Zyc9d