Merge results obtained till project pause #2

Merged
foefl merged 13 commits from proto into main 2026-06-11 07:11:02 +00:00
Showing only changes of commit 8b31548526 - Show all commits

View File

@@ -165,7 +165,9 @@ def clear_result_data() -> None:
conn.execute(sql.delete(db.EXT_DOPT_ERGEBNIS))
def save_result_data_native(results: pl.DataFrame) -> None:
def save_result_data_native(
results: pl.DataFrame,
) -> None:
results = results.with_columns(
[
pl.when(pl.col(c)).then(pl.lit("Y")).otherwise(pl.lit("N")).alias(c)
@@ -366,6 +368,7 @@ def get_expr_order_qty(
return func
# // begin workflows
def wf900(
pipe_result: PipelineResult,
) -> PipelineResult: