hide supply part price on start

This commit is contained in:
Matthias 2021-06-06 14:21:08 +02:00
parent ced7768030
commit 36ff21f11e

View File

@ -166,7 +166,8 @@ the part single price shown is the current price for that supplier part"></i></h
{% for line in price_history %}{{ line.price_diff|stringformat:".2f" }},{% endfor %} {% for line in price_history %}{{ line.price_diff|stringformat:".2f" }},{% endfor %}
], ],
borderWidth: 1, borderWidth: 1,
type: 'line' type: 'line',
hidden: true,
}, },
{ {
label: '{% blocktrans %}Part Single Price - {{currency}}{% endblocktrans %}', label: '{% blocktrans %}Part Single Price - {{currency}}{% endblocktrans %}',
@ -177,7 +178,8 @@ the part single price shown is the current price for that supplier part"></i></h
{% for line in price_history %}{{ line.price_part|stringformat:".2f" }},{% endfor %} {% for line in price_history %}{{ line.price_part|stringformat:".2f" }},{% endfor %}
], ],
borderWidth: 1, borderWidth: 1,
type: 'line' type: 'line',
hidden: true,
}, },
{% endif %} {% endif %}
{ {