init branch

This commit is contained in:
Jordi Ballester
2017-07-27 18:17:19 +02:00
committed by ahenriquez
parent 288ab924f9
commit 70aea6b24b
19 changed files with 1293 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
# © 2017 Eficent Business and IT Consulting Services S.L.
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html)
from openerp import _, api, fields, models
class RmaOperation(models.Model):
_inherit = 'rma.operation'
refund_policy = fields.Selection([
('no', 'No refund'), ('ordered', 'Based on Ordered Quantities'),
('received', 'Based on Received Quantities')], string="Refund Policy",
default='no')