continua upgrade Vue 3

This commit is contained in:
Paolo Arena
2021-09-02 03:22:13 +02:00
parent 1d6c55807c
commit 04a9ce2232
31 changed files with 5615 additions and 721 deletions

View File

@@ -3,8 +3,8 @@ export interface IProduct {
active?: boolean
idProducer?: string,
idStorehouses?: string[],
producer?: IProducer,
storehouses?: IStorehouse[],
producer: IProducer,
storehouses: IStorehouse[],
code?: string,
name?: string,
description?: string,
@@ -25,7 +25,7 @@ export interface IProduct {
}
export interface IBaseOrder {
order?: IOrder
order: IOrder
}
export interface IOrder {