mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
Changed qty, supplier, shopId to not empty
Name fix for price property
This commit is contained in:
@@ -14,7 +14,7 @@ export interface AvailabilityRequestDTO {
|
||||
/**
|
||||
* Menge / Stück
|
||||
*/
|
||||
qty?: number;
|
||||
qty: number;
|
||||
|
||||
/**
|
||||
* Bestellzeichen
|
||||
@@ -24,7 +24,7 @@ export interface AvailabilityRequestDTO {
|
||||
/**
|
||||
* Lieferant
|
||||
*/
|
||||
supplier?: string;
|
||||
supplier: string;
|
||||
|
||||
/**
|
||||
* Bestellung vormerken
|
||||
@@ -34,7 +34,7 @@ export interface AvailabilityRequestDTO {
|
||||
/**
|
||||
* Preis
|
||||
*/
|
||||
prive?: PriceDTO;
|
||||
price?: PriceDTO;
|
||||
|
||||
/**
|
||||
* Stock Status Code
|
||||
@@ -49,7 +49,7 @@ export interface AvailabilityRequestDTO {
|
||||
/**
|
||||
* Shop PK
|
||||
*/
|
||||
shopId?: number;
|
||||
shopId: number;
|
||||
|
||||
/**
|
||||
* Zuordnungs-ID
|
||||
|
||||
Reference in New Issue
Block a user