I'm building a custom module where I'll only be using account.invoices data. So when creating the module, on the manifest I would set its dependencies like
'depends': ['account']
or should I use
'depends': ['base','account']
Which one would be the best practice?
What would be the difference?
I'm working on Odoo11
Thanks in advance.