package constants // 发票主体页面 const MAIN_INVOICE_HTML = ` Invoice
Invoice
Bill To: Invoice No. {{invoice_number}}
{{buyer_name}} Date: {{buy_date}}
{{street}}
{{city}}
{{country}}
{{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}} `