mirror of
https://github.com/OCA/rma.git
synced 2025-02-16 17:11:47 +02:00
44 lines
1.6 KiB
Python
44 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# Copyright 2015 Vauxoo
|
|
# Copyright 2013 Camptocamp
|
|
# Copyright 2009-2013 Akretion,
|
|
# Author: Emmanuel Samyn, Raphaël Valyi, Sébastien Beau,
|
|
# Benoît Guillot, Joel Grand-Guillaume,
|
|
# Osval Reyes, Yanina Aular
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
from openerp import api, models
|
|
|
|
|
|
class AccountInvoiceLine(models.Model):
|
|
|
|
_inherit = "account.invoice.line"
|
|
|
|
@api.model
|
|
def create(self, vals):
|
|
claim_line_id = vals.get('claim_line_id')
|
|
if claim_line_id:
|
|
del vals['claim_line_id']
|
|
|
|
line = super(AccountInvoiceLine, self).create(vals)
|
|
if claim_line_id:
|
|
claim_line = self.env['claim.line'].browse(claim_line_id)
|
|
claim_line.refund_line_id = line.id
|
|
|
|
return line
|