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