{{ extends 'global/Page.html' }} {{ block title }}Realized Demand{{ endblock }} {{ block content }}

Below are your results for all decisions.

Results for the Machine-Generated Orders

{% for r in machine_results %} {% endfor %}
Product Final Order Quantity Realized Demand Units Sold Leftover Inventory Profit
{{ r.scenario_id }} {{ r.quantity }} {{ r.demand }} {{ r.sales }} {{ r.leftover }} {{ r.profit }}

Total Profit for Machine-Generated Orders: ${{ machine_total_profit }}


{{ second_block_title }}

{% for r in individual_results %} {% endfor %}
Product Final Order Quantity Realized Demand Units Sold Leftover Inventory Profit
{{ r.scenario_id }} {{ r.quantity }} {{ r.demand }} {{ r.sales }} {{ r.leftover }} {{ r.profit }}

Total Profit for This Set of Decisions: ${{ individual_total_profit }}


Overall Total Profit Across All Decisions: ${{ overall_total_profit }}

{{ next_button }} {{ endblock }}