WIP CCC Part Price Change.

This commit is contained in:
Patrick Fic
2025-04-02 17:10:16 -07:00
parent da18d3308f
commit b60d9b0f41
13 changed files with 526 additions and 49 deletions

View File

@@ -6,6 +6,7 @@ import http from "http";
import errorTypeCheck from "../../util/errorTypeCheck";
import ImportJob from "../decoder/decoder";
import folderScan from "../decoder/folder-scan";
import { handlePartsPariceChangeRequest } from "../ppc/ppc-handler";
import { handleQuickBookRequest } from "../quickbooks-desktop/quickbooks-desktop";
export default class LocalServer {
@@ -117,6 +118,7 @@ export default class LocalServer {
res.status(200).json(files);
return;
});
this.app.post("/ppc", handlePartsPariceChangeRequest);
this.app.post(
"/import",
async (req: express.Request, res: express.Response) => {