id
id: string
salesOrderId
salesOrderId: string
OptionalfinishedProductId
finishedProductId?: string | null
description
description: string | null
quantity
quantity: number
unitPrice
unitPrice: number
totalPrice
totalPrice: number
OptionaltaxId
taxId?: string | null
taxRate
taxRate: number
taxAmount
taxAmount: number
deliveredQuantity
deliveredQuantity: number
remainingQuantity
remainingQuantity: number
Optionalnotes
notes?: string | null
createdAt
createdAt: string
updatedAt
updatedAt: string
salesOrder
salesOrder: {
id: string;
number: string;
orderDate: string;
status: string;
client: { id: string; name: string };
currency?: { code: string; symbol: string } | null;
}
OptionalfinishedProduct
finishedProduct?: { id: string; name: string; reference: string } | null
Optionaltax
tax?: { id: string; name: string; rate: number } | null