The per-status row backgrounds used MUI's solid `.light` palette shades (error.light/success.light/warning.light). Those are LIGHT colors in both schemes, so in dark mode the row's white text sat on a light fill and was effectively invisible; in light mode they read as garish saturated blocks. Replaced with low-alpha washes via the palette channel vars (rgba(var(--mui-palette-X-mainChannel) / 0.12), 0.18 on hover), which keep the row's normal theme text colour fully readable in BOTH schemes: - Offers: completed = subtle green wash; invalidated = faded/muted (opacity + secondary text, the original "voided" look) instead of a solid red block; expired = subtle amber wash. - DataTable rowDanger (kit-wide — Warehouse, WarehouseReports): subtle error wash for both the desktop row and the mobile card (card keeps its error.main border as the danger cue). - Invoices overdue rows: subtle amber wash. - Dashboard 2FA banner Card: subtle error wash (keeps the error.main border) so the banner copy stays readable in dark mode. Verified live in Chrome on Offers (completed + invalidated, light + dark): faint tint + normal readable text, channel switches per scheme. tsc -b --noEmit, npm run build, vitest 152/152 all clean. (Left untouched: small icon tiles / callout boxes that pair a .light bg with an explicit dark or coloured text/glyph — those are readable in both schemes by construction.) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
925 lines
26 KiB
TypeScript
925 lines
26 KiB
TypeScript
import { useState, useEffect, useRef } from "react";
|
|
import { Link as RouterLink, useNavigate } from "react-router-dom";
|
|
import Box from "@mui/material/Box";
|
|
import Typography from "@mui/material/Typography";
|
|
import IconButton from "@mui/material/IconButton";
|
|
import CircularProgress from "@mui/material/CircularProgress";
|
|
import { useAlert } from "../context/AlertContext";
|
|
import { useAuth } from "../context/AuthContext";
|
|
import Forbidden from "../components/Forbidden";
|
|
|
|
import apiFetch from "../utils/api";
|
|
import { formatCurrency, formatDate, czechPlural } from "../utils/formatters";
|
|
import useTableSort from "../hooks/useTableSort";
|
|
import useDebounce from "../hooks/useDebounce";
|
|
import { useQuery, useQueryClient } from "@tanstack/react-query";
|
|
import { usePaginatedQuery } from "../hooks/usePaginatedQuery";
|
|
import { offerListOptions, offerCustomersOptions } from "../lib/queries/offers";
|
|
import { useApiMutation } from "../lib/queries/mutations";
|
|
import {
|
|
Button,
|
|
Card,
|
|
DataTable,
|
|
Pagination,
|
|
Modal,
|
|
ConfirmDialog,
|
|
Field,
|
|
TextField,
|
|
Select,
|
|
StatusChip,
|
|
FileUpload,
|
|
Alert,
|
|
EmptyState,
|
|
FilterBar,
|
|
Tabs,
|
|
PageHeader,
|
|
PageEnter,
|
|
LoadingState,
|
|
type DataColumn,
|
|
type TabDef,
|
|
} from "../ui";
|
|
|
|
const API_BASE = "/api/admin";
|
|
const DRAFT_KEY = "boha_offer_draft";
|
|
|
|
const STATUS_FILTERS = [
|
|
{ value: "", label: "Vše" },
|
|
{ value: "active", label: "Aktivní" },
|
|
{ value: "ordered", label: "Objednaná" },
|
|
{ value: "invalidated", label: "Zneplatněná" },
|
|
];
|
|
|
|
interface Quotation {
|
|
id: number;
|
|
quotation_number: string;
|
|
project_code: string;
|
|
customer_name: string;
|
|
created_at: string;
|
|
valid_until: string;
|
|
currency: string;
|
|
total: number;
|
|
status: string;
|
|
order_id?: number;
|
|
order_status?: string;
|
|
}
|
|
|
|
interface Draft {
|
|
form: {
|
|
project_code: string;
|
|
customer_name: string;
|
|
created_at: string;
|
|
valid_until: string;
|
|
currency: string;
|
|
};
|
|
items: unknown[];
|
|
savedAt?: string;
|
|
}
|
|
|
|
const TemplatesIcon = (
|
|
<svg
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
>
|
|
<rect x="3" y="3" width="18" height="18" rx="2" />
|
|
<path d="M3 9h18M9 21V9" />
|
|
</svg>
|
|
);
|
|
const PlusIcon = (
|
|
<svg
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
>
|
|
<line x1="12" y1="5" x2="12" y2="19" />
|
|
<line x1="5" y1="12" x2="19" y2="12" />
|
|
</svg>
|
|
);
|
|
const ViewIcon = (
|
|
<svg
|
|
width="18"
|
|
height="18"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
>
|
|
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" />
|
|
<circle cx="12" cy="12" r="3" />
|
|
</svg>
|
|
);
|
|
const EditIcon = (
|
|
<svg
|
|
width="18"
|
|
height="18"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
>
|
|
<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" />
|
|
<path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z" />
|
|
</svg>
|
|
);
|
|
const DuplicateIcon = (
|
|
<svg
|
|
width="18"
|
|
height="18"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
>
|
|
<rect x="9" y="9" width="13" height="13" rx="2" ry="2" />
|
|
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" />
|
|
</svg>
|
|
);
|
|
const OrderViewIcon = (
|
|
<svg
|
|
width="18"
|
|
height="18"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
>
|
|
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" />
|
|
<polyline points="14 2 14 8 20 8" />
|
|
<text
|
|
x="12"
|
|
y="16.5"
|
|
textAnchor="middle"
|
|
fill="currentColor"
|
|
stroke="none"
|
|
fontSize="9"
|
|
fontWeight="700"
|
|
>
|
|
O
|
|
</text>
|
|
</svg>
|
|
);
|
|
const OrderCreateIcon = (
|
|
<svg
|
|
width="18"
|
|
height="18"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
>
|
|
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" />
|
|
<polyline points="14 2 14 8 20 8" />
|
|
<line x1="12" y1="11" x2="12" y2="17" />
|
|
<line x1="9" y1="14" x2="15" y2="14" />
|
|
</svg>
|
|
);
|
|
const InvalidateIcon = (
|
|
<svg
|
|
width="18"
|
|
height="18"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
>
|
|
<circle cx="12" cy="12" r="10" />
|
|
<line x1="4.93" y1="4.93" x2="19.07" y2="19.07" />
|
|
</svg>
|
|
);
|
|
const PdfIcon = (
|
|
<svg
|
|
width="18"
|
|
height="18"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
>
|
|
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" />
|
|
<polyline points="14 2 14 8 20 8" />
|
|
<line x1="16" y1="13" x2="8" y2="13" />
|
|
<line x1="16" y1="17" x2="8" y2="17" />
|
|
</svg>
|
|
);
|
|
const DeleteIcon = (
|
|
<svg
|
|
width="18"
|
|
height="18"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
>
|
|
<polyline points="3 6 5 6 21 6" />
|
|
<path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" />
|
|
</svg>
|
|
);
|
|
|
|
export default function Offers() {
|
|
const alert = useAlert();
|
|
const { hasPermission } = useAuth();
|
|
const navigate = useNavigate();
|
|
|
|
const { sort, order, handleSort } = useTableSort("quotation_number");
|
|
const [search, setSearch] = useState("");
|
|
const debouncedSearch = useDebounce(search, 300);
|
|
const [page, setPage] = useState(1);
|
|
const [statusFilter, setStatusFilter] = useState("");
|
|
const [customerFilter, setCustomerFilter] = useState<number | "">("");
|
|
|
|
const { data: customers } = useQuery(offerCustomersOptions());
|
|
|
|
const [deleteConfirm, setDeleteConfirm] = useState<{
|
|
show: boolean;
|
|
quotation: Quotation | null;
|
|
}>({ show: false, quotation: null });
|
|
const [deleting, setDeleting] = useState(false);
|
|
const [invalidateConfirm, setInvalidateConfirm] = useState<{
|
|
show: boolean;
|
|
quotation: Quotation | null;
|
|
}>({ show: false, quotation: null });
|
|
const [invalidating, setInvalidating] = useState(false);
|
|
const blobUrlRef = useRef<string | null>(null);
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
if (blobUrlRef.current) {
|
|
URL.revokeObjectURL(blobUrlRef.current);
|
|
blobUrlRef.current = null;
|
|
}
|
|
};
|
|
}, []);
|
|
const [duplicating, setDuplicating] = useState<number | null>(null);
|
|
const [pdfLoading, setPdfLoading] = useState<number | null>(null);
|
|
const [creatingOrder, setCreatingOrder] = useState<number | null>(null);
|
|
const [orderModal, setOrderModal] = useState<{
|
|
show: boolean;
|
|
quotation: Quotation | null;
|
|
}>({ show: false, quotation: null });
|
|
const [customerOrderNumber, setCustomerOrderNumber] = useState("");
|
|
const [orderAttachment, setOrderAttachment] = useState<File | null>(null);
|
|
const [draft, setDraft] = useState<Draft | null>(() => {
|
|
try {
|
|
const raw = localStorage.getItem(DRAFT_KEY);
|
|
if (!raw) return null;
|
|
const parsed = JSON.parse(raw);
|
|
if (parsed && parsed.form && Array.isArray(parsed.items)) return parsed;
|
|
} catch {
|
|
/* ignore corrupt data */
|
|
}
|
|
return null;
|
|
});
|
|
|
|
const queryClient = useQueryClient();
|
|
const {
|
|
items: quotations,
|
|
pagination,
|
|
isPending,
|
|
isFetching,
|
|
} = usePaginatedQuery<Quotation>(
|
|
offerListOptions({
|
|
search: debouncedSearch,
|
|
sort,
|
|
order,
|
|
page,
|
|
status: statusFilter || undefined,
|
|
customer_id: customerFilter || undefined,
|
|
}),
|
|
);
|
|
|
|
const duplicateMutation = useApiMutation<
|
|
number,
|
|
{ message?: string; error?: string }
|
|
>({
|
|
url: (id) => `${API_BASE}/offers/${id}/duplicate`,
|
|
method: () => "POST",
|
|
invalidate: ["offers", "orders", "projects", "invoices"],
|
|
onSuccess: (data) => {
|
|
alert.success(data?.message || "Nabídka byla duplikována");
|
|
},
|
|
});
|
|
|
|
const deleteOfferMutation = useApiMutation<
|
|
number,
|
|
{ message?: string; error?: string }
|
|
>({
|
|
url: (id) => `${API_BASE}/offers/${id}`,
|
|
method: () => "DELETE",
|
|
invalidate: ["offers", "orders", "projects", "invoices"],
|
|
onSuccess: (data) => {
|
|
setDeleteConfirm({ show: false, quotation: null });
|
|
alert.success(data?.message || "Nabídka byla smazána");
|
|
},
|
|
});
|
|
|
|
const invalidateMutation = useApiMutation<
|
|
number,
|
|
{ message?: string; error?: string }
|
|
>({
|
|
url: (id) => `${API_BASE}/offers/${id}/invalidate`,
|
|
method: () => "POST",
|
|
invalidate: ["offers", "orders", "projects", "invoices"],
|
|
onSuccess: (data) => {
|
|
setInvalidateConfirm({ show: false, quotation: null });
|
|
alert.success(data?.message || "Nabídka byla zneplatněna");
|
|
},
|
|
});
|
|
|
|
const discardDraft = () => {
|
|
try {
|
|
localStorage.removeItem(DRAFT_KEY);
|
|
} catch {
|
|
/* ignore */
|
|
}
|
|
setDraft(null);
|
|
};
|
|
|
|
if (!hasPermission("offers.view")) return <Forbidden />;
|
|
|
|
const handleDuplicate = async (quotation: Quotation) => {
|
|
setDuplicating(quotation.id);
|
|
try {
|
|
await duplicateMutation.mutateAsync(quotation.id);
|
|
} catch (e) {
|
|
alert.error(e instanceof Error ? e.message : "Chyba připojení");
|
|
} finally {
|
|
setDuplicating(null);
|
|
}
|
|
};
|
|
|
|
const handleCreateOrder = async () => {
|
|
if (!customerOrderNumber.trim() || !orderModal.quotation) return;
|
|
setCreatingOrder(orderModal.quotation.id);
|
|
try {
|
|
let fetchOptions: RequestInit;
|
|
if (orderAttachment) {
|
|
// With attachment: send as multipart/form-data
|
|
const formData = new FormData();
|
|
formData.append("quotationId", String(orderModal.quotation.id));
|
|
formData.append("customerOrderNumber", customerOrderNumber.trim());
|
|
formData.append("attachment", orderAttachment);
|
|
fetchOptions = { method: "POST", body: formData };
|
|
} else {
|
|
fetchOptions = {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({
|
|
quotationId: orderModal.quotation.id,
|
|
customerOrderNumber: customerOrderNumber.trim(),
|
|
}),
|
|
};
|
|
}
|
|
const response = await apiFetch(`${API_BASE}/orders`, fetchOptions);
|
|
const result = await response.json();
|
|
if (result.success) {
|
|
setOrderModal({ show: false, quotation: null });
|
|
alert.success(result.message || "Objednávka byla vytvořena");
|
|
queryClient.invalidateQueries({ queryKey: ["offers"] });
|
|
queryClient.invalidateQueries({ queryKey: ["orders"] });
|
|
queryClient.invalidateQueries({ queryKey: ["projects"] });
|
|
queryClient.invalidateQueries({ queryKey: ["invoices"] });
|
|
navigate(`/orders/${result.data.order_id}`);
|
|
} else {
|
|
alert.error(result.error || "Nepodařilo se vytvořit objednávku");
|
|
}
|
|
} catch {
|
|
alert.error("Chyba připojení");
|
|
} finally {
|
|
setCreatingOrder(null);
|
|
}
|
|
};
|
|
|
|
const handleDelete = async () => {
|
|
if (!deleteConfirm.quotation) return;
|
|
setDeleting(true);
|
|
try {
|
|
await deleteOfferMutation.mutateAsync(deleteConfirm.quotation.id);
|
|
} catch (e) {
|
|
alert.error(e instanceof Error ? e.message : "Chyba připojení");
|
|
} finally {
|
|
setDeleting(false);
|
|
}
|
|
};
|
|
|
|
const handleInvalidate = async () => {
|
|
if (!invalidateConfirm.quotation) return;
|
|
setInvalidating(true);
|
|
try {
|
|
await invalidateMutation.mutateAsync(invalidateConfirm.quotation.id);
|
|
} catch (e) {
|
|
alert.error(e instanceof Error ? e.message : "Chyba připojení");
|
|
} finally {
|
|
setInvalidating(false);
|
|
}
|
|
};
|
|
|
|
const handlePdf = async (quotation: Quotation) => {
|
|
if (pdfLoading) return;
|
|
const newWindow = window.open("", "_blank");
|
|
setPdfLoading(quotation.id);
|
|
try {
|
|
const response = await apiFetch(
|
|
`${API_BASE}/offers/${quotation.id}/file`,
|
|
);
|
|
if (response.status === 401) {
|
|
newWindow?.close();
|
|
return;
|
|
}
|
|
if (!response.ok) {
|
|
newWindow?.close();
|
|
alert.error("PDF soubor nenalezen — otevřete nabídku a uložte ji");
|
|
return;
|
|
}
|
|
const blob = await response.blob();
|
|
if (blobUrlRef.current) {
|
|
URL.revokeObjectURL(blobUrlRef.current);
|
|
}
|
|
blobUrlRef.current = URL.createObjectURL(blob);
|
|
if (newWindow) newWindow.location.href = blobUrlRef.current;
|
|
} catch {
|
|
newWindow?.close();
|
|
alert.error("Chyba připojení");
|
|
} finally {
|
|
setPdfLoading(null);
|
|
}
|
|
};
|
|
|
|
if (isPending) {
|
|
return <LoadingState />;
|
|
}
|
|
|
|
const total = pagination?.total ?? quotations.length;
|
|
const subtitle = `${total} ${czechPlural(
|
|
total,
|
|
"nabídka",
|
|
"nabídky",
|
|
"nabídek",
|
|
)}`;
|
|
|
|
const tabs: TabDef[] = STATUS_FILTERS.map((f) => ({
|
|
value: f.value,
|
|
label: f.label,
|
|
}));
|
|
|
|
const columns: DataColumn<Quotation>[] = [
|
|
{
|
|
key: "quotation_number",
|
|
header: "Číslo",
|
|
width: "13%",
|
|
sortKey: "quotation_number",
|
|
render: (q) => (
|
|
<Box
|
|
component={RouterLink}
|
|
to={`/offers/${q.id}`}
|
|
sx={{
|
|
color: "primary.main",
|
|
textDecoration: "none",
|
|
"&:hover": { textDecoration: "underline" },
|
|
}}
|
|
>
|
|
{q.quotation_number}
|
|
</Box>
|
|
),
|
|
},
|
|
{
|
|
key: "project_code",
|
|
header: "Projekt",
|
|
width: "13%",
|
|
sortKey: "project_code",
|
|
render: (q) => q.project_code || "—",
|
|
},
|
|
{
|
|
key: "customer_name",
|
|
header: "Zákazník",
|
|
width: "18%",
|
|
render: (q) => q.customer_name || "—",
|
|
},
|
|
{
|
|
key: "created_at",
|
|
header: "Datum",
|
|
width: "11%",
|
|
sortKey: "created_at",
|
|
mono: true,
|
|
render: (q) => formatDate(q.created_at),
|
|
},
|
|
{
|
|
key: "valid_until",
|
|
header: "Platnost",
|
|
width: "11%",
|
|
sortKey: "valid_until",
|
|
mono: true,
|
|
render: (q) => formatDate(q.valid_until),
|
|
},
|
|
{
|
|
key: "currency",
|
|
header: "Měna",
|
|
width: "8%",
|
|
sortKey: "currency",
|
|
render: (q) => <StatusChip label={q.currency} color="default" />,
|
|
},
|
|
{
|
|
key: "total",
|
|
header: "Celkem",
|
|
width: "12%",
|
|
align: "right",
|
|
mono: true,
|
|
bold: true,
|
|
render: (q) => formatCurrency(q.total, q.currency),
|
|
},
|
|
{
|
|
key: "actions",
|
|
header: "Akce",
|
|
width: "16%",
|
|
align: "right",
|
|
render: (q) => {
|
|
const isInvalidated = q.status === "invalidated";
|
|
const isCompleted = !isInvalidated && q.order_status === "dokoncena";
|
|
const readOnly = isInvalidated || isCompleted;
|
|
return (
|
|
<Box sx={{ display: "flex", gap: 0.5, justifyContent: "flex-end" }}>
|
|
<IconButton
|
|
size="small"
|
|
onClick={() => navigate(`/offers/${q.id}`)}
|
|
aria-label={readOnly ? "Zobrazit" : "Upravit"}
|
|
title={readOnly ? "Zobrazit" : "Upravit"}
|
|
>
|
|
{readOnly ? ViewIcon : EditIcon}
|
|
</IconButton>
|
|
{!readOnly && hasPermission("offers.create") && (
|
|
<IconButton
|
|
size="small"
|
|
onClick={() => handleDuplicate(q)}
|
|
aria-label="Duplikovat"
|
|
title="Duplikovat"
|
|
disabled={duplicating === q.id}
|
|
>
|
|
{duplicating === q.id ? (
|
|
<CircularProgress size={16} />
|
|
) : (
|
|
DuplicateIcon
|
|
)}
|
|
</IconButton>
|
|
)}
|
|
{!readOnly && q.order_id ? (
|
|
<IconButton
|
|
size="small"
|
|
color="primary"
|
|
onClick={() => navigate(`/orders/${q.order_id}`)}
|
|
aria-label="Zobrazit objednávku"
|
|
title="Zobrazit objednávku"
|
|
>
|
|
{OrderViewIcon}
|
|
</IconButton>
|
|
) : (
|
|
!readOnly &&
|
|
hasPermission("orders.create") && (
|
|
<IconButton
|
|
size="small"
|
|
onClick={() => {
|
|
setCustomerOrderNumber("");
|
|
setOrderAttachment(null);
|
|
setOrderModal({ show: true, quotation: q });
|
|
}}
|
|
aria-label="Vytvořit objednávku"
|
|
title="Vytvořit objednávku"
|
|
disabled={creatingOrder === q.id}
|
|
>
|
|
{creatingOrder === q.id ? (
|
|
<CircularProgress size={16} />
|
|
) : (
|
|
OrderCreateIcon
|
|
)}
|
|
</IconButton>
|
|
)
|
|
)}
|
|
{!isInvalidated &&
|
|
!isCompleted &&
|
|
!q.order_id &&
|
|
hasPermission("offers.edit") && (
|
|
<IconButton
|
|
size="small"
|
|
onClick={() =>
|
|
setInvalidateConfirm({ show: true, quotation: q })
|
|
}
|
|
aria-label="Zneplatnit"
|
|
title="Zneplatnit"
|
|
>
|
|
{InvalidateIcon}
|
|
</IconButton>
|
|
)}
|
|
{hasPermission("offers.export") && (
|
|
<IconButton
|
|
size="small"
|
|
onClick={() => handlePdf(q)}
|
|
aria-label="Zobrazit nabídku"
|
|
title="Zobrazit nabídku"
|
|
disabled={pdfLoading === q.id}
|
|
>
|
|
{pdfLoading === q.id ? <CircularProgress size={16} /> : PdfIcon}
|
|
</IconButton>
|
|
)}
|
|
{hasPermission("offers.delete") && (
|
|
<IconButton
|
|
size="small"
|
|
color="error"
|
|
onClick={() => setDeleteConfirm({ show: true, quotation: q })}
|
|
aria-label="Smazat"
|
|
title="Smazat"
|
|
>
|
|
{DeleteIcon}
|
|
</IconButton>
|
|
)}
|
|
</Box>
|
|
);
|
|
},
|
|
},
|
|
];
|
|
|
|
// Per-status row tints (replaces offers-invalidated-row / offers-completed-row
|
|
// / offers-expired-row). These are LOW-ALPHA washes via the palette channel
|
|
// vars (not solid `.light` fills — those turn the white dark-mode row text
|
|
// invisible and read garish in light mode). Invalidated = faded/muted, matching
|
|
// the original "voided" look. Readable in BOTH schemes because the underlying
|
|
// row text keeps its normal theme color.
|
|
const rowSx = (q: Quotation) => {
|
|
const isInvalidated = q.status === "invalidated";
|
|
const isCompleted = !isInvalidated && q.order_status === "dokoncena";
|
|
const isExpired =
|
|
!isInvalidated &&
|
|
!isCompleted &&
|
|
!q.order_id &&
|
|
q.valid_until &&
|
|
new Date(q.valid_until) < new Date(new Date().toDateString());
|
|
if (isInvalidated) {
|
|
return {
|
|
opacity: 0.6,
|
|
"& td": { color: "var(--mui-palette-text-secondary)" },
|
|
};
|
|
}
|
|
if (isCompleted) {
|
|
return {
|
|
backgroundColor: "rgba(var(--mui-palette-success-mainChannel) / 0.12)",
|
|
"&:hover": {
|
|
backgroundColor:
|
|
"rgba(var(--mui-palette-success-mainChannel) / 0.18)",
|
|
},
|
|
};
|
|
}
|
|
if (isExpired) {
|
|
return {
|
|
backgroundColor: "rgba(var(--mui-palette-warning-mainChannel) / 0.12)",
|
|
"&:hover": {
|
|
backgroundColor:
|
|
"rgba(var(--mui-palette-warning-mainChannel) / 0.18)",
|
|
},
|
|
};
|
|
}
|
|
return {};
|
|
};
|
|
|
|
return (
|
|
<PageEnter>
|
|
<PageHeader
|
|
title="Nabídky"
|
|
subtitle={subtitle}
|
|
actions={
|
|
<>
|
|
{hasPermission("settings.templates") && (
|
|
<Button
|
|
component={RouterLink}
|
|
to="/offers/templates"
|
|
variant="outlined"
|
|
color="inherit"
|
|
startIcon={TemplatesIcon}
|
|
>
|
|
Šablony
|
|
</Button>
|
|
)}
|
|
{hasPermission("offers.create") && (
|
|
<Button
|
|
component={RouterLink}
|
|
to="/offers/new"
|
|
startIcon={PlusIcon}
|
|
>
|
|
Nová nabídka
|
|
</Button>
|
|
)}
|
|
</>
|
|
}
|
|
/>
|
|
|
|
<Box sx={{ mb: 2.5 }}>
|
|
<Tabs
|
|
value={statusFilter}
|
|
onChange={(v) => {
|
|
setStatusFilter(v);
|
|
setPage(1);
|
|
}}
|
|
tabs={tabs}
|
|
/>
|
|
</Box>
|
|
|
|
<FilterBar>
|
|
<Box sx={{ flex: "1 1 320px" }}>
|
|
<TextField
|
|
value={search}
|
|
onChange={(e) => {
|
|
setSearch(e.target.value);
|
|
setPage(1);
|
|
}}
|
|
placeholder="Hledat podle čísla, projektu nebo zákazníka..."
|
|
fullWidth
|
|
/>
|
|
</Box>
|
|
<Box sx={{ flex: "0 0 220px" }}>
|
|
<Select
|
|
value={customerFilter === "" ? "" : String(customerFilter)}
|
|
onChange={(value) => {
|
|
setCustomerFilter(value ? Number(value) : "");
|
|
setPage(1);
|
|
}}
|
|
options={[
|
|
{ value: "", label: "Všichni zákazníci" },
|
|
...(customers ?? []).map((c) => ({
|
|
value: String(c.id),
|
|
label: c.name,
|
|
})),
|
|
]}
|
|
/>
|
|
</Box>
|
|
</FilterBar>
|
|
|
|
{draft && !debouncedSearch && (
|
|
<Box sx={{ mb: 2 }}>
|
|
<Alert severity="info" onClose={discardDraft}>
|
|
<Box
|
|
sx={{
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "space-between",
|
|
flexWrap: "wrap",
|
|
gap: 1.5,
|
|
}}
|
|
>
|
|
<Box>
|
|
<Typography component="span" sx={{ fontWeight: 600 }}>
|
|
Rozpracovaný koncept
|
|
</Typography>
|
|
{draft.savedAt && (
|
|
<Typography
|
|
component="span"
|
|
sx={{ ml: 1, opacity: 0.8, fontSize: "0.875rem" }}
|
|
>
|
|
·{" "}
|
|
{new Date(draft.savedAt).toLocaleTimeString("cs-CZ", {
|
|
hour: "2-digit",
|
|
minute: "2-digit",
|
|
})}
|
|
</Typography>
|
|
)}
|
|
<Typography
|
|
variant="body2"
|
|
sx={{ color: "text.secondary", mt: 0.25 }}
|
|
>
|
|
{draft.form.project_code || "—"} ·{" "}
|
|
{draft.form.customer_name || "—"} ·{" "}
|
|
{draft.form.created_at
|
|
? formatDate(draft.form.created_at)
|
|
: "—"}
|
|
{" — "}
|
|
{draft.form.valid_until
|
|
? formatDate(draft.form.valid_until)
|
|
: "—"}
|
|
{draft.form.currency ? ` · ${draft.form.currency}` : ""}
|
|
</Typography>
|
|
</Box>
|
|
<Box
|
|
sx={{
|
|
display: "flex",
|
|
gap: 1,
|
|
flexWrap: "wrap",
|
|
}}
|
|
>
|
|
<Button
|
|
component={RouterLink}
|
|
to="/offers/new"
|
|
size="small"
|
|
startIcon={EditIcon}
|
|
>
|
|
Pokračovat v konceptu
|
|
</Button>
|
|
<Button
|
|
size="small"
|
|
variant="outlined"
|
|
color="inherit"
|
|
onClick={discardDraft}
|
|
>
|
|
Zahodit koncept
|
|
</Button>
|
|
</Box>
|
|
</Box>
|
|
</Alert>
|
|
</Box>
|
|
)}
|
|
|
|
<Card sx={{ opacity: isFetching ? 0.6 : 1, transition: "opacity .2s" }}>
|
|
<DataTable<Quotation>
|
|
columns={columns}
|
|
rows={quotations}
|
|
rowKey={(q) => q.id}
|
|
rowSx={rowSx}
|
|
sortBy={sort}
|
|
sortDir={order}
|
|
onSort={handleSort}
|
|
empty={
|
|
debouncedSearch ? (
|
|
<EmptyState title="Žádné nabídky odpovídající hledání." />
|
|
) : (
|
|
<EmptyState
|
|
title="Zatím nejsou žádné nabídky."
|
|
action={
|
|
hasPermission("offers.create") ? (
|
|
<Button component={RouterLink} to="/offers/new">
|
|
Vytvořit první nabídku
|
|
</Button>
|
|
) : undefined
|
|
}
|
|
/>
|
|
)
|
|
}
|
|
/>
|
|
<Pagination
|
|
page={page}
|
|
pageCount={pagination?.total_pages ?? 1}
|
|
onChange={setPage}
|
|
/>
|
|
</Card>
|
|
|
|
<ConfirmDialog
|
|
isOpen={deleteConfirm.show}
|
|
onClose={() => setDeleteConfirm({ show: false, quotation: null })}
|
|
onConfirm={handleDelete}
|
|
title="Smazat nabídku"
|
|
message={`Opravdu chcete smazat nabídku "${deleteConfirm.quotation?.quotation_number}"? Budou smazány i všechny položky a sekce. Tato akce je nevratná.`}
|
|
confirmText="Smazat"
|
|
confirmVariant="danger"
|
|
loading={deleting}
|
|
/>
|
|
|
|
<ConfirmDialog
|
|
isOpen={invalidateConfirm.show}
|
|
onClose={() => setInvalidateConfirm({ show: false, quotation: null })}
|
|
onConfirm={handleInvalidate}
|
|
title="Zneplatnit nabídku"
|
|
message={`Opravdu chcete zneplatnit nabídku "${invalidateConfirm.quotation?.quotation_number}"? Nabídka bude pouze pro čtení a nepůjde upravovat.`}
|
|
confirmText="Zneplatnit"
|
|
confirmVariant="danger"
|
|
loading={invalidating}
|
|
/>
|
|
|
|
<Modal
|
|
isOpen={orderModal.show}
|
|
onClose={() => setOrderModal({ show: false, quotation: null })}
|
|
onSubmit={handleCreateOrder}
|
|
title="Vytvořit objednávku"
|
|
subtitle={`Nabídka: ${orderModal.quotation?.quotation_number ?? ""}`}
|
|
submitText="Vytvořit"
|
|
loading={!!creatingOrder}
|
|
>
|
|
<Field label="Číslo objednávky zákazníka" required>
|
|
<TextField
|
|
value={customerOrderNumber}
|
|
onChange={(e) => setCustomerOrderNumber(e.target.value)}
|
|
onKeyDown={(e) =>
|
|
e.key === "Enter" && !creatingOrder && handleCreateOrder()
|
|
}
|
|
placeholder="Např. PO-2026-001"
|
|
autoFocus
|
|
/>
|
|
</Field>
|
|
<Field label="Příloha (PDF)">
|
|
<FileUpload
|
|
files={orderAttachment ? [orderAttachment] : []}
|
|
onFilesChange={(files) => setOrderAttachment(files[0] ?? null)}
|
|
accept="application/pdf"
|
|
multiple={false}
|
|
/>
|
|
<Typography
|
|
variant="caption"
|
|
color="text.secondary"
|
|
sx={{ display: "block", mt: 0.5 }}
|
|
>
|
|
Max 10 MB
|
|
</Typography>
|
|
</Field>
|
|
</Modal>
|
|
</PageEnter>
|
|
);
|
|
}
|