import gradio as gr import json from datetime import datetime from patient_registration import register_patient from test_selection import select_tests, get_tests_by_category from billing import fetch_billing # Load data def load_data(): try: with open("data.json", "r") as file: data = json.load(file) return data.get("patients", {}), data.get("last_sequence", {"year": None, "month": None, "number": 0}) except FileNotFoundError: return {}, {"year": None, "month": 0, "number": 0} # Save data def save_data(patients, last_sequence): with open("data.json", "w") as file: json.dump({"patients": patients, "last_sequence": last_sequence}, file) # Generate patient ID def generate_patient_id(phone, last_sequence): today = datetime.now() current_year = today.year current_month = today.month if last_sequence["year"] != current_year or last_sequence["month"] != current_month: last_sequence["year"] = current_year last_sequence["month"] = current_month last_sequence["number"] = 1 else: last_sequence["number"] += 1 patient_id = f"{current_year}{current_month:02d}{last_sequence['number']:05d}" return patient_id # Patient Registration Tab def registration_interface(name, father_name, age, gender, phone, address): patients, last_sequence = load_data() patient_id = generate_patient_id(phone, last_sequence) patients[patient_id] = { "name": name, "father_name": father_name, "age": age, "gender": gender, # Updated field for gender "phone": phone, "address": address, "tests": [], "total_cost": 0 } save_data(patients, last_sequence) return f"Patient Registered. Patient ID: {patient_id}" # Tests Selection Tab def test_interface(categories): available_tests = get_tests_by_category(categories) return gr.update(choices=available_tests) def confirm_tests_interface(patient_id, selected_tests): patients, last_sequence = load_data() response = select_tests(patient_id, selected_tests, patients) save_data(patients, last_sequence) return response # Billing Tab def billing_interface(patient_id): patients, _ = load_data() if patient_id in patients: billing_info = fetch_billing(patient_id, patients) return billing_info else: return "Invalid Patient ID. Please check the ID." # Custom CSS styling custom_css = """ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap'); /* General Page Style */ body { font-family: 'Poppins', Arial, sans-serif; background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fad0c4); color: #333333; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; } /* Heading Colors */ h1 { color: #4A90E2; /* Soft blue for h1 */ text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3); } h2, h3, h4, h5, h6 { color: #F582AE; /* Pink for other headings */ text-shadow: 2px 2px 6px rgba(255, 105, 180, 0.3); } /* Header Styling */ #header { color: #FF6F61; text-align: center; font-weight: 700; font-size: 2.5em; margin-bottom: 25px; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3); letter-spacing: 1px; transition: color 0.3s ease; } #header:hover { color: #FF4081; transform: scale(1.05); } /* Container Style */ .gradio-container { max-width: 850px; margin: 30px auto; padding: 40px; background: linear-gradient(135deg, #ffffff, #f8efff); border-radius: 15px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); color: #333333; } /* Form Field Styles */ input, select, textarea { max-width: 700px; border: 1px solid #FF6F61; border-radius: 8px; padding: 10px 12px; background: #fefefe; color: #333333; font-size: 15px; margin-bottom: 20px; transition: all 0.3s ease; box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15); } input:focus, select:focus, textarea:focus { border-color: #F582AE; box-shadow: 0px 3px 8px rgba(245, 130, 174, 0.4); } /* Radio Button Group Styling */ .gr-radio-group label { display: flex; align-items: center; justify-content: center; padding: 10px 20px; border: 2px solid #FF6F61; border-radius: 8px; transition: all 0.3s ease; cursor: pointer; color: #FF6F61; background: #ffe7e0; box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1); margin-right: 10px; } .gr-radio-group label:hover { background: #f8cfd0; color: #D84315; } /* Radio Button Styling */ .gr-radio-group input[type="radio"] { appearance: none; width: 20px; height: 20px; border: 2px solid #FF6F61; border-radius: 50%; margin-right: 10px; transition: all 0.3s ease; position: relative; } .gr-radio-group input[type="radio"]:checked { background-color: #FF8A65; border-color: #FF8A65; } .gr-radio-group input[type="radio"]:checked::after { content: "โœ“"; color: #ffffff; font-size: 14px; position: absolute; top: 1px; left: 1px; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background-color: #FF8A65; } /* Adjust label for responsive alignment */ .gr-radio-group span { font-size: 1em; font-weight: 600; color: #333333; } /* Tab Styling */ .nav-tabs { display: flex; justify-content: space-around; background-color: #ffffff !important; border-bottom: 1px solid #dddddd !important; padding: 12px !important; gap: 20px !important; border-radius: 10px; } .nav-tabs .nav-item { font-size: 1.2em !important; color: #555555 !important; padding: 10px 18px !important; cursor: pointer !important; font-weight: 500 !important; border: 2px solid transparent !important; border-radius: 8px !important; transition: color 0.3s, border-color 0.3s !important; } .nav-tabs .nav-item:hover { color: #42A5F5 !important; background-color: rgba(66, 165, 245, 0.1) !important; } .nav-tabs .nav-item.active { color: #1E88E5 !important; border-bottom: 3px solid #1E88E5 !important; font-weight: 700 !important; background-color: rgba(66, 165, 245, 0.2) !important; padding: 8px 16px !important; } /* Output Text Styling */ #registration_output, #test_output, #billing_output { color: #333333 !important; background-color: rgba(255, 245, 238, 0.95) !important; padding: 15px; border-radius: 7px; font-weight: bold; text-align: left; } """ # Gradio Interface with gr.Blocks(css=custom_css) as app: gr.Markdown("

๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ฌไธ‚ๅ‚ใ„’ๅ„าœๅฐบใ„ฉใ„’ๅ„ๅ‚ ใ„ฅไธจ็ˆชไธ‚๐Ÿ”ฌ

", elem_id="header") with gr.Tab("Patient Registration"): gr.Markdown("

Register a New Patient

") with gr.Row(): name = gr.Textbox(label="Patient Name", placeholder="Enter patient's full name", elem_id="name_field") father_name = gr.Textbox(label="Father/Husband's Name", placeholder="Enter father/husband's full name", elem_id="father_name_field") with gr.Row(): age = gr.Number(label="Age", value=None, minimum=0, maximum=120, elem_id="age_field") gender = gr.Radio( choices=["Male", "Female", "Other"], label="Gender", elem_id="gender_field" ) with gr.Row(): phone = gr.Textbox(label="Phone Number", placeholder="Enter a valid 10-digit phone number", elem_id="phone_field") address = gr.Textbox(label="Address", placeholder="Enter full address", lines=2, elem_id="address_field") register_button = gr.Button("Register Patient", elem_id="register_button") registration_output = gr.Markdown(label="Registration Output", elem_id="registration_output") register_button.click(registration_interface, [name, father_name, age, gender, phone, address], registration_output) with gr.Tab("Tests"): gr.Markdown("

Select Tests for the Patient

") patient_id_test = gr.Textbox(label="Patient ID", placeholder="Enter Patient ID") categories = gr.CheckboxGroup( ["Haematology", "Clinical Pathology", "Biochemistry", "Microbiology", "Specific Diseases", "Serology", "Radiology", "Other Diagnostic Tests"], label="Select Test Categories" ) available_tests = gr.CheckboxGroup(label="Available Tests") confirm_button = gr.Button("Confirm Selected Tests") # Use Markdown for Test Selection Output to allow for auto-expanding content test_output = gr.Markdown(label="Test Selection Output", elem_id="test_output") categories.change(test_interface, inputs=categories, outputs=available_tests) confirm_button.click(confirm_tests_interface, [patient_id_test, available_tests], test_output) with gr.Tab("Billing"): gr.Markdown("

Billing Information

") patient_id_bill = gr.Textbox(label="Patient ID", placeholder="Enter Patient ID for Billing") fetch_button = gr.Button("Fetch Billing Details") # Use Markdown for Billing Output to allow for auto-expanding content billing_output = gr.Markdown(label="Billing Information", elem_id="billing_output") fetch_button.click(billing_interface, [patient_id_bill], billing_output) app.launch()