From 49872fd6209fb78b42051835bc3f748fe14867f2 Mon Sep 17 00:00:00 2001
From: laodaming <11058467+laudamine@user.noreply.gitee.com>
Date: Mon, 16 Oct 2023 17:15:18 +0800
Subject: [PATCH] fix
---
constants/invoice_html.go | 243 --------------------------------------
1 file changed, 243 deletions(-)
diff --git a/constants/invoice_html.go b/constants/invoice_html.go
index e3d67adc..1255fc8b 100644
--- a/constants/invoice_html.go
+++ b/constants/invoice_html.go
@@ -1,244 +1 @@
package constants
-
-// 发票主体页面
-const MAIN_INVOICE_HTML = `
-
-
-
-
-
-
-
- Invoice
-
-
-
-
-
-
-
-
-
-
-
- {{product_loop_html}}
-
-
-
-
-
- Subtotal |
- ${{subtotal_price}} |
-
-
- Shipping Fee |
- Free |
-
-
- Tax |
- ${{tax}} |
-
-
- Total |
- ${{total_price}} |
-
-
- Deposit Requested |
- ${{deposit_price}} |
-
-
- Deposit Due |
- ${{deposit_price}} |
-
-
-
-
-
- Payment Method: |
- Notes: |
-
-
- {{payment_method}} |
- {{notes}} |
-
-
- Account No. {{account_number}} |
-
-
-
-
-
-
-`
-
-// 产品循环部分{{product_loop_html}}
-const PRODUCT_LOOP_HTML_CONTENT = `
- {{product_name}} |
- ${{product_item_price}} |
- {{purchase_quantity}} |
- ${{product_total_price}} |
-
`