Hi,
I try to override the model crm.lead.report
But my field doesn't appear in the database
This is my python code
from openerp.osv import orm, fields
class account_invoice_report(orm.Model):
    _inherit = 'crm.lead.report'
   
    _columns = {
        'other_turnover': fields.float('Other turnover'),
    }
Anyone have an idea?
