d527e94bac
| 313| Création d'une page d'administration : modification/création d'un fournisseur | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [x] Pas de régression - [ ] TU/TI/TF rédigée - [x] TU/TI/TF OK - [x] CHANGELOG modifié Reviewed-on: https://gitea.malio.fr/MALIO-DEV/Ferme/pulls/20 Reviewed-by: Autin <tristan@yuno.malio.fr> Co-authored-by: Matteo <matteo@yuno.malio.fr> Co-committed-by: Matteo <matteo@yuno.malio.fr>
26 lines
537 B
TypeScript
26 lines
537 B
TypeScript
import type { AddressFormData } from "~/services/dto/address-data"
|
|
|
|
export type SupplierAddresses = AddressFormData[] | string[]
|
|
|
|
export interface SupplierData {
|
|
id: number
|
|
name: string
|
|
email?: string | null
|
|
phone?: string | null
|
|
addresses: SupplierAddresses
|
|
}
|
|
|
|
export interface SupplierFormData {
|
|
name: string
|
|
email?: string
|
|
phone?: string
|
|
addresses: AddressFormData[]
|
|
}
|
|
|
|
export type SupplierPayload = {
|
|
name: string
|
|
email?: string | null
|
|
phone?: string | null
|
|
addresses?: string[]
|
|
}
|