{% extends "./layout.html" %} {% block title %}Index{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Orders


Order Details

Products Requested

Shipping Address

Payment Information

 
 
 

Suspicious Activity

Is there anything suspicious or atypical about the customer ordering that raises suspicions?
Is this a larger order than normal for this customer?
Is there no clear and legitimate purpose for this product? (End use verification)
 

Requested Shipping

If unsure leave Suspicious indicators unchecked.

Is the customer requesting urgent or premium shipping?
Is the customer taking immediate custody of the product?
Is this the first time you are using this transportation company?
Will the shipment be verified upon receipt?
Are there any unusual routing requests about this order? (For example: specifying a specific route that is not the most efficient, stopping at other facilities before the final destination)
Are there any unusual labeling requests from the customer?
Are there any unusual packaging and handling requests that deviate from your company standards or regulations? (e.g. Product needs to be refrigerated and no request for refrigerated transportation)
Does the customer/shipper have appropriate materials and personal protective equipment to receive, transport, and store the chemical?
Suspicious Indicator Summary
Current Order Previous Order
Customer History
Suspicious Activity
Shipping
Total

{% if orders -%}
{% for order in orders if order['delivery_date'] != '' and order['active_order'] >= 0 %} {% endfor %}
Date Order ID Order Number Customer Name Telephone POC Name Number Units Suspicious Indicators Shipping Address Actions
{{order.order_date}} {{order.order_id}} {{order.facility_order_id}} {{order.customer_name}} {{order.phone_number}} {{order.poc_name}} {{order.num_units|int}} {{ order.address_different + order.bank_name_different + order.bank_address_different + order.payment_different + order.atypical_order + order.larger_order + order.end_use_verified + order.urgent_shipping + order.immediate_custody + order.first_time_transporter + order.shipment_verification + order.unusual_routing + order.unusual_labeling + order.unusual_handling + order.ppe_concern + order.route_safety_concern }} {{order.shipping_address}}
{%- endif %}
{% if orders -%}
{% for order in orders %} {% endfor %}
Date Order ID Order Number Customer Name Telephone POC Name Number Units Suspicious Indicators Shipping Address Actions
{{order.order_date}} {{order.order_id}} {{order.facility_order_id}} {{order.customer_name}} {{order.phone_number}} {{order.poc_name}} {{order.num_units|int}} {{ order.address_different + order.bank_name_different + order.bank_address_different + order.payment_different + order.atypical_order + order.larger_order + order.end_use_verified + order.urgent_shipping + order.immediate_custody + order.first_time_transporter + order.shipment_verification + order.unusual_routing + order.unusual_labeling + order.unusual_handling + order.ppe_concern + order.route_safety_concern }} {{order.shipping_address}}
{%- endif %}

{% endblock %}