ingadhoc/miscellaneous#354

Created by rov-adhoc
label
adhoc-dev:18.0-h-108505-rov
head
cafc77dbab910bf28e17e605cbe22e6dd10075b8
merged
hace 1 semana by Filoquin adhoc
ingadhoc/miscellaneous
18.0 #354
19.0 #356

[IMP] account_statement_import_sheet_file_bg: Filter empty rows by date column

Stop processing Excel rows when timestamp column is empty

Previously, the import would process all rows in the Excel file until the end, including thousands of empty rows. This caused performance issues and unnecessary data processing.

Now the system:
- Identifies the date/timestamp column from sheet_mapping_id configuration
- Only processes rows where the timestamp column has a value
- Stops processing at the first empty timestamp row

This prevents importing empty rows and improves performance when handling Excel files with many empty rows at the end.