mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
29 lines
945 B
Python
29 lines
945 B
Python
from odoo import api, fields, models
|
|
|
|
|
|
class ContractContract(models.Model):
|
|
_inherit = "contract.contract"
|
|
|
|
payment_mode_id = fields.Many2one(
|
|
comodel_name="account.payment.mode",
|
|
string="Payment Mode",
|
|
domain=[("payment_type", "=", "inbound")],
|
|
index=True,
|
|
)
|
|
|
|
@api.onchange("partner_id")
|
|
def on_change_partner_id(self):
|
|
partner = self.with_company(self.company_id).partner_id
|
|
if self.contract_type == "purchase":
|
|
self.payment_mode_id = partner.supplier_payment_mode_id.id
|
|
else:
|
|
self.payment_mode_id = partner.customer_payment_mode_id.id
|
|
|
|
def _prepare_invoice(self, date_invoice, journal=None):
|
|
invoice_vals = super()._prepare_invoice(
|
|
date_invoice=date_invoice, journal=journal
|
|
)
|
|
if self.payment_mode_id:
|
|
invoice_vals["payment_mode_id"] = self.payment_mode_id.id
|
|
return invoice_vals
|