hint for insertion of date plausibility check, related to #31

This commit is contained in:
Florian Förster 2025-05-07 09:16:11 +02:00
parent 9881070425
commit 3011ca46cd
2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[project]
name = "delta-barth"
version = "0.5.9"
version = "0.5.10dev1"
description = "workflows and pipelines for the Python-based Plugin of Delta Barth's ERP system"
authors = [
{name = "Florian Förster", email = "f.foerster@d-opt.com"},
@ -74,7 +74,7 @@ directory = "reports/coverage"
[tool.bumpversion]
current_version = "0.5.9"
current_version = "0.5.10dev1"
parse = """(?x)
(?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\.

View File

@ -192,6 +192,9 @@ def _process_sales(
DATE_FEAT: Final[str] = "buchungs_datum"
SALES_FEAT: Final[str] = "betrag"
# TODO: add pre-filter to filter out non-relevant dates, see issue #31
df_filter = data[(data["betrag"] > 0)]
df_cust = df_filter.copy()
df_cust = df_cust.sort_values(by=DATE_FEAT).reset_index()