You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
363 B
10 lines
363 B
def migrate(cr, version):
|
|
# pre-paid/post-paid becomes significant for monthlylastday too,
|
|
# make sure it has the value that was implied for previous versions.
|
|
cr.execute(
|
|
"""\
|
|
UPDATE product_template
|
|
SET recurring_invoicing_type = 'post-paid'
|
|
WHERE recurring_rule_type = 'monthlylastday'
|
|
"""
|
|
)
|