{% extends 'root/base.html' %}
{% load static %}
{% block title %} Details of the Document {% endblock %}
{% block maincontent %}
Shopping Cart #{{hdr_det.doc_number}}
{% if hdr_det.status == 'SAVED' %}
{% if sc_appr and sc_completion %}
{% endif %}
{% if sc_appr.0.app_id != 'Auto' and not sc_completion %}
{% endif %}
{% if sc_appr.0.app_id == 'Auto' and not sc_completion %}
{% endif %}
{% else %}
{% endif %}
{% if access_type == 'MY_APPROVALS' %}
{% if hdr_det.status == 'AWAITING_APPROVAL' %}
{% endif %}
{% endif %}
Document Name {{ hdr_det.description }}
Document Number {{ hdr_det.doc_number }}
Created On {{ hdr_det.created_at }}
Created By {{ requester_first_name }}
Status
{% if hdr_det.status == 'APPROVED' %}
APPROVED
{% elif hdr_det.status == 'SAVED' %}
SAVED
{% elif hdr_det.status == 'REJECTED' %}
REJECTED
{% elif hdr_det.status == 'PURCHASER_WORKLIST' %}
IN PURCHASER's WORK LIST
{% elif hdr_det.status == 'AWAITING_APPROVAL' %}
WAITING FOR APPROVAL
{% elif hdr_det.status == 'DELETED' %}
DELETED
{% endif %}
APPROVEDREJECTED{{po_header_details.0.created_at}}
{{hdr_det.requester}}
Shop on Behalf of:
Silent PO:
{% include 'Ship To Bill To Address/display_address_card.html' %}
{% include 'Account Assignment/account_assignment_display_card.html' %}
Cart Overview
{% for items in itm_det %}
{% if items.call_off != '04' %}
{% include 'Doc_Details/my_order_document_item_detail.html' %}
{% include 'Workflow/manager_detail.html' %}
Please Confirm
This action will empty the shopping cart. Would you like to proceed with it?
Approver Note
Response to approval request
{% include 'Account Assignment/change_account_assignment_modal.html' %}
{% include 'Ship To Bill To Address/change_shipping_address_modal.html' %}
{% include 'Shopping_Cart/change_goods_receiver_modal/change_goods_receiver.html' %}
{% include 'Ship To Bill To Address/edit_shipping_address.html' %}
{% include 'Workflow/manager_detail_modal.html' %}
{% endblock %}