{% extends "base.html" %} {% block contents %}

팝빌 세금계산서 Django Example.


세금계산서 상세정보 확인 {% if taxinvoice.detailList %} {% for detailList in taxinvoice.detailList %}
상세항목(품목) 정보 [ {{ forloop.counter }} ]
  • serialNum (일련번호) : {{ detailList.serialNum }}
  • purchaseDT (거래일자) : {{ detailList.purchaseDT }}
  • itemName (품명) : {{ detailList.itemName }}
  • spec (규격) : {{ detailList.spec }}
  • qty (수량) : {{ detailList.qty }}
  • unitCost (단가) : {{ detailList.unitCost }}
  • supplyCost (공급가액) : {{ detailList.supplyCost }}
  • tax (세액) : {{ detailList.tax }}
  • remark (비고) : {{ detailList.remark }}
{% endfor %} {% endif %} {% if taxinvoice.addContactList %} {% for addContactList in taxinvoice.addContactList %}
추가담당자 정보 [ {{ forloop.counter }} ]
  • serialNum (일련번호) : {{ addContactList.serialNum }}
  • contactName (담당자 성명) : {{ addContactList.contactName }}
  • email (담당자 이메일) : {{ addContactList.email }}
{% endfor %} {% endif %}
{% endblock contents %}