{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load static %} {% load django_ledger %} {% block view_content %}

Inventory Recount

{% for k in inventory_adjustment %} {# Recorded Inventory #} {# Recount Inventory #} {# Trueup Adjustment #} {% endfor %}
Item UOM Qty Recorded Value Recorded Avg. Cost Recorded Qty ReCount Value ReCount Avg. Cost Qty Diff Value Diff Avg. Cost Diff
{{ k.0.1 }} {{ k.0.2 }}{{ k.1.recorded }} {% currency_symbol %}{{ k.1.recorded_value | currency_format }} {% currency_symbol %}{{ k.1.recorded_avg_cost | currency_format }}{{ k.1.counted | floatformat:3 }} {% currency_symbol %}{{ k.1.counted_value | currency_format }} {% currency_symbol %}{{ k.1.counted_avg_cost | currency_format }}{{ k.1.count_diff | floatformat:3 }} {% currency_symbol %}{{ k.1.value_diff | floatformat:2 | currency_format }} {% currency_symbol %}{{ k.1.avg_cost_diff | floatformat:2 | currency_format }}
{% trans 'Recount Inventory' %} {% trans 'Update Inventory' %}
{% endblock %}