mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
When unreconciling a bank statement line that is matched with a bank account move lines linked to a bank.payment.line, it must be unbound, not deleted as the standard Odoo method would do. Note the standard Odoo method has such protection for their native payment lines.
12 lines
309 B
Python
12 lines
309 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from . import account_payment_mode
|
|
from . import account_payment_order
|
|
from . import account_payment_line
|
|
from . import bank_payment_line
|
|
from . import account_move
|
|
from . import account_move_line
|
|
from . import account_invoice
|
|
from . import res_bank
|
|
from . import bank_statement_line
|