TypeError(repr(o) + “ is not JSON serializable”) - Odoo v8
问题 I have this method, which calls for a document associated with an invoice on Odoo v8. @api.multi def button_generate_wh_doc(self): context = self._context partner = self.env['res.partner'] res = {} for inv in self: view_id = self.env['ir.ui.view'].search([ ('name', '=', 'account.invoice.wh.iva.customer')]) context = self.env.context.copy() context.update({'domain':[( ('invoice_id','=',inv.id), ('type','=',inv.type), ('default_partner_id','=', partner._find_accounting_partner( inv.partner_id)