{% extends "ui/report_base.html" %} {% load url from future %} {% load icons %} {% load formats %} {% load bob %} {% load reports %} {% block contentarea %}

Devices prices per Venture

Price of devices in the venture.

The price of shared equipment is taken as a proportion.

  • N/A - Unknown price
  • {% icon "notebook--minus" %} - The component group is not defined, so you can not download prices
  • {% icon "fugue-prohibition-button" %} - Device does not have a model
{% for f in form %} {% if f.label %}
{{ f }} {% spaceless %} {% endspaceless %} {% if venture %} {% spaceless %} {% icon 'fugue-fugue-icon fugue-blue-document-excel-csv' %} Export CSV {% endspaceless %} {% endif %} {% spaceless %} {% icon 'fugue-fugue-icon fugue-blue-document-excel-csv' %} Export all devices to CSV {% endspaceless %} {% spaceless %} {% icon 'fugue-fugue-icon fugue-arrow-circle-double' %} Refresh cache {% endspaceless %}
{% endif %} {% endfor %}
{% if task_in_progress %} {% wait_for_results autoreload=1 reload_frequency=15 %} {% else %} {% if rows %}
{% for row in rows %} {% endfor %}
Device SN Barcode Deprecation date Quoted price Components
{{ forloop.counter }}. {% icon row.device.icon %} {{ row.device.name }} {{ row.device.sn }} {{ row.device.barcode }} {% if not row.device.deprecation_date %} N/A {% endif %} {{ row.device.deprecation_date|date:"Y-m-d" }} {% if row.deprecated %} Deprecated ({{ row.total|currency }}) {% elif row.device.cached_price == None %} N/A {% else %} {{ row.device.cached_price|currency }} {% endif %} {% if row.components %} {% for comp in row.components %} {% endfor %}
Name: Count: Unit price:
{% icon comp.icon %} {% if comp.model.name %}{{ comp.model.name }}{% else %}{{ comp.model }}{% endif %} {% if comp.serial %} (Serial: {{ comp.serial }}) {% endif %} {{ comp.count }} {% if comp.disk_count %} {{ comp.disk_count }} {% endif %} {% if not comp.price %} N/A{% if not comp.group %} {% icon "notebook--minus" %} {% endif %} {% else %} {{ comp.price|currency }} {% endif %}
{% else %} N/A {% endif %}
{% else %} No result {% endif %} {% endif %} {% endblock %}