fix(notdienst): resolve timezone offset mismatch in plan generation

This commit is contained in:
t.indorf
2026-05-21 12:41:18 +02:00
parent fcea4a9168
commit 7eaa198a29
3 changed files with 29 additions and 17 deletions
+4 -3
View File
@@ -33,8 +33,8 @@ export async function generatePlanAction() {
where: { where: {
kitaId, kitaId,
date: { date: {
gte: new Date(targetYear, targetMonth - 1, 1), gte: new Date(Date.UTC(targetYear, targetMonth - 1, 1)),
lt: new Date(targetYear, targetMonth, 1), lt: new Date(Date.UTC(targetYear, targetMonth, 1)),
}, },
}, },
include: { child: { select: { familyId: true } } }, include: { child: { select: { familyId: true } } },
@@ -141,7 +141,8 @@ export async function updateAssignmentAction(
const session = await requireRole([UserRole.ADMIN, UserRole.KOORDINATOR]); const session = await requireRole([UserRole.ADMIN, UserRole.KOORDINATOR]);
const kitaId = session.user.kitaId!; const kitaId = session.user.kitaId!;
const parsedDate = new Date(date); const [yr, mo, dy] = date.slice(0, 10).split("-").map(Number);
const parsedDate = new Date(Date.UTC(yr, mo - 1, dy));
try { try {
await prisma.$transaction(async (tx) => { await prisma.$transaction(async (tx) => {
@@ -121,7 +121,8 @@ export function PlanView({ planId, status, days, allChildren }: PlanViewProps) {
</div> </div>
<div className="divide-y"> <div className="divide-y">
{days.map((day) => { {days.map((day) => {
const dateObj = new Date(day.date); const [yr, mo, dy] = day.date.slice(0, 10).split("-").map(Number);
const dateObj = new Date(yr, mo - 1, dy);
const isUnbesetzt = !day.childId; const isUnbesetzt = !day.childId;
return ( return (
+23 -13
View File
@@ -1,13 +1,8 @@
import { import {
addMonths, addMonths,
endOfMonth,
getDate, getDate,
getYear, getYear,
getMonth, getMonth,
isWeekend,
eachDayOfInterval,
startOfMonth,
startOfDay,
format, format,
} from "date-fns"; } from "date-fns";
import { de } from "date-fns/locale"; import { de } from "date-fns/locale";
@@ -36,13 +31,28 @@ export function getTargetMonthData(now = new Date()) {
} }
export function getWorkingDaysOfMonth(year: number, month: number) { export function getWorkingDaysOfMonth(year: number, month: number) {
// month ist 1-12, Date erwartet 0-11 const start = new Date(Date.UTC(year, month - 1, 1));
const start = startOfMonth(new Date(year, month - 1)); const end = new Date(Date.UTC(year, month, 0)); // last day of month
const end = endOfMonth(start);
const days = eachDayOfInterval({ start, end }); const days: Date[] = [];
const current = new Date(start);
return days while (current <= end) {
.filter((day) => !isWeekend(day)) const dayOfWeek = current.getUTCDay(); // 0 is Sunday, 6 is Saturday
.map((day) => startOfDay(day)); if (dayOfWeek !== 0 && dayOfWeek !== 6) {
days.push(new Date(current));
}
current.setUTCDate(current.getUTCDate() + 1);
}
return days;
}
export function formatDateKey(date: Date) {
return format(date, "yyyy-MM-dd");
}
export function formatUtcDateKey(date: Date) {
const yyyy = date.getUTCFullYear();
const mm = String(date.getUTCMonth() + 1).padStart(2, "0");
const dd = String(date.getUTCDate()).padStart(2, "0");
return `${yyyy}-${mm}-${dd}`;
} }