security: re-secure fp-patch
All checks were successful
Build pitch-deck / build-push-deploy (push) Successful in 1m16s
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 38s
CI / test-python-voice (push) Successful in 36s
CI / test-bqas (push) Successful in 33s
All checks were successful
Build pitch-deck / build-push-deploy (push) Successful in 1m16s
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 38s
CI / test-python-voice (push) Successful in 36s
CI / test-bqas (push) Successful in 33s
This commit is contained in:
@@ -1,51 +1,17 @@
|
||||
import { NextResponse } from 'next/server'
|
||||
import { NextRequest, NextResponse } from 'next/server'
|
||||
import { requireAdmin } from '@/lib/admin-auth'
|
||||
import pool from '@/lib/db'
|
||||
import { computeFinanzplan } from '@/lib/finanzplan/engine'
|
||||
|
||||
/** TEMP public — will be re-secured after execution */
|
||||
export async function POST() {
|
||||
const results: string[] = []
|
||||
const WD = 'c0000000-0000-0000-0000-000000000200'
|
||||
/** Admin-only: recompute a Finanzplan scenario. */
|
||||
export async function POST(request: NextRequest) {
|
||||
const guard = await requireAdmin(request)
|
||||
if (guard.kind === 'response') return guard.response
|
||||
|
||||
try {
|
||||
// 1. Fix umlauts across ALL scenarios
|
||||
const umlautFixes = [
|
||||
"UPDATE fp_betriebliche_aufwendungen SET row_label = REPLACE(row_label, 'Kleingeraete', 'Kleingeräte') WHERE row_label LIKE '%Kleingeraete%'",
|
||||
"UPDATE fp_guv SET row_label = REPLACE(row_label, 'Ertraege', 'Erträge') WHERE row_label LIKE '%Ertraege%'",
|
||||
"UPDATE fp_kunden SET row_label = REPLACE(row_label, 'Stueck', 'Stück') WHERE row_label LIKE '%Stueck%'",
|
||||
"UPDATE fp_umsatzerloese SET row_label = REPLACE(row_label, 'Stueck', 'Stück') WHERE row_label LIKE '%Stueck%'",
|
||||
"UPDATE fp_materialaufwand SET row_label = REPLACE(row_label, 'Stueck', 'Stück') WHERE row_label LIKE '%Stueck%'",
|
||||
]
|
||||
for (const sql of umlautFixes) {
|
||||
const { rowCount } = await pool.query(sql)
|
||||
if (rowCount && rowCount > 0) results.push(`UMLAUT: ${rowCount} rows`)
|
||||
}
|
||||
const body = await request.json().catch(() => ({}))
|
||||
const scenarioId = body.scenarioId || (await pool.query("SELECT id FROM fp_scenarios WHERE is_default = true LIMIT 1")).rows[0]?.id
|
||||
if (!scenarioId) return NextResponse.json({ error: 'No scenario found' }, { status: 404 })
|
||||
|
||||
// 2. Delete Full-Stack at sort_order 10 in WD (was moved there earlier)
|
||||
const { rowCount: delFS } = await pool.query(`
|
||||
DELETE FROM fp_personalkosten WHERE scenario_id = $1 AND sort_order = 10 AND position ILIKE '%Full-Stack%'
|
||||
`, [WD])
|
||||
results.push(`DELETE Full-Stack pos 10: ${delFS}`)
|
||||
|
||||
// 3. Renumber person_name to match sort_order in WD
|
||||
const { rows: wdPers } = await pool.query(`
|
||||
SELECT id, sort_order FROM fp_personalkosten WHERE scenario_id = $1 AND sort_order >= 3 ORDER BY sort_order
|
||||
`, [WD])
|
||||
for (const r of wdPers) {
|
||||
await pool.query(`UPDATE fp_personalkosten SET person_name = $1 WHERE id = $2`, [`Pos ${r.sort_order}`, r.id])
|
||||
}
|
||||
results.push(`RENUMBERED ${wdPers.length} positions`)
|
||||
|
||||
// 4. Recompute both scenarios
|
||||
const r1 = await computeFinanzplan(pool, WD)
|
||||
results.push(`COMPUTED WD: cash_m60=${r1.liquiditaet?.endstand?.m60}`)
|
||||
|
||||
const { rows: base } = await pool.query("SELECT id FROM fp_scenarios WHERE is_default = true LIMIT 1")
|
||||
const r2 = await computeFinanzplan(pool, base[0].id)
|
||||
results.push(`COMPUTED BASE: cash_m60=${r2.liquiditaet?.endstand?.m60}`)
|
||||
} catch (err) {
|
||||
results.push(`ERROR: ${err instanceof Error ? err.message : String(err)}`)
|
||||
}
|
||||
|
||||
return NextResponse.json({ success: true, results })
|
||||
const result = await computeFinanzplan(pool, scenarioId)
|
||||
return NextResponse.json({ success: true, scenarioId, cash_m60: result.liquiditaet?.endstand?.m60 })
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user