[MIG] migrate add-on account_quotation_sale_order_invoice_title

This commit is contained in:
Stéphan Sainléger
2024-08-02 10:32:47 +02:00
parent f329a27f4b
commit c521801cb3
10 changed files with 262 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
from . import sale_make_invoice_advance

View File

@@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
from odoo import models
class SaleAdvancePaymentInv(models.TransientModel):
_inherit = "sale.advance.payment.inv"
def _prepare_invoice_values(self, order, name, amount, so_line):
res = super(SaleAdvancePaymentInv, self)._prepare_invoice_values(
order, name, amount, so_line
)
res["move_title"] = order.so_title
return res