Odoo Mindscape. Understand Odoo faster. Explore modules, fields, dependencies and version differences in one place instead of digging through the source code.
Module: Invoicing
Entity: account.payment
Compute Method: _compute_name
| Inputs | Method | Outputs |
|---|---|---|
|
+ for payment in self: + if payment.id and (not payment.name or payment.move_id and payment.name != payment.move_id.name) and payment.state in ('in_process', 'paid'): + payment.name = ( + payment.move_id.name + or self.env['ir.sequence'].with_company(payment.company_id).next_by_code( + 'account.payment', + sequence_date=payment.date, + ) + ) |
|
