세트 구성표 (set_bom)
{% for it in set_items %}
{{ it.item_code }} · {{ it.item_name }}
| Component | Name | Qty | Active | |
{% for b in by_set.get(it.item_code, []) %}
| {{ b.component_code }} |
{{ names.get(b.component_code, '—') }} |
{{ b.component_qty }} |
{% if b.active %}활성{% else %}비활성{% endif %} |
|
{% endfor %}
{% if not by_set.get(it.item_code) %}
| 구성품이 없습니다. (재고조사에 입력 시 경고) |
{% endif %}
{% endfor %}