mirror of
https://github.com/ForgeFlow/stock-rma.git
synced 2025-01-21 12:57:49 +02:00
25 lines
709 B
Python
25 lines
709 B
Python
# Copyright 2022 ForgeFlow S.L.
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class RmaOperation(models.Model):
|
|
_inherit = "rma.operation"
|
|
|
|
scrap_policy = fields.Selection(
|
|
selection=[
|
|
("no", "Not required"),
|
|
("ordered", "Based on Ordered Quantities"),
|
|
("received", "Based on Received Quantities"),
|
|
],
|
|
string="Scrap Policy",
|
|
default="no",
|
|
)
|
|
|
|
scrap_location_id = fields.Many2one(
|
|
comodel_name="stock.location",
|
|
string="Scrap Destination Location",
|
|
domain="[('scrap_location', '=', True), ('company_id', 'in', [company_id, False])]",
|
|
)
|