2026-05-29 16:50:53 +02:00
|
|
|
export interface ArtMacchinaParte {
|
|
|
|
|
id: number;
|
|
|
|
|
idart: number;
|
|
|
|
|
descrizione: string;
|
|
|
|
|
codice: string;
|
|
|
|
|
barcode: string | null;
|
|
|
|
|
idmacchina: number;
|
|
|
|
|
qtain: number;
|
|
|
|
|
qtaout: number;
|
|
|
|
|
created_at: string;
|
|
|
|
|
updated_at: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface ArticoloAssegnatoMacchina {
|
|
|
|
|
id: number;
|
|
|
|
|
id_articolo: number;
|
2026-05-31 12:33:36 +02:00
|
|
|
id_macchina: number;
|
2026-05-29 16:50:53 +02:00
|
|
|
descrizione: string;
|
|
|
|
|
codice: string;
|
|
|
|
|
barcode: string | null;
|
|
|
|
|
quantita: number;
|
|
|
|
|
qtain: number;
|
|
|
|
|
qtaout: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface AssegnaArticoloInput {
|
|
|
|
|
idart: number;
|
|
|
|
|
idmacchina: number;
|
|
|
|
|
quantita: number;
|
|
|
|
|
causale?: string;
|
|
|
|
|
user?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface RimuoviArticoloInput {
|
|
|
|
|
quantita: number;
|
|
|
|
|
opzione: "carico" | "elimina";
|
2026-05-30 00:06:30 +02:00
|
|
|
idMagazzino?: number;
|
2026-05-29 16:50:53 +02:00
|
|
|
user?: string;
|
|
|
|
|
}
|