- NAS storage for created invoices (PDF via puppeteer), received invoices, and offers with auto-save on create/edit - Deterministic file paths derived from DB fields (no file_path column needed) - Separate NAS mount points: NAS_FINANCIALS_PATH, NAS_OFFERS_PATH - Invoice language field (cs/en) stored per invoice, replaces lang modal - Invoices list filtered by month/year matching KPI card selection - Centralized date helpers (src/utils/date.ts) replacing all .toISOString() calls that returned UTC instead of local time - Attendance project switching uses exact time (not rounded) - Comment cleanup: removed ~100 unnecessary/Czech comments - Removed as-any casts in orders and attendance - Prisma migrations: add invoice language, drop received_invoices BLOB columns Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
29 lines
895 B
TypeScript
29 lines
895 B
TypeScript
import { z } from "zod";
|
|
|
|
export const UpdateCompanySettingsSchema = z.object({
|
|
company_name: z.string().nullish(),
|
|
street: z.string().nullish(),
|
|
city: z.string().nullish(),
|
|
postal_code: z.string().nullish(),
|
|
country: z.string().nullish(),
|
|
company_id: z.string().nullish(),
|
|
vat_id: z.string().nullish(),
|
|
quotation_prefix: z.string().nullish(),
|
|
default_currency: z.string().nullish(),
|
|
order_type_code: z.string().nullish(),
|
|
invoice_type_code: z.string().nullish(),
|
|
default_vat_rate: z
|
|
.union([z.number(), z.string()])
|
|
.transform((v) => Number(v))
|
|
.optional(),
|
|
require_2fa: z
|
|
.preprocess((v) => v === true || v === 1 || v === "1", z.boolean())
|
|
.optional(),
|
|
custom_fields: z.array(z.any()).optional(),
|
|
supplier_field_order: z.array(z.any()).optional(),
|
|
});
|
|
|
|
export type UpdateCompanySettingsInput = z.infer<
|
|
typeof UpdateCompanySettingsSchema
|
|
>;
|