fix(shared): Fixed the demo letter item details by replacing with to correctly define the item position.

This commit is contained in:
2024-11-27 12:21:35 +01:00
parent 78e4fb23cf
commit e547e38158
5 changed files with 29 additions and 224 deletions

View File

@@ -67,7 +67,7 @@ export const demoLetter: tsclass.business.ILetter = {
unitNetPrice: 100,
unitType: 'hours',
vatPercentage: 19,
currency: 'EUR',
position: 0,
},
{
name: 'Item with 7% VAT',
@@ -114,7 +114,7 @@ export const demoLetter: tsclass.business.ILetter = {
unitNetPrice: 100,
unitType: 'hours',
vatPercentage: 7,
currency: 'EUR',
position: 6,
},
{
name: 'Item with 7% VAT',
@@ -122,7 +122,7 @@ export const demoLetter: tsclass.business.ILetter = {
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 7,
currency: 'EUR',
position: 8,
},
{
name: 'Item with 21% VAT',
@@ -130,7 +130,7 @@ export const demoLetter: tsclass.business.ILetter = {
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 21,
currency: 'EUR',
position: 9,
},
{
name: 'Item with 0% VAT',
@@ -138,7 +138,7 @@ export const demoLetter: tsclass.business.ILetter = {
unitNetPrice: 230,
unitType: 'hours',
vatPercentage: 0,
currency: 'EUR',
position: 10,
},
],
}