{% extends 'base.html' %} {% block title %}Resolve Unreconciled Payment{% endblock %} {% block content %}

Resolve Unreconciled Payment

Back to List
Payment Details
{% if unreconciled.notes %} {% endif %}
Transaction ID: {{ unreconciled.transaction_id }}
Amount: KES {{ unreconciled.amount|floatformat:2 }}
Phone Number: {{ unreconciled.phone_number }}
Customer Name: {{ unreconciled.customer_name|default:"Unknown" }}
Account Reference: {{ unreconciled.account_reference }}
Transaction Time: {{ unreconciled.transaction_time|date:"M j, Y H:i" }}
Reason: {{ unreconciled.get_reason_display }}
Notes: {{ unreconciled.notes }}
Resolution Actions
{% csrf_token %}
This will create a payment record for the selected customer and update their account balance.

{% csrf_token %}
Use this if the payment cannot be resolved or is not valid.
{% if potential_matches %}
Potential Customer Matches
{% for customer in potential_matches %} {% endfor %}
Customer ID Name Phone Status Balance Action
{{ customer.customer_id }} {{ customer.full_name }} {{ customer.phone_number }} {{ customer.get_status_display }} KES {{ customer.account_balance|floatformat:2 }}
{% endif %}
{% endblock %}