-
- {(loadData.hoursIn || 0) && loadData.hoursIn.toFixed(2)}
-
- {(loadData.hoursOut || 0) && loadData.hoursOut.toFixed(2)}
-
+ const popContent = () => (
+
e.stopPropagation()}>
+
+
+ {loadData && loadData.jobsOut ? (
+ loadData.jobsOut.map((j) => (
+
+ |
+ {j.ro_number}
+ |
+
+ {`(${(
+ j.labhrs.aggregate.sum.mod_lb_hrs +
+ j.larhrs.aggregate.sum.mod_lb_hrs
+ ).toFixed(1)} ${t("general.labels.hours")})`}
+ |
+
+
+ {j.scheduled_completion}
+
+ |
+
+ ))
+ ) : (
+
+ | {t("appointments.labels.nocompletingjobs")} |
+
+ )}
+
+
+ );
+
+ const LoadComponent = loadData ? (
+
+
+
+ {(loadData.hoursIn || 0) && loadData.hoursIn.toFixed(2)}
+
+ {(loadData.hoursOut || 0) && loadData.hoursOut.toFixed(2)}
+
+
+
) : null;
return (
diff --git a/client/src/components/shop-info/shop-info.component.jsx b/client/src/components/shop-info/shop-info.component.jsx
index 6adc46e42..db9af532c 100644
--- a/client/src/components/shop-info/shop-info.component.jsx
+++ b/client/src/components/shop-info/shop-info.component.jsx
@@ -153,6 +153,18 @@ export default function ShopInfoComponent({ form, saveLoading }) {
>
+
+
+