Обновить invoice/exampleData.js

This commit is contained in:
nia
2024-05-30 07:20:17 +00:00
parent fda69c538a
commit f9553db917

View File

@@ -0,0 +1,45 @@
const exampleData = {
Number: 14999,
Issued: Date.parse('2020-10-12') / 1000,
Due: Date.parse('2020-11-12') / 1000,
Invoicer: {
Name: 'Thunderous Applause',
Street1: '812 Automated Rd',
Street2: null,
City: 'New York',
State: 'NY',
Zip: '10003',
Email: 'applause@thunder.com',
Phone: '+1-800-111-1111',
Website: 'applause.com',
},
Client: {
Name: 'Monkeys Juggling',
Street1: '100 Banana St',
City: 'Bananaberg',
State: 'NJ',
Zip: '07048',
},
Items: [
{
Description: 'Wolf Whistle',
Price: 35,
Quantity: 3,
Total: 105,
},
{
Description: 'Bravo',
Price: 30,
Quantity: 17,
Total: 510,
},
],
Subtotal: 615,
Deduction: null,
Taxes: null,
Total: 615,
};