mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
18 lines
542 B
Python
18 lines
542 B
Python
# Copyright 2016 Akretion - Alexis de Lattre
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from flectra import models, api
|
|
|
|
|
|
class SaleAdvancePaymentInv(models.TransientModel):
|
|
_inherit = 'sale.advance.payment.inv'
|
|
|
|
@api.multi
|
|
def _create_invoice(self, order, so_line, amount):
|
|
"""Copy payment mode from sale order to invoice"""
|
|
inv = super()._create_invoice(order, so_line, amount)
|
|
vals = order._get_payment_mode_vals({})
|
|
if vals:
|
|
inv.write(vals)
|
|
return inv
|