diff --git a/invoice/exampleData.js b/invoice/exampleData.js index e69de29..8d2c7d5 100644 --- a/invoice/exampleData.js +++ b/invoice/exampleData.js @@ -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, +}; \ No newline at end of file