feature/IO-3066-1-scaffolding: Minor cleanup, addition of idea project files.

This commit is contained in:
Dave Richer
2025-04-16 14:13:17 -04:00
parent affe412586
commit 8b7280f66c
12 changed files with 84 additions and 37 deletions

View File

@@ -8,9 +8,8 @@ import ImportJob from "../decoder/decoder";
import folderScan from "../decoder/folder-scan";
import { handleEMSPartsOrder } from "../ems-parts-order/ems-parts-order-handler";
import { handleShopMetaDataFetch } from "../ipc/ipcMainHandler.user";
import { handlePartsPariceChangeRequest } from "../ppc/ppc-handler";
import { handlePartsPriceChangeRequest } from "../ppc/ppc-handler";
import { handleQuickBookRequest } from "../quickbooks-desktop/quickbooks-desktop";
import { c } from "vite/dist/node/moduleRunnerTransport.d-CXw_Ws6P";
export default class LocalServer {
private app: express.Application;
@@ -121,7 +120,7 @@ export default class LocalServer {
res.status(200).json(files);
return;
});
this.app.post("/ppc", handlePartsPariceChangeRequest);
this.app.post("/ppc", handlePartsPriceChangeRequest);
this.app.post("/oec", handleEMSPartsOrder);
this.app.post(
"/import",