mirror of
https://github.com/ForgeFlow/stock-rma.git
synced 2025-01-21 12:57:49 +02:00
[IMP] : black, isort
This commit is contained in:
@@ -5,10 +5,15 @@ from odoo import fields, models
|
||||
|
||||
|
||||
class RmaOperation(models.Model):
|
||||
_inherit = 'rma.operation'
|
||||
_inherit = "rma.operation"
|
||||
|
||||
refund_policy = fields.Selection([
|
||||
('no', 'No refund'), ('ordered', 'Based on Ordered Quantities'),
|
||||
('delivered', 'Based on Delivered Quantities'),
|
||||
('received', 'Based on Received Quantities')], string="Refund Policy",
|
||||
default='no')
|
||||
refund_policy = fields.Selection(
|
||||
[
|
||||
("no", "No refund"),
|
||||
("ordered", "Based on Ordered Quantities"),
|
||||
("delivered", "Based on Delivered Quantities"),
|
||||
("received", "Based on Received Quantities"),
|
||||
],
|
||||
string="Refund Policy",
|
||||
default="no",
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user