-
- {{ b.no }}
- {{ b.box_name or '상자' }}
- {% if b.kind == 'mix' %}혼합{% endif %}
- {{ b.quantity }}개
-
-
+
+
+
+
+
+
+
+
+ | 상자번호 | 제품명 | 제품코드 | 수량 |
+
+
+ {% for b in box_list %}
{% for it in b['items'] %}
- - {{ it.product_name }}{{ it.quantity }}개
+
+ {% if loop.first %}
+ | {{ b.no }} |
+ {% endif %}
+ {{ it.product_name }} |
+ {{ it.product_code }} |
+ {{ it.quantity }} |
+
{% endfor %}
-
-
- {% endfor %}
- {% if not box_list %}
- - 상자 정보가 없습니다.
- {% endif %}
-
+ {% endfor %}
+ {% if not box_list %}
+ | 상자 정보가 없습니다. |
+ {% endif %}
+
+