mirror of
https://github.com/ForgeFlow/stock-rma.git
synced 2025-01-21 12:57:49 +02:00
[14.0][ADD] rma_delivery
This commit is contained in:
13
rma_delivery/models/rma_operation.py
Normal file
13
rma_delivery/models/rma_operation.py
Normal file
@@ -0,0 +1,13 @@
|
||||
# Copyright (C) 2022 ForgeFlow S.L.
|
||||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html)
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class RmaOperation(models.Model):
|
||||
|
||||
_inherit = "rma.operation"
|
||||
|
||||
default_carrier_id = fields.Many2one(
|
||||
comodel_name="delivery.carrier", string="Default carrier", required=False
|
||||
)
|
||||
Reference in New Issue
Block a user