branch dev

This commit is contained in:
JurTI-BR
2025-03-28 11:29:34 -03:00
parent 41e56dda12
commit 8af4b05f28
18 changed files with 4289 additions and 7731 deletions

View File

@@ -1,25 +1,24 @@
export class Invoice {
customer: string;
invoiceNumber: number;
loadingNumber: number;
reasonId: number;
reasonText: string;
status: string;
}
export class CarInDelivery {
finalKm: number;
invoices: Invoice[];
licensePlate: string;
loadingNumber: number;
observation: string;
images: string[];
userId: number;
qtdPaletesPbr: number;
qtdPaletesCim: number;
qtdPaletesDes: number;
remnant: string;
observationRemnant: string;
imagesRemnant: string[];
}
export class Invoice {
customer: string;
invoiceNumber: number;
loadingNumber: number;
reasonId: number;
reasonText: string;
status: string;
}
export class CarInDelivery {
finalKm: number;
invoices: Invoice[];
licensePlate: string;
loadingNumber: number;
observation: string;
images: string[];
userId: number;
qtdPaletesPbr: number;
qtdPaletesCim: number;
qtdPaletesDes: number;
remnant: string;
observationRemnant: string;
imagesRemnant: string[];
}

View File

@@ -1,18 +1,16 @@
export class CarOutDelivery {
helpers: Helper[]; // Array de objetos auxiliares
licensePlate: string; // Placa do veículo
numberLoading: number[]; // Número do carregamento
palletCount: number; // Quantidade de pallets
photos: string[]; // Array de URLs das fotos
startKm: number; // Quilometragem de início (como string)
userCode: number; // Código do usuário
vehicleCode: number; // Código do veículo
}
export class Helper {
id: number;
name: string;
phone: string;
}
export class CarOutDelivery {
helpers: Helper[]; // Array de objetos auxiliares
licensePlate: string; // Placa do veículo
numberLoading: number[]; // Número do carregamento
palletCount: number; // Quantidade de pallets
photos: string[]; // Array de URLs das fotos
startKm: number; // Quilometragem de início (como string)
userCode: number; // Código do usuário
vehicleCode: number; // Código do veículo
}
export class Helper {
id: number;
name: string;
phone: string;
}