feature/migraciones-id-transportes

This commit is contained in:
2026-03-25 10:38:24 -06:00
parent d35f02563a
commit b477233245
24 changed files with 649 additions and 63 deletions

View File

@@ -124,7 +124,9 @@ export interface InvoiceLogistics {
id?: number;
invoice_id?: number;
carrier_id?: string | null;
carrier_int_id?: number | null;
transport_id?: string | null;
transport_int_id?: number | null;
transport_us_id?: string | null;
transport_type?: TransportType | null;
transport_num?: string | null;
@@ -136,6 +138,7 @@ export interface InvoiceLogistics {
license_plate?: string | null;
license_plate_complete?: string | null;
trailer_num?: string | null;
trailer_int_id?: number | null;
seal_number?: string | null;
guide_number?: string | null;
bill_number?: string | null;

View File

@@ -2,6 +2,7 @@ import { api, type ApiResponse } from '$lib/api';
export interface Trailer {
trailer_number: string;
trailer_id?: number;
ace_trailer_number?: string;
trailer_type_key?: string;
seal?: string;

View File

@@ -2,6 +2,7 @@ import { api, type ApiResponse } from '$lib/api';
export interface Transporter {
transporter_key: string;
transporter_id?: number;
name?: string;
short_name?: string;
responsible?: string;

View File

@@ -2,6 +2,7 @@ import { api, type ApiResponse } from '$lib/api';
export interface Vehicle {
vehicle_key: string;
vehicle_id?: number;
ace_vehicle_key?: string;
transporter_key?: string;
transport_identifier?: string;