Files
grist/invoice/exampleData.js

45 lines
798 B
JavaScript
Raw Permalink Normal View History

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,
};