fix(cfdi): controller de conceptos recibe filtro noIdentificacion
This commit is contained in:
@@ -128,6 +128,7 @@ export async function listConceptos(req: Request, res: Response, next: NextFunct
|
||||
uuidLike?: string;
|
||||
claveProdServ?: string;
|
||||
descripcionConcepto?: string;
|
||||
noIdentificacion?: string;
|
||||
orderBy?: 'fecha' | 'importe';
|
||||
orderDir?: 'asc' | 'desc';
|
||||
} = {
|
||||
@@ -146,6 +147,7 @@ export async function listConceptos(req: Request, res: Response, next: NextFunct
|
||||
uuidLike: req.query.uuidLike as string,
|
||||
claveProdServ: req.query.claveProdServ as string,
|
||||
descripcionConcepto: req.query.descripcionConcepto as string,
|
||||
noIdentificacion: req.query.noIdentificacion as string,
|
||||
orderBy: req.query.orderBy as 'fecha' | 'importe',
|
||||
orderDir: req.query.orderDir as 'asc' | 'desc',
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user