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); };