mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
9 lines
290 B
Python
9 lines
290 B
Python
|
# © 2015-2016 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
|
||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||
|
|
||
|
|
||
|
def set_default_initiating_party(env):
|
||
|
for company in env["res.company"].search([]):
|
||
|
company._default_initiating_party()
|
||
|
return
|