mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
9 lines
182 B
Python
9 lines
182 B
Python
def post_init_hook(env):
|
|
env.cr.execute(
|
|
"""
|
|
UPDATE account_bank_statement_line
|
|
SET reconcile_mode = 'edit'
|
|
WHERE is_reconciled
|
|
"""
|
|
)
|