feat : ajout de colonne pour les Supplier, Address. Modification du numéro de réception et ajout de fixtures
This commit is contained in:
@@ -2,6 +2,7 @@ export interface AddressData {
|
||||
id: number
|
||||
label: string
|
||||
street: string
|
||||
street2?: string | null
|
||||
postalCode: string
|
||||
city: string
|
||||
countryCode: string
|
||||
|
||||
@@ -3,5 +3,7 @@ import type { AddressData } from '~/services/dto/address-data'
|
||||
export interface SupplierData {
|
||||
id: number
|
||||
name: string
|
||||
email?: string | null
|
||||
phone?: string | null
|
||||
addresses?: AddressData[] | null
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user