# -*- coding: utf-8 -*- from odoo import models, fields, api, _ import logging _logger = logging.getLogger(__name__) class AccountMove(models.Model): _inherit = 'account.move' related_stripe_id = fields.Char(string="Related Stripe Invoice")