feat : ajout d'un système de scanner bovin
This commit is contained in:
29
frontend/services/bovine.ts
Normal file
29
frontend/services/bovine.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import { useApi } from '~/composables/useApi'
|
||||
import type { BovineData, BovinePayload } from '~/services/dto/bovine-data'
|
||||
|
||||
export async function createBovine(payload: BovinePayload) {
|
||||
const api = useApi()
|
||||
return api.post<BovineData>('bovines', payload, {
|
||||
headers: { 'Content-Type': 'application/ld+json' },
|
||||
toastErrorKey: 'errors.bovine.create',
|
||||
toastSuccessKey: 'success.bovine.create'
|
||||
})
|
||||
}
|
||||
|
||||
export async function createBovines(nationalNumbers: string[]): Promise<{ created: BovineData[]; errors: string[] }> {
|
||||
const created: BovineData[] = []
|
||||
const errors: string[] = []
|
||||
|
||||
for (const nationalNumber of nationalNumbers) {
|
||||
try {
|
||||
const bovine = await createBovine({ nationalNumber })
|
||||
if (bovine) {
|
||||
created.push(bovine)
|
||||
}
|
||||
} catch {
|
||||
errors.push(nationalNumber)
|
||||
}
|
||||
}
|
||||
|
||||
return { created, errors }
|
||||
}
|
||||
14
frontend/services/dto/bovine-data.ts
Normal file
14
frontend/services/dto/bovine-data.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
export interface BovineData {
|
||||
id: number
|
||||
nationalNumber: string
|
||||
receivedWeight: number | null
|
||||
arrivalDate: string | null
|
||||
buildingCase: string | null
|
||||
}
|
||||
|
||||
export type BovinePayload = {
|
||||
nationalNumber?: string
|
||||
receivedWeight?: number | null
|
||||
arrivalDate?: string | null
|
||||
buildingCase?: string | null
|
||||
}
|
||||
Reference in New Issue
Block a user