From f185bf87d0a048bf20f8efd9956dbad5b2a77c34 Mon Sep 17 00:00:00 2001 From: david Date: Mon, 23 Mar 2026 19:02:53 +0100 Subject: [PATCH] . --- .../api/infrastructure/proformas/express/proformas.routes.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/customer-invoices/src/api/infrastructure/proformas/express/proformas.routes.ts b/modules/customer-invoices/src/api/infrastructure/proformas/express/proformas.routes.ts index 48896163..bc91fbbc 100644 --- a/modules/customer-invoices/src/api/infrastructure/proformas/express/proformas.routes.ts +++ b/modules/customer-invoices/src/api/infrastructure/proformas/express/proformas.routes.ts @@ -12,7 +12,6 @@ import { import { CreateProformaRequestSchema, GetProformaByIdRequestSchema, - IssueProformaByIdParamsRequestSchema, ListProformasRequestSchema, ReportProformaByIdParamsRequestSchema, ReportProformaByIdQueryRequestSchema, @@ -132,7 +131,7 @@ export const proformasRouter = (params: ModuleParams, deps: ProformasInternalDep } );*/ - router.put( + /*router.put( "/:proforma_id/issue", //checkTabContext, @@ -143,7 +142,7 @@ export const proformasRouter = (params: ModuleParams, deps: ProformasInternalDep const controller = new IssuedProformaController(useCase); return controller.execute(req, res, next); } - ); + );*/ app.use(`${config.server.apiBasePath}/proformas`, router); };