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