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;
|
uuidLike?: string;
|
||||||
claveProdServ?: string;
|
claveProdServ?: string;
|
||||||
descripcionConcepto?: string;
|
descripcionConcepto?: string;
|
||||||
|
noIdentificacion?: string;
|
||||||
orderBy?: 'fecha' | 'importe';
|
orderBy?: 'fecha' | 'importe';
|
||||||
orderDir?: 'asc' | 'desc';
|
orderDir?: 'asc' | 'desc';
|
||||||
} = {
|
} = {
|
||||||
@@ -146,6 +147,7 @@ export async function listConceptos(req: Request, res: Response, next: NextFunct
|
|||||||
uuidLike: req.query.uuidLike as string,
|
uuidLike: req.query.uuidLike as string,
|
||||||
claveProdServ: req.query.claveProdServ as string,
|
claveProdServ: req.query.claveProdServ as string,
|
||||||
descripcionConcepto: req.query.descripcionConcepto as string,
|
descripcionConcepto: req.query.descripcionConcepto as string,
|
||||||
|
noIdentificacion: req.query.noIdentificacion as string,
|
||||||
orderBy: req.query.orderBy as 'fecha' | 'importe',
|
orderBy: req.query.orderBy as 'fecha' | 'importe',
|
||||||
orderDir: req.query.orderDir as 'asc' | 'desc',
|
orderDir: req.query.orderDir as 'asc' | 'desc',
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user