Compare commits
19 Commits
feature/IO
...
feature/IO
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c954695d3c | ||
|
|
6b41d6f2a2 | ||
|
|
b8fed77f43 | ||
|
|
3f5614d77e | ||
|
|
6c5c4bd333 | ||
|
|
43c1eef70c | ||
|
|
b8d97d9821 | ||
|
|
6843441b17 | ||
|
|
409e04ed0e | ||
|
|
91bf5c8d0f | ||
|
|
3660fb1b1b | ||
|
|
7573286163 | ||
|
|
34ab42c0ad | ||
|
|
a3c3f60d2a | ||
|
|
8147bc76fd | ||
|
|
9ef1022311 | ||
|
|
3c0e62ffac | ||
|
|
a9a0415501 | ||
|
|
fbaf47b89b |
@@ -40,7 +40,11 @@ export function ChatMediaSelector({ bodyshop, selectedMedia, setSelectedMedia, c
|
|||||||
variables: {
|
variables: {
|
||||||
jobId: conversation.job_conversations[0]?.jobid
|
jobId: conversation.job_conversations[0]?.jobid
|
||||||
},
|
},
|
||||||
skip: !open || !conversation.job_conversations || conversation.job_conversations.length === 0
|
skip:
|
||||||
|
!open ||
|
||||||
|
!conversation.job_conversations ||
|
||||||
|
conversation.job_conversations.length === 0 ||
|
||||||
|
bodyshop.uselocalmediaserver
|
||||||
});
|
});
|
||||||
|
|
||||||
const handleVisibleChange = (change) => {
|
const handleVisibleChange = (change) => {
|
||||||
@@ -48,7 +52,8 @@ export function ChatMediaSelector({ bodyshop, selectedMedia, setSelectedMedia, c
|
|||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setSelectedMedia([]);
|
// Instead of wiping the array (which holds media objects), just clear selection flags
|
||||||
|
setSelectedMedia((prev) => prev.map((m) => ({ ...m, isSelected: false })));
|
||||||
}, [setSelectedMedia, conversation]);
|
}, [setSelectedMedia, conversation]);
|
||||||
|
|
||||||
//Knowingly taking on the technical debt of poor implementation below. Done this way to avoid an edge case where no component may be displayed.
|
//Knowingly taking on the technical debt of poor implementation below. Done this way to avoid an edge case where no component may be displayed.
|
||||||
@@ -75,6 +80,7 @@ export function ChatMediaSelector({ bodyshop, selectedMedia, setSelectedMedia, c
|
|||||||
<JobDocumentsLocalGalleryExternal
|
<JobDocumentsLocalGalleryExternal
|
||||||
externalMediaState={[selectedMedia, setSelectedMedia]}
|
externalMediaState={[selectedMedia, setSelectedMedia]}
|
||||||
jobId={conversation.job_conversations[0]?.jobid}
|
jobId={conversation.job_conversations[0]?.jobid}
|
||||||
|
context="chat"
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
@@ -90,6 +96,7 @@ export function ChatMediaSelector({ bodyshop, selectedMedia, setSelectedMedia, c
|
|||||||
<JobDocumentsLocalGalleryExternal
|
<JobDocumentsLocalGalleryExternal
|
||||||
externalMediaState={[selectedMedia, setSelectedMedia]}
|
externalMediaState={[selectedMedia, setSelectedMedia]}
|
||||||
jobId={conversation.job_conversations[0]?.jobid}
|
jobId={conversation.job_conversations[0]?.jobid}
|
||||||
|
context="chat"
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
@@ -110,6 +117,7 @@ export function ChatMediaSelector({ bodyshop, selectedMedia, setSelectedMedia, c
|
|||||||
trigger="click"
|
trigger="click"
|
||||||
open={open}
|
open={open}
|
||||||
onOpenChange={handleVisibleChange}
|
onOpenChange={handleVisibleChange}
|
||||||
|
destroyOnHidden
|
||||||
classNames={{ root: "media-selector-popover" }}
|
classNames={{ root: "media-selector-popover" }}
|
||||||
>
|
>
|
||||||
<Badge count={selectedMedia.filter((s) => s.isSelected).length}>
|
<Badge count={selectedMedia.filter((s) => s.isSelected).length}>
|
||||||
|
|||||||
@@ -67,6 +67,7 @@ export function EmailDocumentsComponent({ emailConfig, form, selectedMediaState,
|
|||||||
<JobsDocumentsLocalGalleryExternalComponent
|
<JobsDocumentsLocalGalleryExternalComponent
|
||||||
externalMediaState={[selectedMedia, setSelectedMedia]}
|
externalMediaState={[selectedMedia, setSelectedMedia]}
|
||||||
jobId={emailConfig.jobid}
|
jobId={emailConfig.jobid}
|
||||||
|
context="email"
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
@@ -82,6 +83,7 @@ export function EmailDocumentsComponent({ emailConfig, form, selectedMediaState,
|
|||||||
<JobsDocumentsLocalGalleryExternalComponent
|
<JobsDocumentsLocalGalleryExternalComponent
|
||||||
externalMediaState={[selectedMedia, setSelectedMedia]}
|
externalMediaState={[selectedMedia, setSelectedMedia]}
|
||||||
jobId={emailConfig.jobid}
|
jobId={emailConfig.jobid}
|
||||||
|
context="email"
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
|
|||||||
@@ -77,6 +77,8 @@ export function JobsDetailHeader({ job, bodyshop, disabled, insertAuditTrail, is
|
|||||||
.reduce((acc, val) => acc + val.mod_lb_hrs, 0);
|
.reduce((acc, val) => acc + val.mod_lb_hrs, 0);
|
||||||
const ownerTitle = OwnerNameDisplayFunction(job).trim();
|
const ownerTitle = OwnerNameDisplayFunction(job).trim();
|
||||||
|
|
||||||
|
const employeeData = bodyshop.associations.find((a) => a.useremail === job.admin_clerk)?.user?.employee ?? null;
|
||||||
|
|
||||||
// Handle checkbox changes
|
// Handle checkbox changes
|
||||||
const handleCheckboxChange = async (field, checked) => {
|
const handleCheckboxChange = async (field, checked) => {
|
||||||
const value = checked ? dayjs().toISOString() : null;
|
const value = checked ? dayjs().toISOString() : null;
|
||||||
@@ -162,7 +164,7 @@ export function JobsDetailHeader({ job, bodyshop, disabled, insertAuditTrail, is
|
|||||||
{job.cccontracts.map((c, index) => (
|
{job.cccontracts.map((c, index) => (
|
||||||
<Space key={c.id} wrap>
|
<Space key={c.id} wrap>
|
||||||
<Link to={`/manage/courtesycars/contracts/${c.id}`}>
|
<Link to={`/manage/courtesycars/contracts/${c.id}`}>
|
||||||
{`${c.agreementnumber} - ${c.courtesycar.fleetnumber} ${c.courtesycar.year} ${c.courtesycar.make} ${c.courtesycar.model}`}
|
{`${c.agreementnumber} - ${c.courtesycar.fleetnumber} ${c.courtesycar.year} ${c.courtesycar.make} ${c.courtesycar.model} ${c.courtesycar.plate} - ${t(c.status)}`}
|
||||||
{index !== job.cccontracts.length - 1 ? "," : null}
|
{index !== job.cccontracts.length - 1 ? "," : null}
|
||||||
</Link>
|
</Link>
|
||||||
</Space>
|
</Space>
|
||||||
@@ -355,6 +357,14 @@ export function JobsDetailHeader({ job, bodyshop, disabled, insertAuditTrail, is
|
|||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
<JobEmployeeAssignments job={job} />
|
<JobEmployeeAssignments job={job} />
|
||||||
|
{job.admin_clerk && (
|
||||||
|
<>
|
||||||
|
<Divider style={{ margin: ".5rem" }} />
|
||||||
|
<DataLabel label={t("jobs.fields.admin_clerk")}>
|
||||||
|
{employeeData?.displayName ?? job.admin_clerk}
|
||||||
|
</DataLabel>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
<Divider style={{ margin: ".5rem" }} />
|
<Divider style={{ margin: ".5rem" }} />
|
||||||
<DataLabel label={t("jobs.labels.labor_hrs")}>
|
<DataLabel label={t("jobs.labels.labor_hrs")}>
|
||||||
{bodyHrs.toFixed(1)} / {refinishHrs.toFixed(1)} / {(bodyHrs + refinishHrs).toFixed(1)}
|
{bodyHrs.toFixed(1)} / {refinishHrs.toFixed(1)} / {(bodyHrs + refinishHrs).toFixed(1)}
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
import { useEffect } from "react";
|
import { useEffect, useMemo, useState, useCallback } from "react";
|
||||||
import { Gallery } from "react-grid-gallery";
|
import LocalMediaGrid from "./local-media-grid.component";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { connect } from "react-redux";
|
import { connect } from "react-redux";
|
||||||
import { createStructuredSelector } from "reselect";
|
import { createStructuredSelector } from "reselect";
|
||||||
import { getJobMedia } from "../../redux/media/media.actions";
|
import { getJobMedia } from "../../redux/media/media.actions";
|
||||||
import { selectAllMedia } from "../../redux/media/media.selectors";
|
import { selectAllMedia } from "../../redux/media/media.selectors";
|
||||||
import { selectBodyshop } from "../../redux/user/user.selectors";
|
import { selectBodyshop } from "../../redux/user/user.selectors";
|
||||||
|
import LoadingSpinner from "../loading-spinner/loading-spinner.component";
|
||||||
|
|
||||||
const mapStateToProps = createStructuredSelector({
|
const mapStateToProps = createStructuredSelector({
|
||||||
bodyshop: selectBodyshop,
|
bodyshop: selectBodyshop,
|
||||||
@@ -18,41 +19,127 @@ const mapDispatchToProps = (dispatch) => ({
|
|||||||
|
|
||||||
export default connect(mapStateToProps, mapDispatchToProps)(JobDocumentsLocalGalleryExternal);
|
export default connect(mapStateToProps, mapDispatchToProps)(JobDocumentsLocalGalleryExternal);
|
||||||
|
|
||||||
function JobDocumentsLocalGalleryExternal({ jobId, externalMediaState, getJobMedia, allMedia }) {
|
/**
|
||||||
|
* JobDocumentsLocalGalleryExternal
|
||||||
|
* Fetches and displays job-related image media using the custom LocalMediaGrid.
|
||||||
|
*
|
||||||
|
* Props:
|
||||||
|
* - jobId: string | number (required to fetch media)
|
||||||
|
* - externalMediaState: [imagesArray, setImagesFn] (state lifted to parent for shared selection)
|
||||||
|
* - getJobMedia: dispatching function to retrieve media for a job
|
||||||
|
* - allMedia: redux slice keyed by jobId containing raw media records
|
||||||
|
* - context: "chat" | "email" | other string used to drive grid behavior
|
||||||
|
*
|
||||||
|
* Notes:
|
||||||
|
* - The previous third-party gallery required a remount key (openVersion); custom grid no longer does.
|
||||||
|
* - Selection flags are preserved when media refreshes.
|
||||||
|
* - Loading state ends after transformation regardless of whether any images were found.
|
||||||
|
*/
|
||||||
|
function JobDocumentsLocalGalleryExternal({ jobId, externalMediaState, getJobMedia, allMedia, context = "chat" }) {
|
||||||
const [galleryImages, setgalleryImages] = externalMediaState;
|
const [galleryImages, setgalleryImages] = externalMediaState;
|
||||||
const { t } = useTranslation();
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
|
const { t } = useTranslation(); // i18n hook retained if future translations are added
|
||||||
|
const DEBUG_LOCAL_GALLERY = false; // flip to true for verbose console logging
|
||||||
|
|
||||||
|
// Transform raw media record into a normalized image object consumed by the grid.
|
||||||
|
const transformMediaToImages = useCallback((raw) => {
|
||||||
|
return raw
|
||||||
|
.filter((m) => m.type?.mime?.startsWith("image"))
|
||||||
|
.map((m) => ({
|
||||||
|
...m,
|
||||||
|
src: m.thumbnail,
|
||||||
|
thumbnail: m.thumbnail,
|
||||||
|
fullsize: m.src,
|
||||||
|
width: 225,
|
||||||
|
height: 225,
|
||||||
|
thumbnailWidth: 225,
|
||||||
|
thumbnailHeight: 225,
|
||||||
|
caption: m.filename || m.key
|
||||||
|
}));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
// Fetch media when jobId changes (network request triggers Redux update -> documents memo recalculates).
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (jobId) {
|
if (!jobId) return;
|
||||||
getJobMedia(jobId);
|
setIsLoading(true);
|
||||||
}
|
getJobMedia(jobId);
|
||||||
}, [jobId, getJobMedia]);
|
}, [jobId, getJobMedia]);
|
||||||
|
|
||||||
useEffect(() => {
|
// Memo: transform raw redux media into gallery documents.
|
||||||
let documents = allMedia?.[jobId]
|
const documents = useMemo(
|
||||||
? allMedia[jobId].reduce((acc, val) => {
|
() => transformMediaToImages(allMedia?.[jobId] || []),
|
||||||
if (val.type?.mime && val.type.mime.startsWith("image")) {
|
[allMedia, jobId, transformMediaToImages]
|
||||||
acc.push({ ...val, src: val.thumbnail, fullsize: val.src });
|
);
|
||||||
}
|
|
||||||
return acc;
|
|
||||||
}, [])
|
|
||||||
: [];
|
|
||||||
console.log(
|
|
||||||
"🚀 ~ file: jobs-documents-local-gallery.external.component.jsx:48 ~ useEffect ~ documents:",
|
|
||||||
documents
|
|
||||||
);
|
|
||||||
|
|
||||||
setgalleryImages(documents);
|
// Sync transformed documents into external state while preserving selection flags.
|
||||||
}, [allMedia, jobId, setgalleryImages, t]);
|
useEffect(() => {
|
||||||
|
const prevSelection = new Map(galleryImages.map((p) => [p.filename, p.isSelected]));
|
||||||
|
const nextImages = documents.map((d) => ({ ...d, isSelected: prevSelection.get(d.filename) || false }));
|
||||||
|
// Micro-optimization: if array length and each filename + selection flag match, skip creating a new array.
|
||||||
|
if (galleryImages.length === nextImages.length) {
|
||||||
|
let identical = true;
|
||||||
|
for (let i = 0; i < nextImages.length; i++) {
|
||||||
|
if (
|
||||||
|
galleryImages[i].filename !== nextImages[i].filename ||
|
||||||
|
galleryImages[i].isSelected !== nextImages[i].isSelected
|
||||||
|
) {
|
||||||
|
identical = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (identical) {
|
||||||
|
setIsLoading(false); // ensure loading stops even on no-change
|
||||||
|
if (DEBUG_LOCAL_GALLERY) {
|
||||||
|
console.log("[LocalGallery] documents unchanged", { jobId, count: documents.length });
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
setgalleryImages(nextImages);
|
||||||
|
setIsLoading(false); // stop loading after transform regardless of emptiness
|
||||||
|
if (DEBUG_LOCAL_GALLERY) {
|
||||||
|
console.log("[LocalGallery] documents transformed", { jobId, count: documents.length });
|
||||||
|
}
|
||||||
|
}, [documents, setgalleryImages, galleryImages, jobId, DEBUG_LOCAL_GALLERY]);
|
||||||
|
|
||||||
|
// Toggle handler (stable reference)
|
||||||
|
const handleToggle = useCallback(
|
||||||
|
(idx) => {
|
||||||
|
setgalleryImages((imgs) => imgs.map((g, gIdx) => (gIdx === idx ? { ...g, isSelected: !g.isSelected } : g)));
|
||||||
|
},
|
||||||
|
[setgalleryImages]
|
||||||
|
);
|
||||||
|
|
||||||
|
const messageStyle = { textAlign: "center", padding: "1rem" }; // retained for potential future states
|
||||||
|
|
||||||
|
if (!jobId) {
|
||||||
|
return (
|
||||||
|
<div aria-label="media gallery unavailable" style={{ position: "relative", minHeight: 80 }}>
|
||||||
|
<div style={messageStyle}>No job selected.</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="clearfix">
|
<div
|
||||||
<Gallery
|
className="clearfix"
|
||||||
images={galleryImages}
|
style={{ position: "relative", minHeight: 80 }}
|
||||||
onSelect={(index) => {
|
data-jobid={jobId}
|
||||||
setgalleryImages(galleryImages.map((g, idx) => (index === idx ? { ...g, isSelected: !g.isSelected } : g)));
|
aria-label={`media gallery for job ${jobId}`}
|
||||||
}}
|
>
|
||||||
/>
|
{isLoading && galleryImages.length === 0 && (
|
||||||
|
<div className="local-gallery-loading" style={messageStyle} role="status" aria-live="polite">
|
||||||
|
<LoadingSpinner />
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{galleryImages.length > 0 && (
|
||||||
|
<LocalMediaGrid images={galleryImages} minColumns={4} context={context} onToggle={handleToggle} />
|
||||||
|
)}
|
||||||
|
{galleryImages.length > 0 && (
|
||||||
|
<div style={{ fontSize: 10, color: "#888", marginTop: 4 }} aria-live="off">
|
||||||
|
{`${t("general.labels.media")}: ${galleryImages.length}`}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,207 @@
|
|||||||
|
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* LocalMediaGrid
|
||||||
|
* Lightweight replacement for react-grid-gallery inside the chat popover.
|
||||||
|
* Props:
|
||||||
|
* - images: Array<{ src, fullsize, filename?, isSelected? }>
|
||||||
|
* - onToggle(index)
|
||||||
|
*/
|
||||||
|
export function LocalMediaGrid({
|
||||||
|
images,
|
||||||
|
onToggle,
|
||||||
|
thumbSize = 100,
|
||||||
|
gap = 8,
|
||||||
|
minColumns = 3,
|
||||||
|
maxColumns = 12,
|
||||||
|
context = "default"
|
||||||
|
}) {
|
||||||
|
const containerRef = useRef(null);
|
||||||
|
const [cols, setCols] = useState(() => {
|
||||||
|
// Pre-calc initial columns to stabilize layout before images render
|
||||||
|
const count = images.length;
|
||||||
|
if (count === 0) return minColumns; // reserve minimal structure
|
||||||
|
if (count === 1 && context === "chat") return 1;
|
||||||
|
return Math.min(maxColumns, Math.max(minColumns, count));
|
||||||
|
});
|
||||||
|
const [justifyMode, setJustifyMode] = useState("start");
|
||||||
|
const [distributeExtra, setDistributeExtra] = useState(false);
|
||||||
|
const [loadedMap, setLoadedMap] = useState(() => new Map()); // filename -> boolean loaded
|
||||||
|
|
||||||
|
const handleImageLoad = useCallback((key) => {
|
||||||
|
setLoadedMap((prev) => {
|
||||||
|
if (prev.get(key)) return prev; // already loaded
|
||||||
|
const next = new Map(prev);
|
||||||
|
next.set(key, true);
|
||||||
|
return next;
|
||||||
|
});
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
// Dynamically compute columns for all contexts to avoid auto-fit stretching gaps in email overlay
|
||||||
|
useEffect(() => {
|
||||||
|
const el = containerRef.current;
|
||||||
|
if (!el) return;
|
||||||
|
const compute = () => {
|
||||||
|
// For non-chat (email / default) we rely on CSS auto-fill; only chat needs explicit column calc & distribution logic.
|
||||||
|
if (context !== "chat") {
|
||||||
|
setCols(images.length || 0); // retain count for ARIA semantics; not used for template when non-chat.
|
||||||
|
setDistributeExtra(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const width = el.clientWidth;
|
||||||
|
if (!width) return;
|
||||||
|
const perCol = thumbSize + gap; // track + gap space
|
||||||
|
const fitCols = Math.max(1, Math.floor((width + gap) / perCol));
|
||||||
|
// base desired columns: up to how many images we have and how many fit
|
||||||
|
let finalCols = Math.min(images.length || 1, fitCols, maxColumns);
|
||||||
|
// enforce minimum columns to reserve layout skeleton (except when fewer images)
|
||||||
|
if (finalCols < minColumns && images.length >= minColumns) {
|
||||||
|
finalCols = Math.min(fitCols, minColumns);
|
||||||
|
}
|
||||||
|
// chat-specific clamp
|
||||||
|
if (context === "chat") {
|
||||||
|
finalCols = Math.min(finalCols, 4);
|
||||||
|
}
|
||||||
|
if (finalCols < 1) finalCols = 1;
|
||||||
|
setCols(finalCols);
|
||||||
|
setJustifyMode("start");
|
||||||
|
|
||||||
|
// Determine if there is leftover horizontal space that can't fit another column.
|
||||||
|
// Only distribute when we're at the maximum allowed columns for the context and images exceed or meet that count.
|
||||||
|
const contextMax = context === "chat" ? 4 : maxColumns;
|
||||||
|
const baseWidthNeeded = finalCols * thumbSize + (finalCols - 1) * gap;
|
||||||
|
const leftover = width - baseWidthNeeded;
|
||||||
|
const atMaxColumns = finalCols === contextMax && images.length >= finalCols;
|
||||||
|
// leftover must be positive but less than space needed for an additional column (perCol)
|
||||||
|
if (atMaxColumns && leftover > 0 && leftover < perCol) {
|
||||||
|
setDistributeExtra(true);
|
||||||
|
} else {
|
||||||
|
setDistributeExtra(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
compute();
|
||||||
|
const ro = new ResizeObserver(() => compute());
|
||||||
|
ro.observe(el);
|
||||||
|
return () => ro.disconnect();
|
||||||
|
}, [images.length, thumbSize, gap, minColumns, maxColumns, context]);
|
||||||
|
|
||||||
|
const gridTemplateColumns = useMemo(() => {
|
||||||
|
if (context === "chat") {
|
||||||
|
if (distributeExtra) {
|
||||||
|
return `repeat(${cols}, minmax(${thumbSize}px, 1fr))`;
|
||||||
|
}
|
||||||
|
return `repeat(${cols}, ${thumbSize}px)`;
|
||||||
|
}
|
||||||
|
// Non-chat contexts: allow browser to auto-fill columns; fixed min (thumbSize) ensures squares; tracks expand to distribute remaining space.
|
||||||
|
return `repeat(auto-fill, minmax(${thumbSize}px, 1fr))`;
|
||||||
|
}, [cols, thumbSize, distributeExtra, context]);
|
||||||
|
const stableWidth = undefined; // no fixed width
|
||||||
|
|
||||||
|
const handleKeyDown = useCallback(
|
||||||
|
(e, idx) => {
|
||||||
|
if (e.key === "Enter" || e.key === " ") {
|
||||||
|
e.preventDefault();
|
||||||
|
onToggle(idx);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[onToggle]
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className="local-media-grid"
|
||||||
|
style={{
|
||||||
|
display: "grid",
|
||||||
|
gridTemplateColumns,
|
||||||
|
gap,
|
||||||
|
maxHeight: 420,
|
||||||
|
overflowY: "auto",
|
||||||
|
overflowX: "hidden",
|
||||||
|
padding: 4,
|
||||||
|
justifyContent: justifyMode,
|
||||||
|
width: stableWidth
|
||||||
|
}}
|
||||||
|
ref={containerRef}
|
||||||
|
role="list"
|
||||||
|
aria-label="media thumbnails"
|
||||||
|
>
|
||||||
|
{images.map((img, idx) => (
|
||||||
|
<div
|
||||||
|
key={img.filename || idx}
|
||||||
|
role="listitem"
|
||||||
|
tabIndex={0}
|
||||||
|
aria-label={img.filename || `image ${idx + 1}`}
|
||||||
|
onClick={() => onToggle(idx)}
|
||||||
|
onKeyDown={(e) => handleKeyDown(e, idx)}
|
||||||
|
style={{
|
||||||
|
position: "relative",
|
||||||
|
border: img.isSelected ? "2px solid #1890ff" : "1px solid #ccc",
|
||||||
|
outline: "none",
|
||||||
|
borderRadius: 4,
|
||||||
|
cursor: "pointer",
|
||||||
|
background: "#fafafa",
|
||||||
|
width: thumbSize,
|
||||||
|
height: thumbSize,
|
||||||
|
overflow: "hidden",
|
||||||
|
boxSizing: "border-box"
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{(() => {
|
||||||
|
const key = img.filename || idx;
|
||||||
|
const loaded = loadedMap.get(key) === true;
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{!loaded && (
|
||||||
|
<div
|
||||||
|
aria-hidden="true"
|
||||||
|
style={{
|
||||||
|
position: "absolute",
|
||||||
|
inset: 0,
|
||||||
|
background: "#f0f0f0",
|
||||||
|
display: "flex",
|
||||||
|
alignItems: "center",
|
||||||
|
justifyContent: "center",
|
||||||
|
fontSize: 10,
|
||||||
|
color: "#bbb"
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{/* simple skeleton; no shimmer to reduce cost */}…
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<img
|
||||||
|
src={img.src}
|
||||||
|
alt={img.filename || img.caption || "thumbnail"}
|
||||||
|
loading="lazy"
|
||||||
|
onLoad={() => handleImageLoad(key)}
|
||||||
|
style={{
|
||||||
|
width: thumbSize,
|
||||||
|
height: thumbSize,
|
||||||
|
objectFit: "cover",
|
||||||
|
display: "block",
|
||||||
|
borderRadius: 4,
|
||||||
|
opacity: loaded ? 1 : 0,
|
||||||
|
transition: "opacity .25s ease"
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
})()}
|
||||||
|
{img.isSelected && (
|
||||||
|
<div
|
||||||
|
aria-hidden="true"
|
||||||
|
style={{
|
||||||
|
position: "absolute",
|
||||||
|
inset: 0,
|
||||||
|
background: "rgba(24,144,255,0.45)",
|
||||||
|
borderRadius: 4
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
{/* No placeholders needed; layout uses auto-fit for non-chat or fixed columns for chat */}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default LocalMediaGrid;
|
||||||
@@ -424,6 +424,7 @@ export const GET_JOB_BY_PK = gql`
|
|||||||
actual_delivery
|
actual_delivery
|
||||||
actual_in
|
actual_in
|
||||||
acv_amount
|
acv_amount
|
||||||
|
admin_clerk
|
||||||
adjustment_bottom_line
|
adjustment_bottom_line
|
||||||
alt_transport
|
alt_transport
|
||||||
area_of_damage
|
area_of_damage
|
||||||
@@ -2347,12 +2348,13 @@ export const MARK_JOB_AS_UNINVOICED = gql`
|
|||||||
mutation MARK_JOB_AS_UNINVOICED($jobId: uuid!, $default_delivered: String!) {
|
mutation MARK_JOB_AS_UNINVOICED($jobId: uuid!, $default_delivered: String!) {
|
||||||
update_jobs_by_pk(
|
update_jobs_by_pk(
|
||||||
pk_columns: { id: $jobId }
|
pk_columns: { id: $jobId }
|
||||||
_set: { date_exported: null, date_invoiced: null, status: $default_delivered }
|
_set: { date_exported: null, date_invoiced: null, status: $default_delivered, admin_clerk: null }
|
||||||
) {
|
) {
|
||||||
id
|
id
|
||||||
date_exported
|
date_exported
|
||||||
date_invoiced
|
date_invoiced
|
||||||
status
|
status
|
||||||
|
admin_clerk
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -39,13 +39,14 @@ import { UPDATE_JOB } from "../../graphql/jobs.queries";
|
|||||||
import { insertAuditTrail } from "../../redux/application/application.actions";
|
import { insertAuditTrail } from "../../redux/application/application.actions";
|
||||||
import { selectJobReadOnly } from "../../redux/application/application.selectors";
|
import { selectJobReadOnly } from "../../redux/application/application.selectors";
|
||||||
import { setModalContext } from "../../redux/modals/modals.actions.js";
|
import { setModalContext } from "../../redux/modals/modals.actions.js";
|
||||||
import { selectBodyshop } from "../../redux/user/user.selectors";
|
import { selectBodyshop, selectCurrentUser } from "../../redux/user/user.selectors";
|
||||||
import AuditTrailMapping from "../../utils/AuditTrailMappings";
|
import AuditTrailMapping from "../../utils/AuditTrailMappings";
|
||||||
import dayjs from "../../utils/day";
|
import dayjs from "../../utils/day";
|
||||||
|
|
||||||
const mapStateToProps = createStructuredSelector({
|
const mapStateToProps = createStructuredSelector({
|
||||||
bodyshop: selectBodyshop,
|
bodyshop: selectBodyshop,
|
||||||
jobRO: selectJobReadOnly
|
jobRO: selectJobReadOnly,
|
||||||
|
currentUser: selectCurrentUser
|
||||||
});
|
});
|
||||||
|
|
||||||
const mapDispatchToProps = (dispatch) => ({
|
const mapDispatchToProps = (dispatch) => ({
|
||||||
@@ -59,7 +60,7 @@ const mapDispatchToProps = (dispatch) => ({
|
|||||||
)
|
)
|
||||||
});
|
});
|
||||||
|
|
||||||
export function JobsCloseComponent({ job, bodyshop, jobRO, insertAuditTrail, setPrintCenterContext }) {
|
export function JobsCloseComponent({ job, bodyshop, jobRO, insertAuditTrail, setPrintCenterContext, currentUser }) {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const [form] = Form.useForm();
|
const [form] = Form.useForm();
|
||||||
const client = useApolloClient();
|
const client = useApolloClient();
|
||||||
@@ -97,6 +98,7 @@ export function JobsCloseComponent({ job, bodyshop, jobRO, insertAuditTrail, set
|
|||||||
kmin: values.kmin,
|
kmin: values.kmin,
|
||||||
kmout: values.kmout,
|
kmout: values.kmout,
|
||||||
dms_allocation: values.dms_allocation,
|
dms_allocation: values.dms_allocation,
|
||||||
|
admin_clerk: currentUser.email,
|
||||||
...(removefromproduction ? { inproduction: false } : {}),
|
...(removefromproduction ? { inproduction: false } : {}),
|
||||||
...(values.qb_multiple_payers ? { qb_multiple_payers: values.qb_multiple_payers } : {})
|
...(values.qb_multiple_payers ? { qb_multiple_payers: values.qb_multiple_payers } : {})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,29 +19,19 @@ const mediaReducer = (state = INITIAL_STATE, action) => {
|
|||||||
case MediaActionTypes.TOGGLE_MEDIA_SELECTED:
|
case MediaActionTypes.TOGGLE_MEDIA_SELECTED:
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
[action.payload.jobid]: state[action.payload.jobid].map((p) => {
|
[action.payload.jobid]: state[action.payload.jobid].map((p) =>
|
||||||
if (p.filename === action.payload.filename) {
|
p.filename === action.payload.filename ? { ...p, isSelected: !p.isSelected } : p
|
||||||
p.isSelected = !p.isSelected;
|
)
|
||||||
}
|
|
||||||
return p;
|
|
||||||
})
|
|
||||||
};
|
};
|
||||||
case MediaActionTypes.SELECT_ALL_MEDIA_FOR_JOB:
|
case MediaActionTypes.SELECT_ALL_MEDIA_FOR_JOB:
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
[action.payload.jobid]: state[action.payload.jobid].map((p) => {
|
[action.payload.jobid]: state[action.payload.jobid].map((p) => ({ ...p, isSelected: true }))
|
||||||
p.isSelected = true;
|
|
||||||
|
|
||||||
return p;
|
|
||||||
})
|
|
||||||
};
|
};
|
||||||
case MediaActionTypes.DESELECT_ALL_MEDIA_FOR_JOB:
|
case MediaActionTypes.DESELECT_ALL_MEDIA_FOR_JOB:
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
[action.payload.jobid]: state[action.payload.jobid].map((p) => {
|
[action.payload.jobid]: state[action.payload.jobid].map((p) => ({ ...p, isSelected: false }))
|
||||||
p.isSelected = false;
|
|
||||||
return p;
|
|
||||||
})
|
|
||||||
};
|
};
|
||||||
default:
|
default:
|
||||||
return state;
|
return state;
|
||||||
|
|||||||
@@ -17,9 +17,10 @@ export function* getJobMedia({ payload: jobid }) {
|
|||||||
const imagesFetch = yield cleanAxios.post(
|
const imagesFetch = yield cleanAxios.post(
|
||||||
`${localmediaserverhttp}/jobs/list`,
|
`${localmediaserverhttp}/jobs/list`,
|
||||||
{
|
{
|
||||||
jobid
|
jobid,
|
||||||
|
|
||||||
},
|
},
|
||||||
{ headers: { ims_token: bodyshop.localmediatoken } }
|
{ headers: { ims_token: bodyshop.localmediatoken, bodyshopid: bodyshop.id } }
|
||||||
);
|
);
|
||||||
const documentsFetch = yield cleanAxios.post(
|
const documentsFetch = yield cleanAxios.post(
|
||||||
`${localmediaserverhttp}/bills/list`,
|
`${localmediaserverhttp}/bills/list`,
|
||||||
|
|||||||
@@ -2,4 +2,5 @@ import { createSelector } from "reselect";
|
|||||||
|
|
||||||
const selectMedia = (state) => state.media;
|
const selectMedia = (state) => state.media;
|
||||||
|
|
||||||
export const selectAllMedia = createSelector([selectMedia], (media) => media);
|
// Return a shallow copy to avoid identity selector warning and allow memoization to detect actual changes.
|
||||||
|
export const selectAllMedia = createSelector([selectMedia], (media) => ({ ...media }));
|
||||||
|
|||||||
@@ -1678,6 +1678,7 @@
|
|||||||
"actual_delivery": "Actual Delivery",
|
"actual_delivery": "Actual Delivery",
|
||||||
"actual_in": "Actual In",
|
"actual_in": "Actual In",
|
||||||
"acv_amount": "ACV Amount",
|
"acv_amount": "ACV Amount",
|
||||||
|
"admin_clerk": "Admin Clerk",
|
||||||
"adjustment_bottom_line": "Adjustments",
|
"adjustment_bottom_line": "Adjustments",
|
||||||
"adjustmenthours": "Adjustment Hours",
|
"adjustmenthours": "Adjustment Hours",
|
||||||
"alt_transport": "Alt. Trans.",
|
"alt_transport": "Alt. Trans.",
|
||||||
|
|||||||
@@ -1679,6 +1679,7 @@
|
|||||||
"actual_in": "Real en",
|
"actual_in": "Real en",
|
||||||
"acv_amount": "",
|
"acv_amount": "",
|
||||||
"adjustment_bottom_line": "Ajustes",
|
"adjustment_bottom_line": "Ajustes",
|
||||||
|
"admin_clerk": "",
|
||||||
"adjustmenthours": "",
|
"adjustmenthours": "",
|
||||||
"alt_transport": "",
|
"alt_transport": "",
|
||||||
"area_of_damage_impact": {
|
"area_of_damage_impact": {
|
||||||
|
|||||||
@@ -1678,6 +1678,7 @@
|
|||||||
"actual_delivery": "Livraison réelle",
|
"actual_delivery": "Livraison réelle",
|
||||||
"actual_in": "En réel",
|
"actual_in": "En réel",
|
||||||
"acv_amount": "",
|
"acv_amount": "",
|
||||||
|
"admin_clerk": "",
|
||||||
"adjustment_bottom_line": "Ajustements",
|
"adjustment_bottom_line": "Ajustements",
|
||||||
"adjustmenthours": "",
|
"adjustmenthours": "",
|
||||||
"alt_transport": "",
|
"alt_transport": "",
|
||||||
|
|||||||
@@ -3615,6 +3615,7 @@
|
|||||||
- adj_strdis
|
- adj_strdis
|
||||||
- adj_towdis
|
- adj_towdis
|
||||||
- adjustment_bottom_line
|
- adjustment_bottom_line
|
||||||
|
- admin_clerk
|
||||||
- agt_addr1
|
- agt_addr1
|
||||||
- agt_addr2
|
- agt_addr2
|
||||||
- agt_city
|
- agt_city
|
||||||
@@ -3890,6 +3891,7 @@
|
|||||||
- adj_strdis
|
- adj_strdis
|
||||||
- adj_towdis
|
- adj_towdis
|
||||||
- adjustment_bottom_line
|
- adjustment_bottom_line
|
||||||
|
- admin_clerk
|
||||||
- agt_addr1
|
- agt_addr1
|
||||||
- agt_addr2
|
- agt_addr2
|
||||||
- agt_city
|
- agt_city
|
||||||
@@ -4178,6 +4180,7 @@
|
|||||||
- adj_strdis
|
- adj_strdis
|
||||||
- adj_towdis
|
- adj_towdis
|
||||||
- adjustment_bottom_line
|
- adjustment_bottom_line
|
||||||
|
- admin_clerk
|
||||||
- agt_addr1
|
- agt_addr1
|
||||||
- agt_addr2
|
- agt_addr2
|
||||||
- agt_city
|
- agt_city
|
||||||
@@ -4705,6 +4708,34 @@
|
|||||||
- key
|
- key
|
||||||
- value
|
- value
|
||||||
filter: {}
|
filter: {}
|
||||||
|
- table:
|
||||||
|
name: media_analytics
|
||||||
|
schema: public
|
||||||
|
object_relationships:
|
||||||
|
- name: bodyshop
|
||||||
|
using:
|
||||||
|
foreign_key_constraint_on: bodyshopid
|
||||||
|
array_relationships:
|
||||||
|
- name: media_analytics_details
|
||||||
|
using:
|
||||||
|
foreign_key_constraint_on:
|
||||||
|
column: media_analytics_id
|
||||||
|
table:
|
||||||
|
name: media_analytics_detail
|
||||||
|
schema: public
|
||||||
|
- table:
|
||||||
|
name: media_analytics_detail
|
||||||
|
schema: public
|
||||||
|
object_relationships:
|
||||||
|
- name: bodyshop
|
||||||
|
using:
|
||||||
|
foreign_key_constraint_on: bodyshopid
|
||||||
|
- name: job
|
||||||
|
using:
|
||||||
|
foreign_key_constraint_on: jobid
|
||||||
|
- name: media_analytic
|
||||||
|
using:
|
||||||
|
foreign_key_constraint_on: media_analytics_id
|
||||||
- table:
|
- table:
|
||||||
name: messages
|
name: messages
|
||||||
schema: public
|
schema: public
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
DROP TABLE "public"."media_analytics";
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
CREATE TABLE "public"."media_analytics" ("id" uuid NOT NULL DEFAULT gen_random_uuid(), "created_at" timestamptz NOT NULL DEFAULT now(), "updated_at" timestamptz NOT NULL DEFAULT now(), "bodyshopid" uuid NOT NULL, "total_jobs" integer NOT NULL DEFAULT 0, "total_documents" integer NOT NULL DEFAULT 0, "file_type_stats" jsonb NOT NULL DEFAULT jsonb_build_object(), PRIMARY KEY ("id") , FOREIGN KEY ("bodyshopid") REFERENCES "public"."bodyshops"("id") ON UPDATE restrict ON DELETE restrict);COMMENT ON TABLE "public"."media_analytics" IS E'LMS Media Analytics';
|
||||||
|
CREATE OR REPLACE FUNCTION "public"."set_current_timestamp_updated_at"()
|
||||||
|
RETURNS TRIGGER AS $$
|
||||||
|
DECLARE
|
||||||
|
_new record;
|
||||||
|
BEGIN
|
||||||
|
_new := NEW;
|
||||||
|
_new."updated_at" = NOW();
|
||||||
|
RETURN _new;
|
||||||
|
END;
|
||||||
|
$$ LANGUAGE plpgsql;
|
||||||
|
CREATE TRIGGER "set_public_media_analytics_updated_at"
|
||||||
|
BEFORE UPDATE ON "public"."media_analytics"
|
||||||
|
FOR EACH ROW
|
||||||
|
EXECUTE PROCEDURE "public"."set_current_timestamp_updated_at"();
|
||||||
|
COMMENT ON TRIGGER "set_public_media_analytics_updated_at" ON "public"."media_analytics"
|
||||||
|
IS 'trigger to set value of column "updated_at" to current timestamp on row update';
|
||||||
|
CREATE EXTENSION IF NOT EXISTS pgcrypto;
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
DROP TABLE "public"."media_analytics_detail";
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
CREATE TABLE "public"."media_analytics_detail" ("id" uuid NOT NULL DEFAULT gen_random_uuid(), "created_at" timestamptz NOT NULL DEFAULT now(), "media_analytics_id" uuid NOT NULL, "jobid" uuid NOT NULL, "bodyshopid" uuid NOT NULL, "document_count" integer NOT NULL, "total_size_bytes" integer NOT NULL, "file_type_stats" jsonb NOT NULL DEFAULT jsonb_build_object(), PRIMARY KEY ("id") , FOREIGN KEY ("media_analytics_id") REFERENCES "public"."media_analytics"("id") ON UPDATE restrict ON DELETE restrict, FOREIGN KEY ("jobid") REFERENCES "public"."jobs"("id") ON UPDATE restrict ON DELETE restrict, FOREIGN KEY ("bodyshopid") REFERENCES "public"."bodyshops"("id") ON UPDATE restrict ON DELETE restrict);
|
||||||
|
CREATE EXTENSION IF NOT EXISTS pgcrypto;
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
-- Could not auto-generate a down migration.
|
||||||
|
-- Please write an appropriate down migration for the SQL below:
|
||||||
|
-- alter table "public"."jobs" add column "admin_clerk" text
|
||||||
|
-- null;
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
alter table "public"."jobs" add column "admin_clerk" text
|
||||||
|
null;
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
-- Could not auto-generate a down migration.
|
||||||
|
-- Please write an appropriate down migration for the SQL below:
|
||||||
|
-- alter table "public"."media_analytics" add column "total_size_bytes" integer
|
||||||
|
-- null;
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
alter table "public"."media_analytics" add column "total_size_bytes" integer
|
||||||
|
null;
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
-- Could not auto-generate a down migration.
|
||||||
|
-- Please write an appropriate down migration for the SQL below:
|
||||||
|
-- alter table "public"."media_analytics" add column "total_size_mb" numeric
|
||||||
|
-- null;
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
alter table "public"."media_analytics" add column "total_size_mb" numeric
|
||||||
|
null;
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
-- Could not auto-generate a down migration.
|
||||||
|
-- Please write an appropriate down migration for the SQL below:
|
||||||
|
-- alter table "public"."media_analytics_detail" add column "total_size_mb" numeric
|
||||||
|
-- null;
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
alter table "public"."media_analytics_detail" add column "total_size_mb" numeric
|
||||||
|
null;
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
alter table "public"."media_analytics_detail" alter column "jobid" set not null;
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
alter table "public"."media_analytics_detail" alter column "jobid" drop not null;
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
ALTER TABLE "public"."media_analytics" ALTER COLUMN "total_size_bytes" TYPE integer;
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
ALTER TABLE "public"."media_analytics" ALTER COLUMN "total_size_bytes" TYPE numeric;
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
ALTER TABLE "public"."media_analytics_detail" ALTER COLUMN "total_size_bytes" TYPE integer;
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
ALTER TABLE "public"."media_analytics_detail" ALTER COLUMN "total_size_bytes" TYPE numeric;
|
||||||
37
server/data/analytics/documents.js
Normal file
37
server/data/analytics/documents.js
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
const logger = require("../../utils/logger");
|
||||||
|
const { client } = require('../../graphql-client/graphql-client');
|
||||||
|
const { INSERT_MEDIA_ANALYTICS, GET_BODYSHOP_BY_ID } = require("../../graphql-client/queries");
|
||||||
|
|
||||||
|
const documentAnalytics = async (req, res) => {
|
||||||
|
try {
|
||||||
|
const { data } = req.body;
|
||||||
|
|
||||||
|
//Check if the bodyshopid is real as a "security" measure
|
||||||
|
if (!data.bodyshopid) {
|
||||||
|
throw new Error("No bodyshopid provided in data");
|
||||||
|
}
|
||||||
|
|
||||||
|
const { bodyshops_by_pk } = await client.request(GET_BODYSHOP_BY_ID, {
|
||||||
|
id: data.bodyshopid
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!bodyshops_by_pk) {
|
||||||
|
throw new Error("Invalid bodyshopid provided in data");
|
||||||
|
}
|
||||||
|
|
||||||
|
await client.request(INSERT_MEDIA_ANALYTICS, {
|
||||||
|
mediaObject: data
|
||||||
|
});
|
||||||
|
|
||||||
|
res.json({ status: "success" })
|
||||||
|
} catch (error) {
|
||||||
|
logger.log("document-analytics-error", "ERROR", req?.user?.email, null, {
|
||||||
|
error: error.message,
|
||||||
|
stack: error.stack
|
||||||
|
});
|
||||||
|
res.status(500).json({ error: error.message, stack: error.stack });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
exports.default = documentAnalytics;
|
||||||
@@ -8,4 +8,5 @@ exports.podium = require("./podium").default;
|
|||||||
exports.emsUpload = require("./emsUpload").default;
|
exports.emsUpload = require("./emsUpload").default;
|
||||||
exports.carfax = require("./carfax").default;
|
exports.carfax = require("./carfax").default;
|
||||||
exports.carfaxRps = require("./carfax-rps").default;
|
exports.carfaxRps = require("./carfax-rps").default;
|
||||||
exports.vehicletype = require("./vehicletype/vehicletype").default;
|
exports.vehicletype = require("./vehicletype/vehicletype").default;
|
||||||
|
exports.documentAnalytics = require("./analytics/documents").default;
|
||||||
@@ -219,8 +219,6 @@ const CreateRepairOrderTag = (job, errorCallback) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const repairCosts = CreateCosts(job);
|
const repairCosts = CreateCosts(job);
|
||||||
const jobline = CreateJobLines(job.joblines);
|
|
||||||
const timeticket = CreateTimeTickets(job.timetickets);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const ret = {
|
const ret = {
|
||||||
@@ -290,8 +288,100 @@ const CreateRepairOrderTag = (job, errorCallback) => {
|
|||||||
(job.date_exported && moment(job.date_exported).tz(job.bodyshop.timezone).format(DateFormat)) || "",
|
(job.date_exported && moment(job.date_exported).tz(job.bodyshop.timezone).format(DateFormat)) || "",
|
||||||
DateVoid: (job.date_void && moment(job.date_void).tz(job.bodyshop.timezone).format(DateFormat)) || ""
|
DateVoid: (job.date_void && moment(job.date_void).tz(job.bodyshop.timezone).format(DateFormat)) || ""
|
||||||
},
|
},
|
||||||
JobLineDetails: { jobline },
|
JobLineDetails: (function () {
|
||||||
TimeTicketDetails: { timeticket },
|
const joblineSource = Array.isArray(job.joblines) ? job.joblines : job.joblines ? [job.joblines] : [];
|
||||||
|
if (joblineSource.length === 0) return { jobline: [] };
|
||||||
|
return {
|
||||||
|
jobline: joblineSource.map((jl = {}) => ({
|
||||||
|
line_description: jl.line_desc || jl.line_description || "",
|
||||||
|
oem_part_no: jl.oem_partno || jl.oem_part_no || "",
|
||||||
|
alt_part_no: jl.alt_partno || jl.alt_part_no || "",
|
||||||
|
op_code_desc: jl.op_code_desc || "",
|
||||||
|
part_type: jl.part_type || "",
|
||||||
|
part_qty: jl.part_qty ?? jl.quantity ?? 0,
|
||||||
|
part_price: jl.act_price ?? jl.part_price ?? 0,
|
||||||
|
labor_type: jl.mod_lbr_ty || jl.labor_type || "",
|
||||||
|
labor_hours: jl.mod_lb_hrs ?? jl.labor_hours ?? 0,
|
||||||
|
labor_sale: jl.lbr_amt ?? jl.labor_sale ?? 0
|
||||||
|
}))
|
||||||
|
};
|
||||||
|
})(),
|
||||||
|
BillsDetails: (function () {
|
||||||
|
const billsSource = Array.isArray(job.bills) ? job.bills : job.bills ? [job.bills] : [];
|
||||||
|
if (billsSource.length === 0) return { BillDetails: [] };
|
||||||
|
return {
|
||||||
|
BillDetails: billsSource.map(
|
||||||
|
({
|
||||||
|
billlines = [],
|
||||||
|
date = "",
|
||||||
|
is_credit_memo = false,
|
||||||
|
invoice_number = "",
|
||||||
|
isinhouse = false,
|
||||||
|
vendor = {}
|
||||||
|
} = {}) => ({
|
||||||
|
BillLines: {
|
||||||
|
BillLine: billlines.map((bl = {}) => ({
|
||||||
|
line_description: bl.line_desc || bl.line_description || "",
|
||||||
|
part_price: bl.actual_price ?? bl.part_price ?? bl.act_price ?? 0,
|
||||||
|
actual_cost: bl.actual_cost ?? 0,
|
||||||
|
cost_center: bl.cost_center || "",
|
||||||
|
deductedfromlbr: bl.deductedfromlbr || false,
|
||||||
|
part_qty: bl.quantity ?? bl.part_qty ?? 0,
|
||||||
|
oem_part_no: bl.oem_partno || bl.oem_part_no || "",
|
||||||
|
alt_part_no: bl.alt_partno || bl.alt_part_no || ""
|
||||||
|
}))
|
||||||
|
},
|
||||||
|
date,
|
||||||
|
is_credit_memo,
|
||||||
|
invoice_number,
|
||||||
|
isinhouse,
|
||||||
|
vendorName: vendor.name || ""
|
||||||
|
})
|
||||||
|
)
|
||||||
|
};
|
||||||
|
})(),
|
||||||
|
JobNotes: (function () {
|
||||||
|
const notesSource = Array.isArray(job.notes) ? job.notes : job.notes ? [job.notes] : [];
|
||||||
|
if (notesSource.length === 0) return { JobNote: [] };
|
||||||
|
return {
|
||||||
|
JobNote: notesSource.map((note = {}) => ({
|
||||||
|
created_at: note.created_at || "",
|
||||||
|
created_by: note.created_by || "",
|
||||||
|
critical: note.critical || false,
|
||||||
|
private: note.private || false,
|
||||||
|
text: note.text || "",
|
||||||
|
type: note.type || ""
|
||||||
|
}))
|
||||||
|
};
|
||||||
|
})(),
|
||||||
|
TimeTicketDetails: (function () {
|
||||||
|
const ticketSource = Array.isArray(job.timetickets)
|
||||||
|
? job.timetickets
|
||||||
|
: job.timetickets
|
||||||
|
? [job.timetickets]
|
||||||
|
: [];
|
||||||
|
if (ticketSource.length === 0) return { timeticket: [] };
|
||||||
|
return {
|
||||||
|
timeticket: ticketSource.map((ticket = {}) => ({
|
||||||
|
date: ticket.date || "",
|
||||||
|
employee:
|
||||||
|
ticket.employee && ticket.employee.employee_number
|
||||||
|
? ticket.employee.employee_number
|
||||||
|
.trim()
|
||||||
|
.concat(" - ", ticket.employee.first_name.trim(), " ", ticket.employee.last_name.trim())
|
||||||
|
.trim()
|
||||||
|
: "",
|
||||||
|
productive_hrs: ticket.productivehrs ?? 0,
|
||||||
|
actual_hrs: ticket.actualhrs ?? 0,
|
||||||
|
cost_center: ticket.cost_center || "",
|
||||||
|
flat_rate: ticket.flat_rate || false,
|
||||||
|
rate: ticket.rate ?? 0,
|
||||||
|
ticket_cost: ticket.flat_rate
|
||||||
|
? ticket.rate * (ticket.productivehrs || 0)
|
||||||
|
: ticket.rate * (ticket.actualhrs || 0)
|
||||||
|
}))
|
||||||
|
};
|
||||||
|
})(),
|
||||||
Sales: {
|
Sales: {
|
||||||
Labour: {
|
Labour: {
|
||||||
Aluminum: Dinero(job.job_totals.rates.laa.total).toFormat(DineroFormat),
|
Aluminum: Dinero(job.job_totals.rates.laa.total).toFormat(DineroFormat),
|
||||||
@@ -636,42 +726,3 @@ const CreateCosts = (job) => {
|
|||||||
}, 0)
|
}, 0)
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
const CreateJobLines = (joblines) => {
|
|
||||||
const repairLines = [];
|
|
||||||
joblines.forEach((jobline) => {
|
|
||||||
repairLines.push({
|
|
||||||
line_description: jobline.line_desc,
|
|
||||||
oem_part_no: jobline.oem_partno,
|
|
||||||
alt_part_no: jobline.alt_partno,
|
|
||||||
op_code_desc: jobline.op_code_desc,
|
|
||||||
part_type: jobline.part_type,
|
|
||||||
part_qty: jobline.part_qty,
|
|
||||||
part_price: jobline.act_price,
|
|
||||||
labor_type: jobline.mod_lbr_ty,
|
|
||||||
labor_hours: jobline.mod_lb_hrs,
|
|
||||||
labor_sale: jobline.lbr_amt
|
|
||||||
});
|
|
||||||
});
|
|
||||||
return repairLines;
|
|
||||||
};
|
|
||||||
|
|
||||||
const CreateTimeTickets = (timetickets) => {
|
|
||||||
const timeTickets = [];
|
|
||||||
timetickets.forEach((ticket) => {
|
|
||||||
timeTickets.push({
|
|
||||||
date: ticket.date,
|
|
||||||
employee: ticket.employee.employee_number
|
|
||||||
.trim()
|
|
||||||
.concat(" - ", ticket.employee.first_name.trim(), " ", ticket.employee.last_name.trim())
|
|
||||||
.trim(),
|
|
||||||
productive_hrs: ticket.productivehrs,
|
|
||||||
actual_hrs: ticket.actualhrs,
|
|
||||||
cost_center: ticket.cost_center,
|
|
||||||
flat_rate: ticket.flat_rate,
|
|
||||||
rate: ticket.rate,
|
|
||||||
ticket_cost: ticket.flat_rate ? ticket.rate * ticket.productive_hrs : ticket.rate * ticket.actual_hrs
|
|
||||||
});
|
|
||||||
});
|
|
||||||
return timeTickets;
|
|
||||||
};
|
|
||||||
|
|||||||
@@ -1219,7 +1219,7 @@ query ENTEGRAL_EXPORT($bodyshopid: uuid!) {
|
|||||||
}`;
|
}`;
|
||||||
|
|
||||||
exports.KAIZEN_QUERY = `query KAIZEN_EXPORT($start: timestamptz, $bodyshopid: uuid!, $end: timestamptz) {
|
exports.KAIZEN_QUERY = `query KAIZEN_EXPORT($start: timestamptz, $bodyshopid: uuid!, $end: timestamptz) {
|
||||||
bodyshops_by_pk(id: $bodyshopid){
|
bodyshops_by_pk(id: $bodyshopid) {
|
||||||
id
|
id
|
||||||
shopname
|
shopname
|
||||||
address1
|
address1
|
||||||
@@ -1246,15 +1246,24 @@ exports.KAIZEN_QUERY = `query KAIZEN_EXPORT($start: timestamptz, $bodyshopid: uu
|
|||||||
bills {
|
bills {
|
||||||
billlines {
|
billlines {
|
||||||
actual_cost
|
actual_cost
|
||||||
|
actual_price
|
||||||
cost_center
|
cost_center
|
||||||
|
deductedfromlbr
|
||||||
id
|
id
|
||||||
|
line_desc
|
||||||
quantity
|
quantity
|
||||||
}
|
}
|
||||||
|
date
|
||||||
federal_tax_rate
|
federal_tax_rate
|
||||||
id
|
id
|
||||||
is_credit_memo
|
is_credit_memo
|
||||||
|
invoice_number
|
||||||
|
isinhouse
|
||||||
local_tax_rate
|
local_tax_rate
|
||||||
state_tax_rate
|
state_tax_rate
|
||||||
|
vendor {
|
||||||
|
name
|
||||||
|
}
|
||||||
}
|
}
|
||||||
created_at
|
created_at
|
||||||
clm_no
|
clm_no
|
||||||
@@ -1296,7 +1305,7 @@ exports.KAIZEN_QUERY = `query KAIZEN_EXPORT($start: timestamptz, $bodyshopid: uu
|
|||||||
joblines(where: {removed: {_eq: false}}) {
|
joblines(where: {removed: {_eq: false}}) {
|
||||||
act_price
|
act_price
|
||||||
alt_partno
|
alt_partno
|
||||||
billlines(order_by: {bill: {date: desc_nulls_last}} limit: 1) {
|
billlines(order_by: {bill: {date: desc_nulls_last}}, limit: 1) {
|
||||||
actual_cost
|
actual_cost
|
||||||
actual_price
|
actual_price
|
||||||
quantity
|
quantity
|
||||||
@@ -1319,8 +1328,8 @@ exports.KAIZEN_QUERY = `query KAIZEN_EXPORT($start: timestamptz, $bodyshopid: uu
|
|||||||
mod_lbr_ty
|
mod_lbr_ty
|
||||||
oem_partno
|
oem_partno
|
||||||
op_code_desc
|
op_code_desc
|
||||||
parts_order_lines(order_by: {parts_order: {order_date: desc_nulls_last}} limit: 1){
|
parts_order_lines(order_by: {parts_order: {order_date: desc_nulls_last}}, limit: 1) {
|
||||||
parts_order{
|
parts_order {
|
||||||
id
|
id
|
||||||
order_date
|
order_date
|
||||||
}
|
}
|
||||||
@@ -1339,6 +1348,14 @@ exports.KAIZEN_QUERY = `query KAIZEN_EXPORT($start: timestamptz, $bodyshopid: uu
|
|||||||
jobid
|
jobid
|
||||||
totalliquidcost
|
totalliquidcost
|
||||||
}
|
}
|
||||||
|
notes {
|
||||||
|
created_at
|
||||||
|
created_by
|
||||||
|
critical
|
||||||
|
private
|
||||||
|
text
|
||||||
|
type
|
||||||
|
}
|
||||||
ownr_addr1
|
ownr_addr1
|
||||||
ownr_addr2
|
ownr_addr2
|
||||||
ownr_city
|
ownr_city
|
||||||
@@ -2204,16 +2221,18 @@ exports.UPDATE_OLD_TRANSITION = `mutation UPDATE_OLD_TRANSITION($jobid: uuid!, $
|
|||||||
|
|
||||||
exports.INSERT_NEW_TRANSITION = (
|
exports.INSERT_NEW_TRANSITION = (
|
||||||
includeOldTransition
|
includeOldTransition
|
||||||
) => `mutation INSERT_NEW_TRANSITION($newTransition: transitions_insert_input!, ${includeOldTransition ? `$oldTransitionId: uuid!, $duration: numeric` : ""
|
) => `mutation INSERT_NEW_TRANSITION($newTransition: transitions_insert_input!, ${
|
||||||
}) {
|
includeOldTransition ? `$oldTransitionId: uuid!, $duration: numeric` : ""
|
||||||
|
}) {
|
||||||
insert_transitions_one(object: $newTransition) {
|
insert_transitions_one(object: $newTransition) {
|
||||||
id
|
id
|
||||||
}
|
}
|
||||||
${includeOldTransition
|
${
|
||||||
? `update_transitions(where: {id: {_eq: $oldTransitionId}}, _set: {duration: $duration}) {
|
includeOldTransition
|
||||||
|
? `update_transitions(where: {id: {_eq: $oldTransitionId}}, _set: {duration: $duration}) {
|
||||||
affected_rows
|
affected_rows
|
||||||
}`
|
}`
|
||||||
: ""
|
: ""
|
||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
@@ -3151,3 +3170,11 @@ exports.DELETE_PHONE_NUMBER_OPT_OUT = `
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
exports.INSERT_MEDIA_ANALYTICS = `
|
||||||
|
mutation INSERT_MEDIA_ANALYTICS($mediaObject: media_analytics_insert_input!) {
|
||||||
|
insert_media_analytics_one(object: $mediaObject) {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|||||||
@@ -381,7 +381,7 @@ async function CalculateRatesTotals({ job, client }) {
|
|||||||
|
|
||||||
if (item.mod_lbr_ty) {
|
if (item.mod_lbr_ty) {
|
||||||
//Check to see if it has 0 hours and a price instead.
|
//Check to see if it has 0 hours and a price instead.
|
||||||
if (item.lbr_op === "OP14" && item.act_price > 0 && (!item.part_type || item.mod_lb_hrs === 0)) {
|
if (item.lbr_op === "OP14" && item.act_price > 0 && (!item.part_type || item.mod_lb_hrs === 0) && !IsAdditionalCost(item)) {
|
||||||
//Scenario where SGI may pay out hours using a part price.
|
//Scenario where SGI may pay out hours using a part price.
|
||||||
if (!ret[item.mod_lbr_ty.toLowerCase()].total) {
|
if (!ret[item.mod_lbr_ty.toLowerCase()].total) {
|
||||||
ret[item.mod_lbr_ty.toLowerCase()].base = Dinero();
|
ret[item.mod_lbr_ty.toLowerCase()].base = Dinero();
|
||||||
|
|||||||
@@ -315,7 +315,7 @@ function CalculateRatesTotals(ratesList) {
|
|||||||
if (item.mod_lbr_ty) {
|
if (item.mod_lbr_ty) {
|
||||||
//Check to see if it has 0 hours and a price instead.
|
//Check to see if it has 0 hours and a price instead.
|
||||||
//Extend for when there are hours and a price.
|
//Extend for when there are hours and a price.
|
||||||
if (item.lbr_op === "OP14" && item.act_price > 0 && (!item.part_type || item.mod_lb_hrs === 0)) {
|
if (item.lbr_op === "OP14" && item.act_price > 0 && (!item.part_type || item.mod_lb_hrs === 0) && !IsAdditionalCost(item)) {
|
||||||
//Scenario where SGI may pay out hours using a part price.
|
//Scenario where SGI may pay out hours using a part price.
|
||||||
if (!ret[item.mod_lbr_ty.toLowerCase()].total) {
|
if (!ret[item.mod_lbr_ty.toLowerCase()].total) {
|
||||||
ret[item.mod_lbr_ty.toLowerCase()].total = Dinero();
|
ret[item.mod_lbr_ty.toLowerCase()].total = Dinero();
|
||||||
|
|||||||
@@ -146,7 +146,7 @@ router.post("/bodyshop-cache", eventAuthorizationMiddleware, updateBodyshopCache
|
|||||||
|
|
||||||
// Estimate Scrubber Vehicle Type
|
// Estimate Scrubber Vehicle Type
|
||||||
router.post("/es/vehicletype", data.vehicletype);
|
router.post("/es/vehicletype", data.vehicletype);
|
||||||
|
router.post("/analytics/documents", data.documentAnalytics);
|
||||||
// Health Check for docker-compose-cluster load balancer, only available in development
|
// Health Check for docker-compose-cluster load balancer, only available in development
|
||||||
if (process.env.NODE_ENV === "development") {
|
if (process.env.NODE_ENV === "development") {
|
||||||
router.get("/health", (req, res) => {
|
router.get("/health", (req, res) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user