[14.0][ADD] rma_delivery

This commit is contained in:
Christopher Ormaza
2022-03-14 09:14:21 -05:00
parent 990cc5fa7b
commit b51fac0a64
15 changed files with 627 additions and 0 deletions

View 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
)