Users: employeeId auto-generated from role prefix (TCH/MAN/ACC/MGR/SUP/AUD/ADM) followed by next sequential number; shown read-only in edit form, removed from create form. Cost Centres: new code field (SITE-001 ...) added to Vessel model with migration + backfill; auto-generated on create, read-only in edit. Vendors and Accounts: code/vendorId inputs pre-filled with the next suggested ID (VND-001, ACC-001) from the server page; user can override with any PREFIX-NUMBER format, validated by regex. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
88 lines
3.4 KiB
TypeScript
88 lines
3.4 KiB
TypeScript
"use server";
|
|
|
|
import { auth } from "@/auth";
|
|
import { db } from "@/lib/db";
|
|
import { hasPermission } from "@/lib/permissions";
|
|
import { z } from "zod";
|
|
import { revalidatePath } from "next/cache";
|
|
|
|
type ActionResult = { ok: true } | { error: string };
|
|
|
|
const accountSchema = z.object({
|
|
code: z.string().min(1, "Account code is required").regex(/^[A-Z0-9]+-\d+$/i, "Code must be in format PREFIX-NUMBER (e.g. ACC-001)"),
|
|
name: z.string().min(1, "Account name is required"),
|
|
description: z.string().optional(),
|
|
});
|
|
|
|
export async function createAccount(formData: FormData): Promise<ActionResult> {
|
|
const session = await auth();
|
|
if (!session?.user || !hasPermission(session.user.role, "manage_vessels_accounts")) {
|
|
return { error: "Unauthorized" };
|
|
}
|
|
|
|
const parsed = accountSchema.safeParse({
|
|
code: formData.get("code"),
|
|
name: formData.get("name"),
|
|
description: formData.get("description") || undefined,
|
|
});
|
|
if (!parsed.success) return { error: parsed.error.errors[0]?.message ?? "Validation failed" };
|
|
|
|
const data = parsed.data;
|
|
const exists = await db.account.findUnique({ where: { code: data.code } });
|
|
if (exists) return { error: "An account with that code already exists" };
|
|
|
|
await db.account.create({ data: { code: data.code, name: data.name, description: data.description ?? null } });
|
|
revalidatePath("/admin/accounts");
|
|
return { ok: true };
|
|
}
|
|
|
|
export async function updateAccount(formData: FormData): Promise<ActionResult> {
|
|
const session = await auth();
|
|
if (!session?.user || !hasPermission(session.user.role, "manage_vessels_accounts")) {
|
|
return { error: "Unauthorized" };
|
|
}
|
|
|
|
const id = formData.get("id") as string;
|
|
if (!id) return { error: "Account ID is required" };
|
|
|
|
const parsed = accountSchema.safeParse({
|
|
code: formData.get("code"),
|
|
name: formData.get("name"),
|
|
description: formData.get("description") || undefined,
|
|
});
|
|
if (!parsed.success) return { error: parsed.error.errors[0]?.message ?? "Validation failed" };
|
|
|
|
const data = parsed.data;
|
|
const conflict = await db.account.findFirst({ where: { code: data.code, id: { not: id } } });
|
|
if (conflict) return { error: "Another account already uses that code" };
|
|
|
|
await db.account.update({ where: { id }, data: { code: data.code, name: data.name, description: data.description ?? null } });
|
|
revalidatePath("/admin/accounts");
|
|
return { ok: true };
|
|
}
|
|
|
|
export async function deleteAccount(id: string): Promise<ActionResult> {
|
|
const session = await auth();
|
|
if (!session?.user || !hasPermission(session.user.role, "manage_vessels_accounts")) return { error: "Unauthorized" };
|
|
|
|
const inUse = await db.purchaseOrder.findFirst({ where: { accountId: id } });
|
|
if (inUse) return { error: "Cannot delete: account is referenced in purchase orders. Remove those POs first." };
|
|
|
|
await db.account.delete({ where: { id } });
|
|
revalidatePath("/admin/accounts");
|
|
return { ok: true };
|
|
}
|
|
|
|
export async function toggleAccountActive(accountId: string): Promise<ActionResult> {
|
|
const session = await auth();
|
|
if (!session?.user || !hasPermission(session.user.role, "manage_vessels_accounts")) {
|
|
return { error: "Unauthorized" };
|
|
}
|
|
|
|
const account = await db.account.findUnique({ where: { id: accountId }, select: { isActive: true } });
|
|
if (!account) return { error: "Account not found" };
|
|
|
|
await db.account.update({ where: { id: accountId }, data: { isActive: !account.isActive } });
|
|
revalidatePath("/admin/accounts");
|
|
return { ok: true };
|
|
}
|