branch dev
This commit is contained in:
@@ -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[];
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user