diff --git a/frontend/components/reception/reception-form.vue b/frontend/components/reception/reception-form.vue index 393de8f..063a363 100644 --- a/frontend/components/reception/reception-form.vue +++ b/frontend/components/reception/reception-form.vue @@ -144,19 +144,7 @@ import type {VehicleData} from '~/services/dto/vehicle-data' import {getVehicleList} from '~/services/vehicle' import {RECEPTION_TYPE_CODES, SUPLLIER_CODE} from "~/utils/constants"; import {deleteReceptionBovine, getReceptionBovineList} from "~/services/reception-bovine"; - -type ReceptionFormData = { - licensePlate: string - receptionDate: string - receptionTypeId: string - userId: string - supplierId: string - addressId: string - truckId: string - carrierId: string - driverId: string - vehicleId: string -} +import type {ReceptionFormData} from "~/services/dto/reception-data"; const router = useRouter() const receptionStore = useReceptionStore() diff --git a/frontend/pages/reception/update/[[id]].vue b/frontend/pages/reception/update/[[id]].vue index b713e19..e5b28a7 100644 --- a/frontend/pages/reception/update/[[id]].vue +++ b/frontend/pages/reception/update/[[id]].vue @@ -124,7 +124,6 @@