From ad72436c25039f04235cea0c94d6579ebacc19e2 Mon Sep 17 00:00:00 2001 From: Horux Dev Date: Tue, 30 Jun 2026 21:20:36 +0000 Subject: [PATCH] fix(cfdi): controller de conceptos recibe filtro noIdentificacion --- apps/api/src/controllers/cfdi.controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/api/src/controllers/cfdi.controller.ts b/apps/api/src/controllers/cfdi.controller.ts index 7ecd4c0..f45a0d5 100644 --- a/apps/api/src/controllers/cfdi.controller.ts +++ b/apps/api/src/controllers/cfdi.controller.ts @@ -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', };