WIP: Refernzkurve wird angezeigt, aber kann nicht gesetzt werden

This commit is contained in:
Ismail Ali
2025-04-15 18:58:20 +02:00
parent 58577daf75
commit 9e8028ac16
3 changed files with 27 additions and 2 deletions

View File

@@ -6,5 +6,5 @@
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
*/
const webVersion = "1.6.230";
const webVersion = "1.6.231";
export default webVersion;

View File

@@ -0,0 +1,25 @@
// /api/cpl/tdrReferenceCurveAPIHandler.ts
import { NextApiRequest, NextApiResponse } from "next";
import path from "path";
import { promises as fs } from "fs";
export default async function handler(
req: NextApiRequest,
res: NextApiResponse
) {
const { slot } = req.query;
const filePath = path.join(
process.cwd(),
"apiMockData",
"tdr-reference-curves",
`slot${slot}.json`
);
try {
const fileContent = await fs.readFile(filePath, "utf-8");
res.status(200).json(JSON.parse(fileContent));
} catch (error) {
res.status(404).json({ error: "File not found" });
}
}

View File

@@ -13,7 +13,7 @@ export const fetchTDRReferenceCurveService = async (
// 🔁 Fallback: Datei oder Produktion-API
const isDev = process.env.NEXT_PUBLIC_NODE_ENV === "development";
const url = isDev
? `/api/cpl/tdr-reference-curves/slot${slot}.json`
? `/api/cpl/tdrReferenceCurveAPIHandler?slot=${slot}`
: `${window.location.origin}/CPL?Service/empty.acp&TDR=${slot}`;
try {