mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-23 06:52:09 +02:00
10 lines
271 B
Python
10 lines
271 B
Python
# Copyright 2018 Creu Blanca
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class StockRequest(models.Model):
|
|
_inherit = "stock.request"
|
|
|
|
kanban_id = fields.Many2one("stock.request.kanban", readonly=True)
|