{% extends "inventory/base.html" %} {% load static %} {% block title %}生成批次条码{% endblock %} {% block content %}
生成批次条码
{% csrf_token %}
选择商品
选择批次
选择商品后将显示该商品的可用批次
生成商品条码
{% if batch %}
批次信息

商品名称: {{ 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 }}

{% if batch.product.image %} {{ batch.product.name }} {% else %}

无批次图片

{% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}