{% block links %} {% endblock %} {% block style %} {% endblock %}
{% block main %}Sales by Salesman
Sales by Channel
Location | Product | Expected Quantity | Quantity | {% for inventory in inventories %}
---|---|---|---|
{{ inventory.location.rec_name }} | Reason: {{ inventory.reason }} | ||
{{ line.product.code }} - {{ line.product.name }} | {{ format_number(line.expected_quantity, inventory.company.party.lang, digits=line.unit_digits) }} {% if line.uom.symbol != 'u' %}{{ line.uom.symbol }}{% endif %} | {{ format_number(line.quantity, inventory.company.party.lang, digits=line.unit_digits) }} {% if line.uom.symbol != 'u' %}{{ line.uom.symbol }}{% endif %} |
Ref. | State | Planned Date | Warehouse | Product | Quantity | Cost | {% for production in productions %}
---|---|---|---|---|---|---|
{{ 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 %} {{ format_number(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) }} |