invoice/data/invoices.json
2025-07-06 13:03:08 -04:00

123 lines
2.6 KiB
JSON

{
"invoices": [
{
"number": "2025-0001",
"date": "2025-07-04",
"sender": "Your Company Name",
"client": "Second Client",
"products": [
{
"description": "LinkedIn Scraper Bot",
"price": 250,
"quantity": 1
}
],
"amount": 250
},
{
"number": "2025-0002",
"date": "2025-07-04",
"sender": "Your Company Name",
"client": "Client Company",
"products": [
{
"description": "LinkedIn Scraper Bot",
"price": 250,
"quantity": 1
}
],
"amount": 250
},
{
"number": "2025-0003",
"date": "2025-07-04",
"sender": "Your Company Name",
"client": "Client Company",
"products": [
{
"description": "LinkedIn Scraper Bot",
"price": 250,
"quantity": 1,
"taxRate": 13
}
],
"subtotal": 250,
"taxTotal": 32.5,
"total": 282.5
},
{
"number": "2025-0004",
"date": "2025-07-04",
"sender": "Another Sender",
"client": "Client Company",
"products": [
{
"description": "LinkedIn Scraper Bot",
"price": 250,
"quantity": 1,
"taxRate": 13
},
{
"description": "Website Design",
"price": 1200,
"quantity": 1,
"taxRate": 13
}
],
"subtotal": 1450,
"taxTotal": 188.5,
"total": 1638.5
},
{
"number": "2025-0005",
"date": "2025-07-04",
"sender": "Your Company Name",
"client": "Client Company",
"products": [
{
"description": "LinkedIn Scraper Bot",
"price": 250,
"quantity": 1,
"taxRate": 13
}
],
"subtotal": 250,
"taxTotal": 32.5,
"total": 282.5
},
{
"number": "2025-0006",
"date": "2025-07-04",
"sender": "Your Company Name",
"client": "Client Company",
"products": [
{
"description": "LinkedIn Scraper Bot",
"price": 250,
"quantity": 1,
"taxRate": 13
}
],
"subtotal": 250,
"taxTotal": 32.5,
"total": 282.5
},
{
"number": "2025-0007",
"date": "2025-07-06",
"sender": "Levkin Inc.",
"client": "Client Company",
"products": [
{
"description": "LinkedIn Scraper Bot",
"price": 250,
"quantity": 1,
"taxRate": 13
}
],
"subtotal": 250,
"taxTotal": 32.5,
"total": 282.5
}
]
}