Files
rma/crm_claim_rma/models/stock_picking.py
2016-06-08 15:43:40 +02:00

15 lines
339 B
Python

# -*- coding: utf-8 -*-
# © 2015 Eezee-It, MONK Software, Vauxoo
# © 2013 Camptocamp
# © 2009-2013 Akretion,
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openerp import fields, models
class StockPicking(models.Model):
_inherit = "stock.picking"
claim_id = fields.Many2one('crm.claim', 'Claim')