{{ __("All active prices for this item across buying and selling price lists.") }}
{% if (prices && prices.length) { %}
{{ __("No.") }}
{{ __("Price List") }}
{{ __("Type") }}
{{ __("Party") }}
{{ __("Rate") }}
{{ __("UOM") }}
{{ __("Valid Upto") }}
{% for (var i=0; i < prices.length; i++) { var p = prices[i]; %}
{{ i + 1 }}
{{ p.price_list }}
{% if (p.buying && p.selling) { %} {{ __("Buy & Sell") }} {% } else if (p.buying) { %} {{ __("Buying") }} {% } else if (p.selling) { %} {{ __("Selling") }} {% } %}
{% if (p.customer) { %}
{{ p.customer }}
{% } else if (p.supplier) { %}
{{ p.supplier }}
{% } %}
{{ format_currency(p.price_list_rate, p.currency) }}
{{ p.uom || stock_uom }}
{{ p.valid_upto ? frappe.datetime.str_to_user(p.valid_upto) : "" }}
{% } %}
{% } else { %}
{{ __("No active item prices found.") }}
{{ __("+ Add Price") }}
{% } %}