{% extends "base.html" %} {% block title %}Exception {{ exception.exception_number }} - LSMC Hub{% endblock %} {% block content %}

Exception Details

Exception Number:
{{ exception.exception_number }}
Type:
{{ exception.exception_type }}
Status:
{{ exception.status }}
Created:
{{ exception.created_at | format_dt(user_preferences) }}
{% if exception.trigger_entity_type %}
Trigger Entity:
{{ exception.trigger_entity_type }}
{% endif %} {% if exception.assigned_to %}
Assigned To:
{{ exception.assigned_to_name or exception.assigned_to }}
{% endif %} {% if exception.resolved_at %}
Resolved:
{{ exception.resolved_at }}
{% endif %}
{% if exception.scanned_data %}

Scanned Data

{{ exception.scanned_data | tojson(indent=2) }}
{% endif %}

Related Entities

{% if exception.order_id %}
TRF:
{{ exception.order_number or exception.order_id }}
{% endif %} {% if exception.external_object_id %}
External Object:
{% if exception.external_object_url %} {{ exception.external_object_id }} {% else %} {{ exception.external_object_id }} {% endif %}
{% endif %} {% if exception.shipment_id %}
Shipment:
{{ exception.shipment_number or exception.shipment_id }}
{% endif %} {% if not exception.order_id and not exception.external_object_id and not exception.shipment_id %}
No related entities
{% endif %}
{% if exception.resolution_notes %}

Resolution

{{ exception.resolution_notes }}

{% if exception.resolved_by %}

Resolved by {{ exception.resolved_by_name or exception.resolved_by }} on {{ exception.resolved_at }}

{% endif %}
{% endif %}

Actions

{% if exception.status in ['OPEN', 'ASSIGNED'] %}
{% endif %} {% if exception.status in ['ASSIGNED', 'IN_PROGRESS'] %} {% endif %} {% if exception.status == 'RESOLVED' %}
{% endif %}
{% endblock %}