{% extends 'inventory/base.html' %} {% block title %}{% if is_edit %}编辑商品 - {% else %}添加商品 - {% endif %}{{ block.super }}{% endblock %} {% block content %}

{% if is_edit %}编辑商品{% else %}添加商品{% endif %}

{% if is_edit %}修改商品详细信息{% else %}填写商品详细信息{% endif %}

返回列表
基本信息
{% csrf_token %}
{{ form.barcode.errors }}
{{ form.barcode }}
{% if form.barcode.help_text %}
{{ form.barcode.help_text }}
{% endif %}
{{ form.name.errors }}
{{ form.name }}
{% if form.name.help_text %}
{{ form.name.help_text }}
{% endif %}
{{ form.category.errors }}
{{ form.category }}
{% if form.category.help_text %}
{{ form.category.help_text }}
{% endif %}
{{ form.specification.errors }}
{{ form.specification }}
{% if form.specification.help_text %}
{{ form.specification.help_text }}
{% endif %}
{{ form.color.errors }}
{{ form.color }}
{% if form.color.help_text %}
{{ form.color.help_text }}
{% endif %}
{{ form.size.errors }}
{{ form.size }}
{% if form.size.help_text %}
{{ form.size.help_text }}
{% endif %}
{{ form.price.errors }}
¥ {{ form.price }}
{% if form.price.help_text %}
{{ form.price.help_text }}
{% endif %}
{{ form.cost.errors }}
¥ {{ form.cost }}
{% if form.cost.help_text %}
{{ form.cost.help_text }}
{% endif %}
{{ form.manufacturer.errors }}
{{ form.manufacturer }}
{% if form.manufacturer.help_text %}
{{ form.manufacturer.help_text }}
{% endif %}
{{ form.description.errors }} {{ form.description }} {% if form.description.help_text %}
{{ form.description.help_text }}
{% endif %}
商品图片
{% if product.image %} {% else %} {% endif %}
{{ form.image.errors }} {{ form.image }}
支持JPG、PNG格式,建议尺寸500x500像素
操作
{% if not is_edit %}
设置商品的初始库存数量
{% endif %}
取消
{% endblock %}