From f9553db9177671c583fbefefc0102c8b2a75f682 Mon Sep 17 00:00:00 2001 From: nia Date: Thu, 30 May 2024 07:20:17 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20invoice/exampleData.js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- invoice/exampleData.js | 45 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) 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