{% extends "industry_reforged/base.html" %} {% load i18n humanize %} {% load industry_tags %} {% block details %}

{% trans "Director Configurations" %}

{% trans "Back" %}

{% trans "Set corporate rules for production, material efficiency, and pricing overrides." %}

{% trans "Specific Item Rules" %}
{% trans "Add Item Rule" %}
{% for config in configs %} {% empty %} {% endfor %}
Item BOM Strategy ME/TE Price Override Threshold Auto Produce Actions
{{ config.item_type.name }} {{ config.item_type.name }}
{{ config.get_build_or_buy_display }} {{ config.get_bom_source_display }} ME: {{ config.manual_me }}%
TE: {{ config.manual_te }}%
{% if config.manual_price %}{{ config.manual_price|eve_isk }}{% else %}Auto (Fuzzwork){% endif %} {{ config.target_threshold|intcomma }} {% if config.auto_produce %}{% else %}{% endif %}
{% trans "No item rules configured. Global defaults apply." %}
{% trans "Global Pricing Configuration" %}
{% trans "Default Corporate Discount" %}

{% if pricing_config.default_discount_percent > 0 %} {{ pricing_config.default_discount_percent }}% OFF {% else %} 0% (Jita Price) {% endif %}

{% trans "Applied automatically to all member orders unless overridden by a Type Discount." %}
{% trans "System Taxes & Fees" %}

{% trans "Industry Tax Rate" %}: {{ tax_config.industry_tax_rate }}%
{% trans "Broker Fee Rate" %}: {{ tax_config.broker_fee_rate }}%

{% trans "Used to calculate realistic build costs and margins." %}
{% trans "Specific Type Discounts" %}
{% trans "Add Type Discount" %}
{% for discount in type_discounts %} {% empty %} {% endfor %}
Item Discount Percent Actions
{{ discount.eve_type.name }} {{ discount.eve_type.name }}
{{ discount.discount_percent }}%
{% trans "No specific type discounts configured." %}
{% endblock %} {% block extra_javascript %} {% endblock %}