{% extends 'admin/base.html' %} {% block title %}报价单预览 - {{ quotation.quotation_no }}{% endblock %} {% block content %}

报价单预览

导出PDF 返回
{% if company %}

{{ company.name }}

{{ company.address }}

电话: {{ company.phone }}

邮箱: {{ company.email }}

{% if company.website %}

网站: {{ company.website }}

{% endif %} {% endif %}

报价单

单号: {{ quotation.quotation_no }}

日期: {{ quotation.created_at|date:"Y年m月d日" }}

状态: {{ quotation.get_status_display }}


客户信息

{{ quotation.customer.name }}

联系人: {{ quotation.customer.contact_person }}

电话: {{ quotation.customer.phone }}

{% if quotation.customer.email %}

邮箱: {{ quotation.customer.email }}

{% endif %} {% if quotation.customer.address %}

地址: {{ quotation.customer.address }}

{% endif %}
报价信息

标题: {{ quotation.title }}

有效期: {{ quotation.valid_days }} 天

创建人: {{ quotation.created_by.username }}

报价明细
{% for item in quotation.items.all %} {% endfor %} {% if quotation.discount_rate > 0 %} {% endif %} {% if quotation.tax_rate > 0 %} {% endif %}
序号 产品名称 规格型号 单位 数量 单价(元) 折扣率(%) 小计(元)
{{ forloop.counter }} {{ item.product.name }} {{ item.product.brand }} {{ item.product.model }} {{ item.product.unit }} {{ item.quantity }} ¥{{ item.unit_price }} {{ item.discount_rate }}% ¥{{ item.subtotal }}
合计金额: ¥{{ quotation.total_amount }}
整体折扣({{ quotation.discount_rate }}%): -¥{{ quotation.total_amount|floatformat:2 }}
税费({{ quotation.tax_rate }}%): +¥{{ quotation.total_amount|floatformat:2 }}
最终金额: ¥{{ quotation.total_amount|floatformat:2 }}
{% if quotation.remark %}
备注
{{ quotation.remark|linebreaks }}
{% endif %}
条款与说明
  1. 本报价单有效期至 {{ quotation.created_at|date:"Y年m月d日" }} 起 {{ quotation.valid_days }} 天内有效
  2. 价格包含税费和标准包装费用
  3. 付款方式: 银行转账或现金支付
  4. 交货期: 确认订单后 3-5 个工作日
  5. 质量保证: 所有产品提供一年质保

客户确认:

签字: ___________________

日期: ___________________

公司盖章:

签字: ___________________

日期: ___________________

下载PDF 编辑报价单 新建报价单
{% endblock %}