{% extends "erp_base.html" %} {% block head_extra %}{% endblock %} {% block content %}

{{ year }}년 {{ month }}월

{% for wd in weekdays %}
{{ wd }}
{% endfor %} {% for week in cal_weeks %} {% for cell in week %} {{ cell.day }} {% if cell.counts.ship %} 출고 {{ cell.counts.ship }}건 센터 {{ cell.counts.centers }}곳 {% endif %} {% endfor %} {% endfor %}

{{ selected_date }} 출고

{{ sel_shipments|length }}건 {% if sel_shipments %} {% endif %}
{% if sel_shipments %}
    {% for s in sel_shipments %}
  • 출고 {{ s.ship_date }} · {{ s.total_boxes }}박스 · {{ s.total_qty }}개
      {% for it in s['items'] %}
    • {{ it.name }} {{ it.qty }}개 {{ it.boxes }}박스
    • {% endfor %}
  • {% endfor %}
{% else %}

선택한 날짜의 출고 묶음이 없습니다. 박스 계산에서 등록

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}