{% extends 'inventory/base.html' %} {% block title %}销售详情 - {{ block.super }}{% endblock %} {% block content %}
查看销售单的详细信息
此销售单未关联会员
| 商品信息 | 单价 | 实际售价 | 数量 | 小计 |
|---|---|---|---|---|
|
{% if item.product.image %}
{{ item.product.name }}{{ item.product.barcode }} {% if item.product.specification %}规格: {{ item.product.specification }} {% endif %} |
¥{{ item.price|floatformat:2 }} | {% if item.price != item.actual_price %} ¥{{ item.actual_price|floatformat:2 }} {% else %} ¥{{ item.actual_price|floatformat:2 }} {% endif %} | {{ item.quantity }} | ¥{{ item.subtotal|floatformat:2 }} |
|
暂无商品明细 |
||||
| 总计: | ¥{{ sale.total_amount|floatformat:2 }} | |||
| 优惠: | -¥{{ sale.discount_amount|floatformat:2 }} | |||
| 实付金额: | ¥{{ sale.final_amount|floatformat:2 }} | |||
{{ sale.notes }}