mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
Add a company config option to decide whether to create or to extend contract line at renew action
8 lines
166 B
Python
8 lines
166 B
Python
def migrate(cr, version):
|
|
cr.execute(
|
|
"""\
|
|
UPDATE res_company
|
|
SET create_new_line_at_contract_line_renew = true
|
|
"""
|
|
)
|