mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
11 lines
271 B
Python
11 lines
271 B
Python
# Copyright 2018 Creu Blanca
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class StockRequest(models.Model):
|
|
_inherit = 'stock.request'
|
|
|
|
kanban_id = fields.Many2one('stock.request.kanban', readonly=True)
|