package constants // 主体页面 const MAIN_INVOICE_HTML = ` Invoice
logo Invoice
Invoice Number:
{{order_sn}}
Date:
{{order_expire_time}}
Bill To: Bill From:
{{name}} Lemon Squeezy LLC
{{street}} {{suite}} Lemon Squeezy LLC
{{city}} {{state}} {{zip_code}} Lemon Squeezy LLC
Lemon Squeezy LLC
Product Name Unit Price Quantity Total
{{orderHTML}} {{second_payment_html}} {{pay_html}}
Subtotal ${{total_amount}}
Tax $0.00
Invoice Total ${{total_amount}}
First Payment -${{first_payment}}
Amount Due ${{amount_due}}
Payment Method:
Notes:
Add a note...
` // 发票支付html模板 const PAYMENT_HTML = ` ${{pay_amount}} payment from {{brand}} ····{{card_no}} ` // 二次支付html const SECOND_PAYMENY_HTML = ` Second Payment -${{remain_amount}} ` // order html const ORDER_HTML = ` {{product_title}} ${{amount}} {{buy_num}}pcs ${{sum_amount}} `