Fixed error with SupplierId on Delivery Note DTO

This commit is contained in:
2026-05-25 16:33:03 +01:00
parent dbeb5b43ee
commit 7e69cbd952
4 changed files with 7 additions and 4 deletions
@@ -125,7 +125,8 @@ export class PurchaseOrderTable implements OnInit {
expeditionDate: date,
estimateDeliveryDate: estimateDate,
delivererId: 1,
productQuantities: productQuantities
productQuantities: productQuantities,
supplierId: purchaseOrder.supplierId
};
await firstValueFrom(this.deliveryNoteService.createDeliveryNoteEndpoint(deliveryNoteDto));