mirror of
https://github.com/bringout/oca-ocb-accounting.git
synced 2026-04-18 03:22:06 +02:00
8 lines
187 B
Python
8 lines
187 B
Python
def post_init_hook(cr, registry):
|
|
cr.execute(
|
|
"""
|
|
UPDATE account_bank_statement_line
|
|
SET reconcile_mode = 'edit'
|
|
WHERE is_reconciled
|
|
"""
|
|
)
|