{{ item.name }}
需求数量
× {{ item.quantity }}
{% if item.type == "trading" %}
{% else %}
最低单价
{{ format_money(item.price.lowestPrice) }}
平均单价
{{ format_money(item.price.avgPrice) }}
最高单价
{{ format_money(item.price.highestPrice) }}
最低采购小计
{{ format_money(
item.price.lowestPrice * item.quantity
) }}
{% elif item.type == "store" %}
商店单价
{{ format_money(item.price) }}
采购小计
{{ format_money(
item.price * item.quantity
) }}
暂无价格计算方式
-
{% endif %}