33 lines
847 B
Python
33 lines
847 B
Python
from pathlib import Path
|
|
|
|
import click
|
|
|
|
from odoo_openupgrade_wizard.cli_options import (
|
|
database_option_required,
|
|
get_migration_step_from_options,
|
|
step_option,
|
|
)
|
|
from odoo_openupgrade_wizard.tools_odoo import execute_click_odoo_python_files
|
|
|
|
|
|
@click.command()
|
|
@step_option
|
|
@database_option_required
|
|
@click.option(
|
|
"--script-file-path",
|
|
multiple=True,
|
|
type=click.Path(
|
|
exists=True,
|
|
dir_okay=False,
|
|
),
|
|
help="List of python files that will be executed, replacing the default"
|
|
" scripts placed in the migration step folder.",
|
|
)
|
|
@click.pass_context
|
|
def execute_script_python(ctx, step, database, script_file_path):
|
|
migration_step = get_migration_step_from_options(ctx, step)
|
|
|
|
execute_click_odoo_python_files(
|
|
ctx, database, migration_step, [Path(x) for x in script_file_path]
|
|
)
|