fixed errors of price view in supplier page

This commit is contained in:
2025-11-30 15:47:43 +01:00
parent 1c8be0a261
commit b4aaa18103
4 changed files with 16 additions and 14 deletions

View File

@@ -17,7 +17,7 @@ export interface GetPriceDto {
supplierEmail?: string | null;
supplierPhone?: string | null;
supplierAddress?: string | null;
supplierZipCode?: number;
supplierZipCode?: string | null;
supplierCity?: string | null;
supplierDeliveryDelay?: number;
productId?: number;
@@ -25,7 +25,7 @@ export interface GetPriceDto {
productName?: string | null;
productDuration?: number;
productCaliber?: number;
productApprovalNumber?: number;
productApprovalNumber?: string | null;
productWeight?: number;
productNec?: number;
productImage?: string | null;

View File

@@ -7,6 +7,7 @@
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { GetPriceDto } from './get-price-dto';
import { GetProductDto } from './get-product-dto';
@@ -20,5 +21,6 @@ export interface GetSupplierDto {
city?: string | null;
deliveryDelay?: number;
products?: Array<GetProductDto> | null;
prices?: Array<GetPriceDto> | null;
}