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

@@ -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;
}