Spaces:
Sleeping
Sleeping
updated process.py
Browse files- process.py +78 -56
process.py
CHANGED
|
@@ -4,71 +4,93 @@ import re
|
|
| 4 |
from datetime import timedelta
|
| 5 |
|
| 6 |
|
| 7 |
-
def process_data(files_mindbody, files_medserv,
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
-
# Initialize an empty list to store unmatched rows
|
| 34 |
unmatched_rows = []
|
| 35 |
|
| 36 |
-
|
|
|
|
| 37 |
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
# Filter medserv based on the date range and name criteria
|
| 51 |
-
matches = medserv[((medserv['DOS'].dt.date.isin(date_range)) &
|
| 52 |
-
((medserv['First Name'].str.lower() == first_name.lower()) |
|
| 53 |
-
(medserv['Last Name'].str.lower() == last_name.lower())))]
|
| 54 |
-
|
| 55 |
-
# If no match is found, append the row to the unmatched_rows list
|
| 56 |
-
if matches.empty:
|
| 57 |
-
unmatched_rows.append(mindbody.iloc[idx])
|
| 58 |
|
| 59 |
-
|
| 60 |
-
|
|
|
|
|
|
|
| 61 |
|
| 62 |
-
|
| 63 |
-
|
|
|
|
|
|
|
|
|
|
| 64 |
|
| 65 |
-
|
| 66 |
-
|
|
|
|
| 67 |
|
| 68 |
-
|
| 69 |
-
|
| 70 |
|
| 71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
|
| 73 |
|
| 74 |
|
|
|
|
| 4 |
from datetime import timedelta
|
| 5 |
|
| 6 |
|
| 7 |
+
def process_data(files_mindbody, files_medserv, tolerance, progress=gr.tqdm):
|
| 8 |
+
|
| 9 |
+
try:
|
| 10 |
+
mindbody = load_data(files_mindbody)
|
| 11 |
+
medserv = load_data(files_medserv)
|
| 12 |
+
except Exception as e:
|
| 13 |
+
print(f"An error occurred while loading data: {e}")
|
| 14 |
+
return None
|
| 15 |
+
|
| 16 |
+
try:
|
| 17 |
+
# Remove multiple commas from the 'Client' column
|
| 18 |
+
medserv['Client'] = medserv['Client'].str.replace(r',+', ',', regex=True)
|
| 19 |
+
mindbody['Client'] = mindbody['Client'].str.replace(r',+', ',', regex=True)
|
| 20 |
+
|
| 21 |
+
# Split 'Client' names into first name and last name components for both DataFrames
|
| 22 |
+
medserv[['Last Name', 'First Name']] = medserv['Client'].str.split(',', expand=True)
|
| 23 |
+
mindbody[['Last Name', 'First Name']] = mindbody['Client'].str.split(',', expand=True)
|
| 24 |
+
except Exception as e:
|
| 25 |
+
print(f"An error occurred while processing client names: {e}")
|
| 26 |
+
|
| 27 |
+
try:
|
| 28 |
+
mindbody['DOS'] = pd.to_datetime(mindbody['DOS'], format='%d/%m/%Y')
|
| 29 |
+
except Exception as e:
|
| 30 |
+
print(f"An error occurred while converting dates in mindbody: {e}")
|
| 31 |
+
|
| 32 |
+
try:
|
| 33 |
+
# Split dates if they contain commas in the 'DOS' column of medserv
|
| 34 |
+
medserv['DOS'] = medserv['DOS'].astype(str)
|
| 35 |
+
medserv['DOS'] = medserv['DOS'].str.split(',')
|
| 36 |
+
medserv = medserv.explode('DOS')
|
| 37 |
+
|
| 38 |
+
# Attempt to convert dates using multiple formats
|
| 39 |
+
formats_to_try = ['%d/%m/%Y', '%Y-%m-%d'] # Add more formats as needed
|
| 40 |
+
for format_to_try in formats_to_try:
|
| 41 |
+
try:
|
| 42 |
+
medserv['DOS'] = pd.to_datetime(medserv['DOS'].str.strip(), format=format_to_try)
|
| 43 |
+
break # Break out of loop if conversion succeeds
|
| 44 |
+
except ValueError:
|
| 45 |
+
continue # Continue to next format if conversion fails
|
| 46 |
+
except Exception as e:
|
| 47 |
+
print(f"An error occurred while processing dates in medserv: {e}")
|
| 48 |
|
|
|
|
| 49 |
unmatched_rows = []
|
| 50 |
|
| 51 |
+
try:
|
| 52 |
+
rows = len(mindbody)
|
| 53 |
|
| 54 |
+
# Iterate through each row in the mindbody DataFrame
|
| 55 |
+
for idx in progress(range(rows), desc='Analyzing files...'):
|
| 56 |
+
# Extract relevant information from the current row
|
| 57 |
+
date = mindbody.iloc[idx]['DOS']
|
| 58 |
+
first_name = mindbody.iloc[idx]['First Name']
|
| 59 |
+
last_name = mindbody.iloc[idx]['Last Name']
|
| 60 |
+
|
| 61 |
+
# Define the range of dates to search for a match in medserv
|
| 62 |
+
date_range = [date - timedelta(days=i) for i in range(tolerance, -tolerance-1, -1)]
|
| 63 |
+
# Remove the time component from the dates in date_range
|
| 64 |
+
date_range = [d.date() for d in date_range]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
|
| 66 |
+
# Filter medserv based on the date range and name criteria
|
| 67 |
+
matches = medserv[((medserv['DOS'].dt.date.isin(date_range)) &
|
| 68 |
+
((medserv['First Name'].str.lower() == first_name.lower()) |
|
| 69 |
+
(medserv['Last Name'].str.lower() == last_name.lower())))]
|
| 70 |
|
| 71 |
+
# If no match is found, append the row to the unmatched_rows list
|
| 72 |
+
if matches.empty:
|
| 73 |
+
unmatched_rows.append(mindbody.iloc[idx])
|
| 74 |
+
except Exception as e:
|
| 75 |
+
print(f"An error occurred while analyzing files: {e}")
|
| 76 |
|
| 77 |
+
try:
|
| 78 |
+
# Create a DataFrame from the unmatched_rows list
|
| 79 |
+
unmatched_df = pd.DataFrame(unmatched_rows, columns=mindbody.columns)
|
| 80 |
|
| 81 |
+
# Specify the columns to include in the output Excel file
|
| 82 |
+
columns_to_include = ['DOS', 'Client ID', 'Client', 'Sale ID', 'Item name', 'Location', 'Item Total']
|
| 83 |
|
| 84 |
+
# Format the 'DOS' column to remove time part
|
| 85 |
+
unmatched_df['DOS'] = unmatched_df['DOS'].dt.strftime('%d-%m-%Y')
|
| 86 |
+
|
| 87 |
+
output_file_path = 'Comparison Results.xlsx'
|
| 88 |
+
unmatched_df[columns_to_include].to_excel(output_file_path, index=False)
|
| 89 |
+
|
| 90 |
+
return output_file_path
|
| 91 |
+
except Exception as e:
|
| 92 |
+
print(f"An error occurred while creating the output file: {e}")
|
| 93 |
+
return None
|
| 94 |
|
| 95 |
|
| 96 |
|