This commit is contained in:
2025-04-03 15:53:08 +00:00
parent 3e8b5c2869
commit 21650f1181
49 changed files with 4835 additions and 2878 deletions

View File

@ -1,8 +1,9 @@
import * as tsclass from '@tsclass/tsclass';
import { business, finance } from '@tsclass/tsclass';
import type { TInvoice, TDebitNote } from '../../../ts/interfaces/common.js';
const fromContact: tsclass.business.IContact = {
name: 'Awesome From Company',
const fromContact: business.TContact = {
type: 'company',
name: 'Awesome From Company',
description: 'a company that does stuff',
address: {
streetName: 'Awesome Street',
@ -11,21 +12,25 @@ const fromContact: tsclass.business.IContact = {
country: 'Germany',
postalCode: '28359',
},
vatId: 'DE12345678',
sepaConnection: {
bic: 'BPOTBEB1',
iban: 'BE01234567891616'
status: 'active',
foundedDate: {
year: 2000,
month: 1,
day: 1
},
registrationDetails: {
vatId: 'DE12345678',
registrationId: '',
registrationName: ''
},
email: 'hello@awesome.company',
phone: '+49 421 1234567',
fax: '+49 421 1234568',
};
const toContact: tsclass.business.IContact = {
name: 'Awesome To GmbH',
const toContact: business.TContact = {
type: 'company',
customerNumber: 'LL-CLIENT-123',
name: 'Awesome To GmbH',
description: 'a company that does stuff',
address: {
streetName: 'Awesome Street',
@ -34,14 +39,35 @@ const toContact: tsclass.business.IContact = {
country: 'Germany',
postalCode: '28359'
},
vatId: 'BE12345678',
}
status: 'active',
foundedDate: {
year: 2000,
month: 1,
day: 1
},
registrationDetails: {
vatId: 'BE12345678',
registrationId: '',
registrationName: ''
},
customerNumber: 'LL-CLIENT-123',
};
export const demoLetter: tsclass.business.ILetter = {
export const demoLetter: TInvoice = {
type: 'invoice',
id: 'LL-INV-48765',
invoiceType: 'debitnote',
date: Date.now(),
status: 'invoice',
versionInfo: {
type: 'draft',
version: '1.0.0',
},
language: 'en',
incidenceId: 'LL-INV-48765',
from: fromContact,
to: toContact,
subject: 'Invoice: LL-INV-48765',
accentColor: null,
content: {
textData: null,
@ -65,147 +91,91 @@ export const demoLetter: tsclass.business.ILetter = {
type: 'debitnote',
items: [
{
position: 0,
name: 'Item with 19% VAT',
unitQuantity: 2,
unitNetPrice: 100,
unitType: 'hours',
vatPercentage: 19,
position: 0,
},
{
position: 1,
name: 'Item with 7% VAT',
unitQuantity: 4,
unitNetPrice: 100,
unitType: 'hours',
vatPercentage: 7,
position: 1,
},
{
position: 2,
name: 'Item with 7% VAT',
unitQuantity: 3,
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 7,
position: 2,
},
{
position: 3,
name: 'Item with 21% VAT',
unitQuantity: 1,
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 21,
position: 3,
},
{
position: 4,
name: 'Item with 0% VAT',
unitQuantity: 6,
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 0,
position: 4,
},{
},
{
position: 5,
name: 'Item with 19% VAT',
unitQuantity: 8,
unitNetPrice: 100,
unitType: 'hours',
vatPercentage: 19,
position: 5,
},
{
position: 6,
name: 'Item with 7% VAT',
unitQuantity: 9,
unitNetPrice: 100,
unitType: 'hours',
vatPercentage: 7,
position: 6,
},
{
position: 8,
name: 'Item with 7% VAT',
unitQuantity: 4,
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 7,
position: 8,
},
{
position: 9,
name: 'Item with 21% VAT',
unitQuantity: 3,
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 21,
position: 9,
},
{
position: 10,
name: 'Item with 0% VAT',
unitQuantity: 1,
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 0,
position: 10,
},
{
name: 'Item with 0% VAT',
unitQuantity: 1,
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 0,
position: 10,
},
{
name: 'Item with 0% VAT',
unitQuantity: 1,
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 0,
position: 10,
},
{
name: 'Item with 0% VAT',
unitQuantity: 1,
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 0,
position: 10,
},
{
name: 'Item with 0% VAT',
unitQuantity: 1,
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 0,
position: 10,
},
{
name: 'Item with 0% VAT',
unitQuantity: 1,
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 0,
position: 10,
},
{
name: 'Item with 0% VAT',
unitQuantity: 1,
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 0,
position: 10,
},
],
}
},
date: Date.now(),
type: 'invoice',
needsCoverSheet: false,
objectActions: [],
pdf: null,
from: fromContact,
to: toContact,
incidenceId: null,
language: null,
legalContact: null,
logoUrl: null,
pdfAttachments: null,
subject: 'Invoice: LL-INV-48765',
}
};