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', };