Partidas por tipo de factura en importacion

This commit is contained in:
2026-03-13 17:38:30 -05:00
parent dfa44aaff7
commit dada17b54c
15 changed files with 1015 additions and 56 deletions

View File

@@ -88,6 +88,10 @@ export interface LineReferences {
serie_id?: number;
}
import type {
IdentifierDetail
} from './general_catalogs/identifiers';
export interface Serie {
id?: number;
line_item_id?: number;
@@ -98,6 +102,9 @@ export interface Serie {
brand?: string;
expo_brad?: string;
number_id?: string;
import_invoice?: string;
import_line?: number;
image_path?: string;
}
export interface FaLineItem {
@@ -207,6 +214,7 @@ export interface Item {
reference?: LineReferences;
fa_data?: FaLineItem; // Fixed Asset specific data
series?: Serie[]; // Series data (multiple per line)
identifiers?: IdentifierDetail[]; // Identifiers for this line
}
export interface ItemListResponse {