mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
Add option 'mandate_required' on payment orders Autoselect first valid mandate on customer invoice that have a payment mode 'mandate_required' = True Add option on select move lines to pay wizard to allow selection of litigation moves (unchecked by default), in order to integrate the feature of the module account_payment_blocking
14 lines
495 B
Python
14 lines
495 B
Python
# -*- coding: utf-8 -*-
|
|
# © 2014 Compassion CH - Cyril Sester <csester@compassion.ch>
|
|
# © 2015 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from . import account_banking_mandate
|
|
from . import account_payment_mode
|
|
from . import account_payment_order
|
|
from . import account_invoice
|
|
from . import res_partner_bank
|
|
from . import account_payment_line
|
|
from . import bank_payment_line
|
|
from . import account_move_line
|