{% extends "erp_base.html" %} {% block head_extra %}{% endblock %} {% block content %} ← 달력 박스 입수량 추가 / 수정 같은 제품코드는 덮어씁니다. 쿠팡박스 1박스당 들어가는 수량. 제품코드 * 제품명(스냅샷) 박스명 박스당 입수량 * 메모 저장 입수량 규칙 ({{ box_rules|length }}) 제품코드제품명박스명입수량상태메모 {% for r in box_rules %} {{ r.product_code }} {{ r.product_name_snapshot or '—' }} {{ r.box_name }} {{ r.units_per_box }} {% if r.active %}활성{% else %}비활성{% endif %} {{ r.memo or '—' }} {% if r.active %} 비활성화 {% else %}—{% endif %} {% endfor %} {% endblock %}