{% extends 'base.html' %} {% load static %} {% block title %}{% if claim %}Edit Claim {{ claim.claim_number }}{% else %}New Insurance Claim{% endif %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% if claim %}Edit Claim {{ claim.claim_number }}{% else %}New Insurance Claim{% endif %}

{% if claim %}Update the insurance claim details{% else %}Create a new insurance claim for patient services{% endif %}

Cancel
{% csrf_token %}

Basic Information

Select the patient for this claim
Select the insurance policy to use for this claim
Normal priority claim
Date when the service was provided

Service Provider Information

Name of the healthcare provider
Saudi Medical License number (optional)
Name of the healthcare facility
MOH facility license number (optional)

Medical Information

ICD-10 diagnosis code
Description of the primary diagnosis
Secondary Diagnoses
{% if claim and claim.secondary_diagnosis_codes %} {% for diagnosis in claim.secondary_diagnosis_codes %}
{% endfor %} {% endif %}
Procedures
{% if claim and claim.procedure_codes %} {% for procedure in claim.procedure_codes %}
{% endfor %} {% endif %}

Financial Information

Total amount billed for services
Required for certain procedures (optional)

Saudi-specific Information

10-digit Saudi National ID or Iqama number
Insurance card number from physical card

Additional Information

Additional notes or comments about this claim
Cancel
{% endblock %} {% block extra_js %} {% endblock %}