fix error on all interfaces
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import {productDeliveryInfo} from "./product-delivery.interface";
|
||||
import {DelivererInfo} from "./deliverer.interface";
|
||||
|
||||
export interface DeliveryNoteInfo {
|
||||
trackingNumber: string;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import {ProductInfo} from "./product.interface";
|
||||
|
||||
export interface productDeliveryInfo {
|
||||
product: ProductInfo[];
|
||||
product: ProductInfo;
|
||||
quantity: number;
|
||||
}
|
||||
@@ -1,5 +1,7 @@
|
||||
import {ProductInfo} from "./product.interface";
|
||||
|
||||
export interface ProductOrderInfo {
|
||||
product: string;
|
||||
product: ProductInfo;
|
||||
quantity: number;
|
||||
price: number;
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
export interface ProductInfo {
|
||||
reference: string;
|
||||
name: string;
|
||||
supplier: number[];
|
||||
duration: number;
|
||||
caliber: string;
|
||||
approvalNumber: string;
|
||||
|
||||
@@ -4,5 +4,5 @@ import {SupplierInfo} from "./supplier.interface";
|
||||
export interface PurchaseOrderInfo {
|
||||
purchaseCondition: string;
|
||||
productOrder: ProductOrderInfo[];
|
||||
supplier: SupplierInfo[]
|
||||
supplier: SupplierInfo;
|
||||
}
|
||||
@@ -5,5 +5,5 @@ export interface QuotationInfo {
|
||||
saleCondition: string;
|
||||
message: string;
|
||||
productOrder: ProductOrderInfo[];
|
||||
supplier: SupplierInfo[]
|
||||
supplier: SupplierInfo;
|
||||
}
|
||||
@@ -1,9 +1,6 @@
|
||||
import {ProductInfo} from "./product.interface";
|
||||
|
||||
export interface StockInfo {
|
||||
name: string;
|
||||
nec: string;
|
||||
caliber: string;
|
||||
weight: number;
|
||||
duration: string;
|
||||
product: ProductInfo;
|
||||
quantity: number;
|
||||
minimalQuantity: number;
|
||||
}
|
||||
@@ -8,5 +8,5 @@ export interface SupplierInfo {
|
||||
zipCode: string;
|
||||
city: string;
|
||||
deliveryDelay: number;
|
||||
product: ProductInfo[];
|
||||
products: ProductInfo[];
|
||||
}
|
||||
Reference in New Issue
Block a user