{% extends 'root/base.html' %} {% load static %} {% block title %} Shopping Cart Completion {% endblock %} {% block maincontent %}

Complete Shopping Cart #{{hdr_det.0.doc_number}}

{% for hdr in hdr_det %} {% if hdr.status == 'PURCHASER_WORKLIST' %} {% endif %} {% endfor %}
{% for hdr in hdr_det %}
Document Name
{{ hdr.description }}
Document Number
{{ hdr.doc_number }}
Created On
{{ hdr.created_at }}
Created By
{{ requester_first_name }}
Status
{% if hdr.status == 'APPROVED' %} APPROVED {% elif hdr.status == 'SAVED' %} SAVED {% elif hdr.status == 'REJECT' %} REJECTED {% elif hdr.status == 'PURCHASER_WORKLIST' %} IN PURCHASER's WORK LIST {% endif %}
{% endfor %}
{% for hdr in hdr_det %} {% if hdr.status == 'AWAITING_APPROVAL' %} {% endif %} {% endfor %}

Cart Overview

{% include 'Doc_Details/sc_item_details.html' %}
{{ total_value_of_item_converted|json_script:"total_value_of_item_converted" }} {% include 'Workflow/manager_detail_modal.html' %} {% include 'root/loader.html' %} {% endblock %}