{% extends "base.html" %} {% block title %}Payment #{{ payment.id }} - Plutus{% endblock %} {% block head %} {% endblock %} {% block content %}
Processed: {{ payment.Created.strftime('%Y-%m-%d %H:%M:%S') if payment.Created else 'Unknown' }}
| Payment ID | #{{ payment.id }} |
| Splynx Customer ID | {% if payment.Splynx_ID %} {{ payment.Splynx_ID }} {% else %} - {% endif %} |
| Stripe Customer ID | {{ payment.Stripe_Customer_ID or '-' }} |
| Payment Intent | {{ payment.Payment_Intent or '-' }} |
| Payment Method | {% if payment.Payment_Method %} {{ payment.Payment_Method }} {% else %} - {% endif %} |
| Created | {{ payment.Created.strftime('%Y-%m-%d %H:%M:%S') if payment.Created else '-' }} |
| Processed By | {{ payment.processed_by or 'Unknown' }} |
| Payment Amount | {{ payment.Payment_Amount | currency }} |
| Stripe Fee | {{ payment.Fee_Stripe | currency if payment.Fee_Stripe else '-' }} |
| Tax Fee | {{ payment.Fee_Tax | currency if payment.Fee_Tax else '-' }} |
| Total Fees | {{ payment.Fee_Total | currency if payment.Fee_Total else '-' }} |
{{ payment.Stripe_Refund_ID }}
{% endif %}
{{ payment.Stripe_Refund_ID }}
{% endif %}
Suggested Action: {{ error_alert.suggestion }}
{{ error_alert.raw_error }}
An error occurred during payment processing.
{{ payment.Error }}
{{ payment.PI_JSON | format_json }}
{{ payment.PI_FollowUp_JSON | format_json }}
{{ payment.Refund_JSON | format_json }}