| 1 |
{ |
| 2 |
"extends": "base-receipt", |
| 3 |
"description": "Unpaid invoice preview with payment terms, billing details, and fake bank-transfer placeholders.", |
| 4 |
"overrides": { |
| 5 |
"order": { |
| 6 |
"id": 2048, |
| 7 |
"number": "INV-2048", |
| 8 |
"wc_status": "pending", |
| 9 |
"status_label": "Pending payment", |
| 10 |
"customer_note": "Invoice for catering deposit.", |
| 11 |
"needs_payment": true, |
| 12 |
"payment_url": "https://example.com/pay/inv-2048" |
| 13 |
}, |
| 14 |
"payments": [], |
| 15 |
"totals": { |
| 16 |
"paid_total": 0, |
| 17 |
"change_total": 0, |
| 18 |
"refund_total": 0, |
| 19 |
"net_total": 0 |
| 20 |
}, |
| 21 |
"invoice": { |
| 22 |
"issue_date": "2024-01-15", |
| 23 |
"due_date": "2024-01-30", |
| 24 |
"payment_terms": "Payment due within 15 days.", |
| 25 |
"bank_details": { |
| 26 |
"account_name": "Coffee Monster Ltd", |
| 27 |
"iban": "FAKE SAMPLE IBAN", |
| 28 |
"bic": "FAKE SAMPLE BIC", |
| 29 |
"reference": "INV-2048" |
| 30 |
} |
| 31 |
}, |
| 32 |
"refunds": [] |
| 33 |
} |
| 34 |
} |
| 35 |
|