{% extends 'buybackprogram/page.html' %} {% load i18n %} {% load humanize %} {% load bootstrap %} {% load static %} {% load price_formats %} {% block body %}
Based on the items we have calculated a contract for you. Please use the following settings when creating a buyback contract:
| Contract type: | Item Exhange | |||
|---|---|---|---|---|
| Availability: | {% if program.is_corporation %}{{program.owner.corporation}} | {% else %} | {{program.owner.character.character}} | {% endif %} |
| I will receive: | {% if contract_price_data.contract_net_total >= 0%}{{contract_price_data.contract_net_total|floatformat:0|intcomma}} | {% else %} | 0 ISK | {% endif %} |
| Expiration: | 1 week | |||
| Description: | {{tracking_number}} | |||
List of expenses applied on your contract
| Price before expenses | {{contract_price_data.total_all_items_raw|floatformat:0|intcomma}} ISK | ||
|---|---|---|---|
| Program taxes | {{contract_price_data.total_tax_amount|floatformat:0|intcomma}} ISK | ||
| Hauling cost | {{contract_price_data.total_hauling_cost|floatformat:0|intcomma}} ISK @ {{contract_price_data.hauling_cost|floatformat:0|intcomma}} ISK / m³ | ||
| Donation amount | {{contract_price_data.total_donation_amount|floatformat:0|intcomma}} ISK @ {{donation}} % | ||
| Net price | {% if contract_price_data.contract_net_total >= 0%}{{contract_price_data.contract_net_total|floatformat:0|intcomma }} ISK | {% else %}0 ISK | {% endif %} |
Details for each item and their price calculations
| Name | Quantity | Jita sell | Jita buy | Tax | Our price | Row total | Notes |
|---|---|---|---|---|---|---|---|
{{ item.item_values.name }} |
{{ item.item_values.quantity|intcomma }} | {{ item.item_prices.type_prices.sell|floatformat:0|intcomma|price }} | {{ item.item_prices.type_prices.buy|floatformat:0|intcomma|price }} | {{ item.item_values.tax_value|tax }} | {{ item.item_values.unit_value|floatformat:0|intcomma|price }} | {{ item.item_values.buy_value|floatformat:0|intcomma|price }} | {% for note in item.item_prices.notes%} {% endfor %} |
| Raw | |||||||
| {{ item.item_values.name }} | {{ item.item_values.quantity|intcomma }} | {{ item.item_prices.type_prices.sell|floatformat:0|intcomma|price }} | {{ item.item_prices.type_prices.sell|floatformat:0|intcomma|price }} | {{ item.item_values.normal.total_tax|tax }} | {{ item.item_values.normal.unit_value|floatformat:0|intcomma|price }} | {{ item.item_values.normal.value|floatformat:0|intcomma|price }} | {% for note in item.item_values.normal.notes %} {% endfor %} |
| Compressed | |||||||
| {{item.item_values.compressed.name}} | {{item.item_values.compressed.quantity|intcomma}} | {{item.item_values.compressed.sell|floatformat:0|intcomma|price}} | {{item.item_values.compressed.buy|floatformat:0|intcomma|price}} | {{item.item_values.compressed.total_tax|tax}} | {{item.item_values.compressed.unit_value|floatformat:0|intcomma|price}} | {{item.item_values.compressed.value|floatformat:0|intcomma|price}} | {% for note in item.item_values.compressed.notes%} {% endfor %} |
| Refined | |||||||
| {{material.name}} | {{material.quantity|floatformat:2}} | {{material.sell|floatformat:0|intcomma|price}} | {{material.buy|floatformat:0|intcomma|price}} | {{material.total_tax|tax}} | {{material.unit_value|floatformat:0|intcomma|price}} | {{material.value|floatformat:0|intcomma|price}} | {% for note in material.notes%} {% endfor %} |