mirror of
https://gitlab.com/flectra-hq/flectra.git
synced 2026-08-19 01:34:43 -05:00
13 lines
474 B
Python
13 lines
474 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
from flectra import fields, models, api
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
_inherit = 'account.move'
|
|
|
|
website_id = fields.Many2one('website', related='partner_id.website_id', string='Website',
|
|
help='Website through which this invoice was created.',
|
|
store=True, readonly=True, tracking=True)
|