11 lines
288 B
Python
11 lines
288 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, fields, api
|
|
|
|
|
|
class Stock(models.Model):
|
|
_inherit = 'stock.warehouse'
|
|
|
|
l10n_in_sale_journal_id = fields.Many2one('account.journal', string="Sale Journal")
|