{% extends "inventory/base.html" %} {% load static %} {% block title %}打印批次条码{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
商品名称: {{ batch.product.name }}
批次编号: {{ batch.batch_number }}
生产日期: {{ batch.manufacturing_date|date:"Y-m-d"|default:"未设置" }}
到期日期: {{ batch.expiry_date|date:"Y-m-d"|default:"未设置" }}
剩余数量: {{ batch.remaining_quantity }}
商品条码: {{ batch.product.barcode|default:"未设置" }}