{% block links %} {% endblock %} {% block style %} {% endblock %} {% block main %}
{% block header_logo %} {% endblock %}
{% block header_title %}CEO Report{% endblock %}
Date:
{{ data['start_date'].date()|dateformat }} - {{ data['end_date'].date()|dateformat }}

Number of Orders:
Number of Shipments:
{{ sales|length() }}
{{ done_shipments_today }}
{% if sales and (sale_has_salesman or sale_has_shop) %}
{% if sale_has_salesman %}

Sales by Salesman

{% endif %} {% if sale_has_shop %}

Sales by Shop

{% endif %}
{% else %}
{# Note: An empty div to cover up page space if there are no charts to be drawn #}
{% endif %}

Inventory Adjustments
{% if inventories %} {% for inventory in inventories %} {% for line in inventory.lines %} {% endfor %} {% endfor %}
Location Product Expected Quantity Quantity
{{ inventory.location.rec_name }} Reason: {{ inventory.reason }}
{{ line.product.code }} - {{ line.product.name }} {{ formatLang(line.expected_quantity, inventory.company.party.lang, digits=line.unit_digits) }} {% if line.uom.symbol != 'u' %}{{ line.uom.symbol }}{% endif %} {{ formatLang(line.quantity, inventory.company.party.lang, digits=line.unit_digits) }} {% if line.uom.symbol != 'u' %}{{ line.uom.symbol }}{% endif %}
{% endif %}

Productions
{% if productions %} {% for production in productions %} {% endfor %}
Ref. State Planned Date Warehouse Product Quantity Cost
{{ production.reference or '-' }} {{ production.state }} {{ production.planned_date|dateformat }} {{ production.warehouse and production.warehouse.rec_name or '-' }} {{ production.product.code }} - {{ production.product.name }} {% if production.quantity %} {{ formatLang(production.quantity, production.company.party.lang, digits=production.unit_digits) }} {% if production.uom.symbol != 'u' %}{{ production.uom.symbol }}{% endif %} {% else %} - {% endif %} {{ production.cost|currencyformat(production.company.currency.code) }}
{% endif %}
{% endblock %} {% block script_tags %} {% endblock script_tags %} {% block scripts %} {% if sales and (sale_has_salesman or sale_has_shop) %} {% endif %} {% endblock scripts %}