From 6eaae0f5378e39c4002dadd8325833698dd960e7 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Tue, 9 Jun 2026 11:59:27 -0500 Subject: [PATCH] refactor(dock scanner): more work on dock scanner and semi finished --- backend/db/schema/dockdoor.scans.schema.ts | 2 +- .../dockdoor.activeLoadingOrders.route.ts | 1 + .../dockdoor.closeLoadingOrder.route.ts | 26 +- .../dockdoorScanning/dockdoor.loadUnits.ts | 23 +- backend/socket.io/roomDefinitions.socket.ts | 6 +- frontend/src/hooks/socket.io.hook.ts | 2 +- frontend/src/routeTree.gen.ts | 46 +- .../warehouse/dockdoorscanning/$dock.tsx | 200 +- .../warehouse/dockdoorscanning/$dockScans.tsx | 10 - .../warehouse/dockdoorscanning/index.tsx | 140 +- .../dockdoorscanning/scans/$dockScans.tsx | 198 ++ migrations/0062_square_harrier.sql | 1 + migrations/meta/0062_snapshot.json | 2689 +++++++++++++++++ migrations/meta/_journal.json | 7 + 14 files changed, 3184 insertions(+), 167 deletions(-) delete mode 100644 frontend/src/routes/warehouse/dockdoorscanning/$dockScans.tsx create mode 100644 frontend/src/routes/warehouse/dockdoorscanning/scans/$dockScans.tsx create mode 100644 migrations/0062_square_harrier.sql create mode 100644 migrations/meta/0062_snapshot.json diff --git a/backend/db/schema/dockdoor.scans.schema.ts b/backend/db/schema/dockdoor.scans.schema.ts index 8ce283c..ff95388 100644 --- a/backend/db/schema/dockdoor.scans.schema.ts +++ b/backend/db/schema/dockdoor.scans.schema.ts @@ -6,7 +6,7 @@ export const dockDoorScans = pgTable("dock_door_scans", { id: uuid("id").defaultRandom().primaryKey(), dockId: text("dock_id").notNull(), loadingOrder: text("loading_order").notNull(), - loadingUnit: text("loading_Unit").unique(), // can be running number or sscc depending on where it came from + loadingUnit: text("loading_Unit"), // can be running number or sscc depending on where it came from loadingUnitStatus: text("loading_unit_status").default("loaded"), // TODO: add enums on the status of each load. message: text("message"), // the response it gave when scanning status: text("status").default("active"), // TODO: add in enums for this diff --git a/backend/dockdoorScanning/dockdoor.activeLoadingOrders.route.ts b/backend/dockdoorScanning/dockdoor.activeLoadingOrders.route.ts index 3aae5c8..640e576 100644 --- a/backend/dockdoorScanning/dockdoor.activeLoadingOrders.route.ts +++ b/backend/dockdoorScanning/dockdoor.activeLoadingOrders.route.ts @@ -16,6 +16,7 @@ r.get("/", async (_, res) => { loadingDateTo: format(addDays(new Date(Date.now()), 3), "yyyy-MM-dd"), states: [ 1, // planned + 2, // loading ], //isCommissioned: true, }, diff --git a/backend/dockdoorScanning/dockdoor.closeLoadingOrder.route.ts b/backend/dockdoorScanning/dockdoor.closeLoadingOrder.route.ts index 946100e..9d37751 100644 --- a/backend/dockdoorScanning/dockdoor.closeLoadingOrder.route.ts +++ b/backend/dockdoorScanning/dockdoor.closeLoadingOrder.route.ts @@ -32,13 +32,34 @@ r.post("/", async (req, res) => { })) as any; if (orders?.data.errors) { - console.log(orders.data.errors); + //console.log(orders.data.errors); + + // if (orders.data.errors[0].code === 20) { + // await db + // .update(dockDoorScanners) + // .set({ + // currentLoadingOrder: "", + // upd_date: sql`NOW()`, + // upd_user: req.user?.username ?? "lst-dock-system", + // }) + // .where(eq(dockDoorScanners.dockId, validated.dockId)); + + // return apiReturn(res, { + // success: false, + // level: "warn", + // module: "dockdoor", + // subModule: "loadingOrder", + // message: `Loading order: ${validated.loadingOrder} cleared, It was probable completed by a scanner.. or user...`, + // data: (orders.data.errors as any) ?? [], + // status: 200, + // }); + // } return apiReturn(res, { success: false, level: "error", module: "dockdoor", subModule: "loadingOrder", - message: `Failed to finish the order.`, + message: `Failed to finish the order: ${orders.data.errors[0].message}`, data: (orders.data.errors as any) ?? [], status: 400, }); @@ -48,6 +69,7 @@ r.post("/", async (req, res) => { db .update(dockDoorScans) .set({ + status: "completed", upd_date: sql`NOW()`, upd_user: req.user?.username ?? "lst-dock-system", }) diff --git a/backend/dockdoorScanning/dockdoor.loadUnits.ts b/backend/dockdoorScanning/dockdoor.loadUnits.ts index a2b8e8b..3a9247d 100644 --- a/backend/dockdoorScanning/dockdoor.loadUnits.ts +++ b/backend/dockdoorScanning/dockdoor.loadUnits.ts @@ -19,13 +19,18 @@ type Data = { const postScan = async (data: any) => { try { - await db.insert(dockDoorScans).values({ - dockId: data.dockId, - loadingOrder: data.loadingOrder, - loadingUnit: data.loadingUnit.sscc ?? data.loadingUnit.runningNo, // can be running number or sscc depending on where it came from - loadingUnitStatus: data.loadingUnitStatus, // TODO: add enums on the status of each load. - message: data.message, // the response it gave when scanning - }); + const newScan = (await db + .insert(dockDoorScans) + .values({ + dockId: data.dockId, + loadingOrder: data.loadingOrder, + loadingUnit: data.loadingUnit.sscc ?? data.loadingUnit.runningNo, // can be running number or sscc depending on where it came from + loadingUnitStatus: data.loadingUnitStatus, // TODO: add enums on the status of each load. + message: data.message, // the response it gave when scanning + }) + .returning()) as any; + + emitToRoom(`dockDoorLoading:${data.dockId}`, newScan[0]); } catch (error) { console.log("Error: ", error); } @@ -133,7 +138,7 @@ const loadUnit = async (data: Data) => { loadingUnitStatus: "notLoaded", message: prod?.data.errors[0].message, }); - emitToRoom(`dockDoorLoading:${data.dockId}`, prod?.data.errors[0]); + return returnFunc({ success: false, level: "error", @@ -158,7 +163,7 @@ const loadUnit = async (data: Data) => { loadingUnitStatus: "loaded", message: emitData.message, }); - emitToRoom(`dockDoorLoading:${data.dockId}`, emitData as any); + return returnFunc({ success: true, level: "info", diff --git a/backend/socket.io/roomDefinitions.socket.ts b/backend/socket.io/roomDefinitions.socket.ts index 3af21ff..d49e764 100644 --- a/backend/socket.io/roomDefinitions.socket.ts +++ b/backend/socket.io/roomDefinitions.socket.ts @@ -1,8 +1,8 @@ import { desc, eq } from "drizzle-orm"; import { db } from "../db/db.controller.js"; +import { dockDoorScans } from "../db/schema/dockdoor.scans.schema.js"; import { logs } from "../db/schema/logs.schema.js"; import { ppoRun } from "../warehousing/warehousing.ppooMonitor.js"; -import { dockDoorScans } from "../db/schema/dockdoor.scans.schema.js"; type RoomDefinition = { seed: (limit: number) => Promise; @@ -104,10 +104,12 @@ export const roomDefinition: Record = { "dockDoorLoading:2": { seed: async (limit) => { console.log(limit); + console.log("reseeiding"); try { const rows = await db .select() - .from(dockDoorScans).where(eq(dockDoorScans.status, "active")) + .from(dockDoorScans) + .where(eq(dockDoorScans.status, "active")) .orderBy(desc(dockDoorScans.upd_date)) .limit(limit); diff --git a/frontend/src/hooks/socket.io.hook.ts b/frontend/src/hooks/socket.io.hook.ts index c287092..4227953 100644 --- a/frontend/src/hooks/socket.io.hook.ts +++ b/frontend/src/hooks/socket.io.hook.ts @@ -30,7 +30,7 @@ export function useSocketRoom( setInfo(`Removed item ${id}`); return; } - + console.log("cleared data from the room"); setData([]); setInfo("Room data cleared"); }, diff --git a/frontend/src/routeTree.gen.ts b/frontend/src/routeTree.gen.ts index cd28b2b..8940f7c 100644 --- a/frontend/src/routeTree.gen.ts +++ b/frontend/src/routeTree.gen.ts @@ -24,11 +24,11 @@ import { Route as AdminLogsRouteImport } from './routes/admin/logs' import { Route as authLoginRouteImport } from './routes/(auth)/login' import { Route as WarehouseDockdoorscanningIndexRouteImport } from './routes/warehouse/dockdoorscanning/index' import { Route as TransportationOpendockIndexRouteImport } from './routes/transportation/opendock/index' -import { Route as WarehouseDockdoorscanningDockScansRouteImport } from './routes/warehouse/dockdoorscanning/$dockScans' import { Route as WarehouseDockdoorscanningDockRouteImport } from './routes/warehouse/dockdoorscanning/$dock' import { Route as authUserSignupRouteImport } from './routes/(auth)/user.signup' import { Route as authUserResetpasswordRouteImport } from './routes/(auth)/user.resetpassword' import { Route as authUserProfileRouteImport } from './routes/(auth)/user.profile' +import { Route as WarehouseDockdoorscanningScansDockScansRouteImport } from './routes/warehouse/dockdoorscanning/scans/$dockScans' const ForbiddenRoute = ForbiddenRouteImport.update({ id: '/forbidden', @@ -107,12 +107,6 @@ const TransportationOpendockIndexRoute = path: '/transportation/opendock/', getParentRoute: () => rootRouteImport, } as any) -const WarehouseDockdoorscanningDockScansRoute = - WarehouseDockdoorscanningDockScansRouteImport.update({ - id: '/warehouse/dockdoorscanning/$dockScans', - path: '/warehouse/dockdoorscanning/$dockScans', - getParentRoute: () => rootRouteImport, - } as any) const WarehouseDockdoorscanningDockRoute = WarehouseDockdoorscanningDockRouteImport.update({ id: '/warehouse/dockdoorscanning/$dock', @@ -134,6 +128,12 @@ const authUserProfileRoute = authUserProfileRouteImport.update({ path: '/user/profile', getParentRoute: () => rootRouteImport, } as any) +const WarehouseDockdoorscanningScansDockScansRoute = + WarehouseDockdoorscanningScansDockScansRouteImport.update({ + id: '/warehouse/dockdoorscanning/scans/$dockScans', + path: '/warehouse/dockdoorscanning/scans/$dockScans', + getParentRoute: () => rootRouteImport, + } as any) export interface FileRoutesByFullPath { '/': typeof IndexRoute @@ -153,9 +153,9 @@ export interface FileRoutesByFullPath { '/user/resetpassword': typeof authUserResetpasswordRoute '/user/signup': typeof authUserSignupRoute '/warehouse/dockdoorscanning/$dock': typeof WarehouseDockdoorscanningDockRoute - '/warehouse/dockdoorscanning/$dockScans': typeof WarehouseDockdoorscanningDockScansRoute '/transportation/opendock/': typeof TransportationOpendockIndexRoute '/warehouse/dockdoorscanning/': typeof WarehouseDockdoorscanningIndexRoute + '/warehouse/dockdoorscanning/scans/$dockScans': typeof WarehouseDockdoorscanningScansDockScansRoute } export interface FileRoutesByTo { '/': typeof IndexRoute @@ -175,9 +175,9 @@ export interface FileRoutesByTo { '/user/resetpassword': typeof authUserResetpasswordRoute '/user/signup': typeof authUserSignupRoute '/warehouse/dockdoorscanning/$dock': typeof WarehouseDockdoorscanningDockRoute - '/warehouse/dockdoorscanning/$dockScans': typeof WarehouseDockdoorscanningDockScansRoute '/transportation/opendock': typeof TransportationOpendockIndexRoute '/warehouse/dockdoorscanning': typeof WarehouseDockdoorscanningIndexRoute + '/warehouse/dockdoorscanning/scans/$dockScans': typeof WarehouseDockdoorscanningScansDockScansRoute } export interface FileRoutesById { __root__: typeof rootRouteImport @@ -198,9 +198,9 @@ export interface FileRoutesById { '/(auth)/user/resetpassword': typeof authUserResetpasswordRoute '/(auth)/user/signup': typeof authUserSignupRoute '/warehouse/dockdoorscanning/$dock': typeof WarehouseDockdoorscanningDockRoute - '/warehouse/dockdoorscanning/$dockScans': typeof WarehouseDockdoorscanningDockScansRoute '/transportation/opendock/': typeof TransportationOpendockIndexRoute '/warehouse/dockdoorscanning/': typeof WarehouseDockdoorscanningIndexRoute + '/warehouse/dockdoorscanning/scans/$dockScans': typeof WarehouseDockdoorscanningScansDockScansRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath @@ -222,9 +222,9 @@ export interface FileRouteTypes { | '/user/resetpassword' | '/user/signup' | '/warehouse/dockdoorscanning/$dock' - | '/warehouse/dockdoorscanning/$dockScans' | '/transportation/opendock/' | '/warehouse/dockdoorscanning/' + | '/warehouse/dockdoorscanning/scans/$dockScans' fileRoutesByTo: FileRoutesByTo to: | '/' @@ -244,9 +244,9 @@ export interface FileRouteTypes { | '/user/resetpassword' | '/user/signup' | '/warehouse/dockdoorscanning/$dock' - | '/warehouse/dockdoorscanning/$dockScans' | '/transportation/opendock' | '/warehouse/dockdoorscanning' + | '/warehouse/dockdoorscanning/scans/$dockScans' id: | '__root__' | '/' @@ -266,9 +266,9 @@ export interface FileRouteTypes { | '/(auth)/user/resetpassword' | '/(auth)/user/signup' | '/warehouse/dockdoorscanning/$dock' - | '/warehouse/dockdoorscanning/$dockScans' | '/transportation/opendock/' | '/warehouse/dockdoorscanning/' + | '/warehouse/dockdoorscanning/scans/$dockScans' fileRoutesById: FileRoutesById } export interface RootRouteChildren { @@ -289,9 +289,9 @@ export interface RootRouteChildren { authUserResetpasswordRoute: typeof authUserResetpasswordRoute authUserSignupRoute: typeof authUserSignupRoute WarehouseDockdoorscanningDockRoute: typeof WarehouseDockdoorscanningDockRoute - WarehouseDockdoorscanningDockScansRoute: typeof WarehouseDockdoorscanningDockScansRoute TransportationOpendockIndexRoute: typeof TransportationOpendockIndexRoute WarehouseDockdoorscanningIndexRoute: typeof WarehouseDockdoorscanningIndexRoute + WarehouseDockdoorscanningScansDockScansRoute: typeof WarehouseDockdoorscanningScansDockScansRoute } declare module '@tanstack/react-router' { @@ -401,13 +401,6 @@ declare module '@tanstack/react-router' { preLoaderRoute: typeof TransportationOpendockIndexRouteImport parentRoute: typeof rootRouteImport } - '/warehouse/dockdoorscanning/$dockScans': { - id: '/warehouse/dockdoorscanning/$dockScans' - path: '/warehouse/dockdoorscanning/$dockScans' - fullPath: '/warehouse/dockdoorscanning/$dockScans' - preLoaderRoute: typeof WarehouseDockdoorscanningDockScansRouteImport - parentRoute: typeof rootRouteImport - } '/warehouse/dockdoorscanning/$dock': { id: '/warehouse/dockdoorscanning/$dock' path: '/warehouse/dockdoorscanning/$dock' @@ -436,6 +429,13 @@ declare module '@tanstack/react-router' { preLoaderRoute: typeof authUserProfileRouteImport parentRoute: typeof rootRouteImport } + '/warehouse/dockdoorscanning/scans/$dockScans': { + id: '/warehouse/dockdoorscanning/scans/$dockScans' + path: '/warehouse/dockdoorscanning/scans/$dockScans' + fullPath: '/warehouse/dockdoorscanning/scans/$dockScans' + preLoaderRoute: typeof WarehouseDockdoorscanningScansDockScansRouteImport + parentRoute: typeof rootRouteImport + } } } @@ -457,10 +457,10 @@ const rootRouteChildren: RootRouteChildren = { authUserResetpasswordRoute: authUserResetpasswordRoute, authUserSignupRoute: authUserSignupRoute, WarehouseDockdoorscanningDockRoute: WarehouseDockdoorscanningDockRoute, - WarehouseDockdoorscanningDockScansRoute: - WarehouseDockdoorscanningDockScansRoute, TransportationOpendockIndexRoute: TransportationOpendockIndexRoute, WarehouseDockdoorscanningIndexRoute: WarehouseDockdoorscanningIndexRoute, + WarehouseDockdoorscanningScansDockScansRoute: + WarehouseDockdoorscanningScansDockScansRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) diff --git a/frontend/src/routes/warehouse/dockdoorscanning/$dock.tsx b/frontend/src/routes/warehouse/dockdoorscanning/$dock.tsx index 321e393..f4c3020 100644 --- a/frontend/src/routes/warehouse/dockdoorscanning/$dock.tsx +++ b/frontend/src/routes/warehouse/dockdoorscanning/$dock.tsx @@ -1,6 +1,7 @@ import { useSuspenseQuery } from "@tanstack/react-query"; -import { createFileRoute } from "@tanstack/react-router"; +import { createFileRoute, useNavigate } from "@tanstack/react-router"; import { format } from "date-fns"; +import { toast } from "sonner"; import { Button } from "../../../components/ui/button"; import { Card, @@ -10,108 +11,155 @@ import { CardHeader, } from "../../../components/ui/card"; import { Separator } from "../../../components/ui/separator"; +import { api } from "../../../lib/apiHelper"; import { getActiveLoadingOrders } from "../../../lib/queries/getActiveDockScanners"; import { getActiveDockScanners } from "../../../lib/queries/getActiveLoadingOrders"; -import { finishLoadingOrder} from './index' -import { api } from "../../../lib/apiHelper"; -import { toast } from "sonner"; +import { finishLoadingOrder } from "./index"; export const Route = createFileRoute("/warehouse/dockdoorscanning/$dock")({ component: RouteComponent, }); -export const startOrder = async (loadingOrder: string, dockId: string, refetch:any, refetchActiveLoading:any) => { - +export const startOrder = async ( + loadingOrder: string, + dockId: string, + refetch: any, + refetchActiveLoading: any, +) => { try { - const res = await api.post("/dockDoor/startLoad", { - "loadingOrder":String(loadingOrder), - "dockId":dockId -},{validateStatus: (status) => status < 500,}) + const res = await api.post( + "/dockDoor/startLoad", + { + loadingOrder: String(loadingOrder), + dockId: dockId, + }, + { validateStatus: (status) => status < 500 }, + ); -if (!res.data.success) { - toast.error(res.data.message) - refetch() - refetchActiveLoading() - return -} -toast.success(res.data.message) -refetch() - refetchActiveLoading() + if (!res.data.success) { + toast.error(res.data.message); + refetch(); + refetchActiveLoading(); + return; + } + toast.success(res.data.message); + refetch(); + refetchActiveLoading(); } catch (error) { - console.log(error) - toast.error(`Encountered error: ${JSON.stringify(error)}`) + console.log(error); + toast.error(`Encountered error: ${JSON.stringify(error)}`); } - -} +}; function RouteComponent() { const { dock } = Route.useParams(); const { data, refetch } = useSuspenseQuery(getActiveDockScanners()); - const { data: loadingPlanItems, refetch: refetchActiveLoading } = useSuspenseQuery(getActiveLoadingOrders()); + const { data: loadingPlanItems, refetch: refetchActiveLoading } = + useSuspenseQuery(getActiveLoadingOrders()); + const navigate = useNavigate(); const dockData = data.filter((i: any) => i.dockId === dock); const loadingPlans = loadingPlanItems.filter( (l: any) => l.dockId === Number(dock), ); - console.log(dockData[0].currentLoadingOrder === ""); + return (

Please select an active loading order for {dockData[0].name}

- {loadingPlans && - loadingPlans.length > 0 && - loadingPlans.map((i: any) => { - return ( - - - Loading order ID: {i.id}{" "} -

- Loading Date: {format(i.loadingDate, "MM/dd/yyyy HH:mm")} -

-
- -

- Below are the loading order details please validate the - loading order you are selecting before pressing start. -

-
- {/* Mapping the items out so in case we have more than 1 it will display correctly */} - - {i?.loadingPlanItems?.map((l: any) => { - return ( -
-

Loading Sequence {l.loadingSequence}

-

- Article: {l.articleId} - {l.articleDescription} -

-

- Current loaded: {l.loadedQuantityLUs}/ - {l.plannedQuantityLUs} -

- {l.remark !== "" &&

Remark: {l.remark}

} + {loadingPlans && loadingPlans.length > 0 ? ( +
+ {loadingPlans.map((i: any) => { + return ( + + + Loading order ID: {i.id}{" "} +

+ Loading Date: {format(i.loadingDate, "MM/dd/yyyy HH:mm")} +

+
+ +

+ Below are the loading order details please validate the + loading order you are selecting before pressing start. +

+
+ {/* Mapping the items out so in case we have more than 1 it will display correctly */} + + {i?.loadingPlanItems?.map((l: any) => { + return ( +
+

Loading Sequence {l.loadingSequence}

+

+ Article: {l.articleId} - {l.articleDescription} +

+

+ Current loaded: {l.loadedQuantityLUs}/ + {l.plannedQuantityLUs} +

+ {l.remark !== "" &&

Remark: {l.remark}

} - {i?.loadingPlanItems.length > 1 && ( - - )} -
- ); - })} -
- -
- - - -
-
-
- ); - })} + {i?.loadingPlanItems.length > 1 && ( + + )} +
+ ); + })} + + +
+ + + +
+
+ + ); + })} +
+ ) : ( +
+

There are know loading orders currently active.

+

+ Head over to Outbound deliveries to create a loading order to + start the flow +

+
+ )}
); diff --git a/frontend/src/routes/warehouse/dockdoorscanning/$dockScans.tsx b/frontend/src/routes/warehouse/dockdoorscanning/$dockScans.tsx deleted file mode 100644 index 671cbd4..0000000 --- a/frontend/src/routes/warehouse/dockdoorscanning/$dockScans.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { createFileRoute } from "@tanstack/react-router"; - -export const Route = createFileRoute("/warehouse/dockdoorscanning/$dockScans")({ - component: RouteComponent, -}); - -function RouteComponent() { - const { dockScans } = Route.useParams(); - return
Hello "/warehouse/dockdoorscanning/$docScans"! {dockScans}
; -} diff --git a/frontend/src/routes/warehouse/dockdoorscanning/index.tsx b/frontend/src/routes/warehouse/dockdoorscanning/index.tsx index bcc7736..02708dd 100644 --- a/frontend/src/routes/warehouse/dockdoorscanning/index.tsx +++ b/frontend/src/routes/warehouse/dockdoorscanning/index.tsx @@ -1,43 +1,58 @@ import { useSuspenseQuery } from "@tanstack/react-query"; -import { createFileRoute, useNavigate } from "@tanstack/react-router"; -import { Card, CardContent, CardDescription, CardHeader } from "../../../components/ui/card"; +import { createFileRoute, Link, useNavigate } from "@tanstack/react-router"; +import { toast } from "sonner"; +import { Button } from "../../../components/ui/button"; +import { + Card, + CardContent, + CardDescription, + CardHeader, +} from "../../../components/ui/card"; +import { api } from "../../../lib/apiHelper"; import { getActiveLoadingOrders } from "../../../lib/queries/getActiveDockScanners"; import { getActiveDockScanners } from "../../../lib/queries/getActiveLoadingOrders"; -import { Button } from "../../../components/ui/button"; -import { api } from "../../../lib/apiHelper"; -import { toast } from "sonner"; export const Route = createFileRoute("/warehouse/dockdoorscanning/")({ component: RouteComponent, }); -export const finishLoadingOrder = async (loadingOrder: string, dockId: string, refetch:any, refetchActiveLoading:any) => { - +export const finishLoadingOrder = async ( + loadingOrder: string, + dockId: string, + refetch: any, + refetchActiveLoading: any, +) => { try { - const res = await api.post("/dockDoor/finishOrder", { - "loadingOrder":loadingOrder, - "dockId":dockId -},{validateStatus: (status) => status < 500,}) + const res = await api.post( + "/dockDoor/finishOrder", + { + loadingOrder: loadingOrder, + dockId: dockId, + }, + { validateStatus: (status) => status < 500 }, + ); -if (!res.data.success) { - toast.error(res.data.message) - refetch() - refetchActiveLoading() - return -} -toast.info(res.data.message) -refetch() - refetchActiveLoading() + if (!res.data.success) { + toast.error(res.data.message); + refetch(); + refetchActiveLoading(); + return; + } + toast.info(res.data.message); + refetch(); + refetchActiveLoading(); } catch (error) { - console.log(error) - toast.error(`Encountered error: ${JSON.stringify(error)}`) + console.log(error); + toast.error(`Encountered error: ${JSON.stringify(error)}`); } - -} +}; function RouteComponent() { - const { data, isLoading, refetch } = useSuspenseQuery(getActiveDockScanners()); - const { data: loadingPlanItems, refetch : refetchActiveLoading } = useSuspenseQuery(getActiveLoadingOrders()); + const { data, isLoading, refetch } = useSuspenseQuery( + getActiveDockScanners(), + ); + const { data: loadingPlanItems, refetch: refetchActiveLoading } = + useSuspenseQuery(getActiveLoadingOrders()); const navigate = useNavigate(); if (isLoading) { @@ -47,6 +62,7 @@ function RouteComponent() { ); } + return (
@@ -64,8 +80,8 @@ function RouteComponent() { (x: any) => x.id === Number(i.currentLoadingOrder), ) : []; - - + console.log(loadingPlan); + console.log(loadingPlanItems); return ( {i.name} - For Abbott loads reminder: 3 lots per load max. + + For Abbott loads reminder: 3 lots per load max. + {i.currentLoadingOrder !== "" ? (
Current loading order: {i.currentLoadingOrder}
- -
- - {loadingPlan && loadingPlan.length !== 0 ? (<> - -

{`${loadingPlan[0].loadingPlanItems[0].articleId} - ${loadingPlan[0].loadingPlanItems[0].articleDescription}`}

- -

Current Loaded :{" "} - {loadingPlan[0].loadingPlanItems[0].loadedQuantityLUs} /{" "} - {loadingPlan[0].loadingPlanItems[0].plannedQuantityLUs}

- ): <>

The Current Loading order is invalid

-

It appears it could have been finished via another process

-
-
}
+
+ {loadingPlan && loadingPlan.length !== 0 ? ( + <> +

{`${loadingPlan[0].loadingPlanItems[0].articleId} - ${loadingPlan[0].loadingPlanItems[0].articleDescription}`}

+

+ Current Loaded :{" "} + { + loadingPlan[0].loadingPlanItems[0] + .loadedQuantityLUs + }{" "} + /{" "} + { + loadingPlan[0].loadingPlanItems[0] + .plannedQuantityLUs + } +

+ Check Scans:{" "} + + CLICK HERE + + + ) : ( + <> +

The Current Loading order is invalid

+

+ {" "} + It appears it could have been finished via another + process +

+
+ +
+ + )} +
) : ( diff --git a/frontend/src/routes/warehouse/dockdoorscanning/scans/$dockScans.tsx b/frontend/src/routes/warehouse/dockdoorscanning/scans/$dockScans.tsx new file mode 100644 index 0000000..16c1a1d --- /dev/null +++ b/frontend/src/routes/warehouse/dockdoorscanning/scans/$dockScans.tsx @@ -0,0 +1,198 @@ +import { useSuspenseQuery } from "@tanstack/react-query"; +import { createFileRoute } from "@tanstack/react-router"; +import { createColumnHelper } from "@tanstack/react-table"; +import { formatInTimeZone } from "date-fns-tz"; +import { toast } from "sonner"; +import { Button } from "../../../../components/ui/button"; +import { useSocketRoom } from "../../../../hooks/socket.io.hook"; +import { api } from "../../../../lib/apiHelper"; +import { useAppForm } from "../../../../lib/formSutff"; +import { getActiveLoadingOrders } from "../../../../lib/queries/getActiveDockScanners"; +import { getActiveDockScanners } from "../../../../lib/queries/getActiveLoadingOrders"; +import LstTable from "../../../../lib/tableStuff/LstTable"; +import SearchableHeader from "../../../../lib/tableStuff/SearchableHeader"; +import { finishLoadingOrder } from ".."; + +export const Route = createFileRoute( + "/warehouse/dockdoorscanning/scans/$dockScans", +)({ + component: RouteComponent, +}); + +function RouteComponent() { + const { dockScans } = Route.useParams(); + const { data: logs, clearRoom } = useSocketRoom( + `dockDoorLoading:${dockScans}`, + ); + const { data, refetch } = useSuspenseQuery(getActiveDockScanners()); + const { data: loadingPlanItems, refetch: refetchActiveLoading } = + useSuspenseQuery(getActiveLoadingOrders()); + const columnHelper = createColumnHelper(); + + const column = [ + columnHelper.accessor("loadingOrder", { + header: ({ column }) => ( + + ), + filterFn: "includesString", + cell: (i) => i.getValue(), + }), + columnHelper.accessor("loadingUnit", { + header: ({ column }) => ( + + ), + filterFn: "includesString", + cell: (i) => i.getValue(), + }), + columnHelper.accessor("loadingUnitStatus", { + header: ({ column }) => ( + + ), + filterFn: "includesString", + cell: (i) => i.getValue(), + }), + columnHelper.accessor("message", { + header: ({ column }) => ( + + ), + filterFn: "includesString", + cell: (i) => i.getValue(), + }), + columnHelper.accessor("upd_date", { + header: ({ column }) => ( + + ), + filterFn: "includesString", + cell: (i) => { + function isDateValid(date: any) { + return date instanceof Date && !isNaN(date.getTime()); + } + + const trueDate = isDateValid(new Date(i.getValue())) + ? formatInTimeZone( + i.getValue(), + `${window.LST_CONFIG?.timezone}`, + "MM/dd/yyyy HH:mm:ss", + ) + : "invalid time"; + + return {trueDate}; + }, + }), + columnHelper.accessor("status", { + header: ({ column }) => ( + + ), + filterFn: "includesString", + cell: (i) => i.getValue(), + }), + ]; + + const form = useAppForm({ + defaultValues: { + runningNo: "", + dockId: data[0].dockId, + }, + onSubmit: async ({ value }) => { + try { + const res = await api.post("/dockDoor/loadUnit", value, { + validateStatus: (status) => status < 500, + }); + + refetchActiveLoading(); + form.reset(); + if (!res.data.success) { + toast.error(res.data.data.message); + return; + } + + toast.success(res.data.message); + } catch (error) { + console.log(error); + } + }, + }); + + const loadingPlan = + data[0].currentLoadingOrder !== "" + ? loadingPlanItems.filter( + (x: any) => x.id === Number(data[0].currentLoadingOrder), + ) + : []; + return ( +
+
+

+ You are monitoring scans for {data[0].name} +

+ +

+ Current load status:{" "} + {loadingPlan && loadingPlan.length !== 0 ? ( + + {loadingPlan[0].loadingPlanItems[0].loadedQuantityLUs} /{" "} + {loadingPlan[0].loadingPlanItems[0].plannedQuantityLUs} + + ) : ( + "No active loading orders + )} +

+
+
+
+
{ + e.preventDefault(); + form.handleSubmit(); + }} + > +
+
+ + {(field) => ( + + )} + +
+
+ + Submit + +
+
+
+
+ +
+ + +
+
+
+ +
+
+ ); +} diff --git a/migrations/0062_square_harrier.sql b/migrations/0062_square_harrier.sql new file mode 100644 index 0000000..4fbfa65 --- /dev/null +++ b/migrations/0062_square_harrier.sql @@ -0,0 +1 @@ +ALTER TABLE "dock_door_scans" DROP CONSTRAINT "dock_door_scans_loading_Unit_unique"; \ No newline at end of file diff --git a/migrations/meta/0062_snapshot.json b/migrations/meta/0062_snapshot.json new file mode 100644 index 0000000..bd39dec --- /dev/null +++ b/migrations/meta/0062_snapshot.json @@ -0,0 +1,2689 @@ +{ + "id": "3c1e6107-9afd-4186-ac57-31c5ae782d2b", + "prevId": "c1c9697e-9296-4fb1-8bfe-a80ec8a45e54", + "version": "7", + "dialect": "postgresql", + "tables": { + "public.alpla_purchase_history": { + "name": "alpla_purchase_history", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "apo": { + "name": "apo", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "revision": { + "name": "revision", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "confirmed": { + "name": "confirmed", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "status": { + "name": "status", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "status_text": { + "name": "status_text", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "journal_num": { + "name": "journal_num", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "add_date": { + "name": "add_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "add_user": { + "name": "add_user", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "upd_user": { + "name": "upd_user", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "upd_date": { + "name": "upd_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "remark": { + "name": "remark", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "approved_status": { + "name": "approved_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'new'" + }, + "position": { + "name": "position", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.analytics": { + "name": "analytics", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "method": { + "name": "method", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "route_pattern": { + "name": "route_pattern", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "actual_path": { + "name": "actual_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "status_code": { + "name": "status_code", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "duration_ms": { + "name": "duration_ms", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "module": { + "name": "module", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "user_id": { + "name": "user_id", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "user_email": { + "name": "user_email", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "ip_address": { + "name": "ip_address", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "user_agent": { + "name": "user_agent", + "type": "text", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.job_audit_log": { + "name": "job_audit_log", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "job_name": { + "name": "job_name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "start_at": { + "name": "start_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "finished_at": { + "name": "finished_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false + }, + "duration_ms": { + "name": "duration_ms", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "error_message": { + "name": "error_message", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "error_stack": { + "name": "error_stack", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "meta_data": { + "name": "meta_data", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "idx_job_audit_logs_cleanup": { + "name": "idx_job_audit_logs_cleanup", + "columns": [ + { + "expression": "start_at", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.account": { + "name": "account", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true + }, + "account_id": { + "name": "account_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "provider_id": { + "name": "provider_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "access_token": { + "name": "access_token", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "refresh_token": { + "name": "refresh_token", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "id_token": { + "name": "id_token", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "access_token_expires_at": { + "name": "access_token_expires_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "refresh_token_expires_at": { + "name": "refresh_token_expires_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "scope": { + "name": "scope", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "password": { + "name": "password", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "account_userId_idx": { + "name": "account_userId_idx", + "columns": [ + { + "expression": "user_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "account_user_id_user_id_fk": { + "name": "account_user_id_user_id_fk", + "tableFrom": "account", + "tableTo": "user", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.apikey": { + "name": "apikey", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "start": { + "name": "start", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "prefix": { + "name": "prefix", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "key": { + "name": "key", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "refill_interval": { + "name": "refill_interval", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "refill_amount": { + "name": "refill_amount", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "last_refill_at": { + "name": "last_refill_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "enabled": { + "name": "enabled", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": true + }, + "rate_limit_enabled": { + "name": "rate_limit_enabled", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": true + }, + "rate_limit_time_window": { + "name": "rate_limit_time_window", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 86400000 + }, + "rate_limit_max": { + "name": "rate_limit_max", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 10 + }, + "request_count": { + "name": "request_count", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "remaining": { + "name": "remaining", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "last_request": { + "name": "last_request", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "expires_at": { + "name": "expires_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "permissions": { + "name": "permissions", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "metadata": { + "name": "metadata", + "type": "text", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "apikey_key_idx": { + "name": "apikey_key_idx", + "columns": [ + { + "expression": "key", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "apikey_userId_idx": { + "name": "apikey_userId_idx", + "columns": [ + { + "expression": "user_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "apikey_user_id_user_id_fk": { + "name": "apikey_user_id_user_id_fk", + "tableFrom": "apikey", + "tableTo": "user", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.jwks": { + "name": "jwks", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true + }, + "public_key": { + "name": "public_key", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "private_key": { + "name": "private_key", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "expires_at": { + "name": "expires_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.session": { + "name": "session", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true + }, + "expires_at": { + "name": "expires_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "token": { + "name": "token", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "ip_address": { + "name": "ip_address", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "user_agent": { + "name": "user_agent", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "user_id": { + "name": "user_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "impersonated_by": { + "name": "impersonated_by", + "type": "text", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "session_userId_idx": { + "name": "session_userId_idx", + "columns": [ + { + "expression": "user_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "session_user_id_user_id_fk": { + "name": "session_user_id_user_id_fk", + "tableFrom": "session", + "tableTo": "user", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "session_token_unique": { + "name": "session_token_unique", + "nullsNotDistinct": false, + "columns": [ + "token" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user": { + "name": "user", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "email_verified": { + "name": "email_verified", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "image": { + "name": "image", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "role": { + "name": "role", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "banned": { + "name": "banned", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "ban_reason": { + "name": "ban_reason", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "ban_expires": { + "name": "ban_expires", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "username": { + "name": "username", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "display_username": { + "name": "display_username", + "type": "text", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "user_email_unique": { + "name": "user_email_unique", + "nullsNotDistinct": false, + "columns": [ + "email" + ] + }, + "user_username_unique": { + "name": "user_username_unique", + "nullsNotDistinct": false, + "columns": [ + "username" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.verification": { + "name": "verification", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true + }, + "identifier": { + "name": "identifier", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "expires_at": { + "name": "expires_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "verification_identifier_idx": { + "name": "verification_identifier_idx", + "columns": [ + { + "expression": "identifier", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.deployment_history": { + "name": "deployment_history", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "server_id": { + "name": "server_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "build_number": { + "name": "build_number", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "message": { + "name": "message", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.analytics_daily": { + "name": "analytics_daily", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "business_date": { + "name": "business_date", + "type": "date", + "primaryKey": false, + "notNull": true + }, + "method": { + "name": "method", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "route_pattern": { + "name": "route_pattern", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "module": { + "name": "module", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "total_hits": { + "name": "total_hits", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "unique_users": { + "name": "unique_users", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "success_count": { + "name": "success_count", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "error_count": { + "name": "error_count", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "avg_duration_ms": { + "name": "avg_duration_ms", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "max_duration_ms": { + "name": "max_duration_ms", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "first_hit_at": { + "name": "first_hit_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true + }, + "last_hit_at": { + "name": "last_hit_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "analytics_daily_business_route_unique": { + "name": "analytics_daily_business_route_unique", + "nullsNotDistinct": false, + "columns": [ + "business_date", + "method", + "route_pattern", + "module" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.datamart": { + "name": "datamart", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "query": { + "name": "query", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "version": { + "name": "version", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "active": { + "name": "active", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": true + }, + "options": { + "name": "options", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "''" + }, + "public_access": { + "name": "public_access", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "add_date": { + "name": "add_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "add_user": { + "name": "add_user", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'lst-system'" + }, + "upd_date": { + "name": "upd_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "upd_user": { + "name": "upd_user", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'lst-system'" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "datamart_name_unique": { + "name": "datamart_name_unique", + "nullsNotDistinct": false, + "columns": [ + "name" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.dock_door_scans": { + "name": "dock_door_scans", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "dock_id": { + "name": "dock_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "loading_order": { + "name": "loading_order", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "loading_Unit": { + "name": "loading_Unit", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "loading_unit_status": { + "name": "loading_unit_status", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'loaded'" + }, + "message": { + "name": "message", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'active'" + }, + "add_date": { + "name": "add_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "add_user": { + "name": "add_user", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'lst-system'" + }, + "upd_date": { + "name": "upd_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "upd_user": { + "name": "upd_user", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'lst-system'" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.dock_door_scanners": { + "name": "dock_door_scanners", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "ip": { + "name": "ip", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "dock_id": { + "name": "dock_id", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "active": { + "name": "active", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": true + }, + "current_loading_order": { + "name": "current_loading_order", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "''" + }, + "add_date": { + "name": "add_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "add_user": { + "name": "add_user", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'lst-system'" + }, + "upd_date": { + "name": "upd_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "upd_user": { + "name": "upd_user", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'lst-system'" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "dock_door_scanners_name_unique": { + "name": "dock_door_scanners_name_unique", + "nullsNotDistinct": false, + "columns": [ + "name" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.inv_historical_data": { + "name": "inv_historical_data", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "hist_date": { + "name": "hist_date", + "type": "date", + "primaryKey": false, + "notNull": true + }, + "plant_token": { + "name": "plant_token", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "article": { + "name": "article", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "article_description": { + "name": "article_description", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "material_type": { + "name": "material_type", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "total_QTY": { + "name": "total_QTY", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "available_QTY": { + "name": "available_QTY", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "coa_QTY": { + "name": "coa_QTY", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "held_QTY": { + "name": "held_QTY", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "consignment_qty": { + "name": "consignment_qty", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "lot_number": { + "name": "lot_number", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "location_id": { + "name": "location_id", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "location": { + "name": "location", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "whse_id": { + "name": "whse_id", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "''" + }, + "whse_name": { + "name": "whse_name", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'missing whseName'" + }, + "upd_user": { + "name": "upd_user", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'lst-system'" + }, + "upd_date": { + "name": "upd_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.logs": { + "name": "logs", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "level": { + "name": "level", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "module": { + "name": "module", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "subModule": { + "name": "subModule", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "message": { + "name": "message", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "stack": { + "name": "stack", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "checked": { + "name": "checked", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "hostname": { + "name": "hostname", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.notifications": { + "name": "notifications", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "active": { + "name": "active", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "interval": { + "name": "interval", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'5'" + }, + "options": { + "name": "options", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + } + }, + "indexes": { + "notify_name": { + "name": "notify_name", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.notification_sub": { + "name": "notification_sub", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "user_id": { + "name": "user_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "notification_id": { + "name": "notification_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "emails": { + "name": "emails", + "type": "text[]", + "primaryKey": false, + "notNull": false, + "default": "'{}'" + } + }, + "indexes": {}, + "foreignKeys": { + "notification_sub_user_id_user_id_fk": { + "name": "notification_sub_user_id_user_id_fk", + "tableFrom": "notification_sub", + "tableTo": "user", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "notification_sub_notification_id_notifications_id_fk": { + "name": "notification_sub_notification_id_notifications_id_fk", + "tableFrom": "notification_sub", + "tableTo": "notifications", + "columnsFrom": [ + "notification_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "notification_sub_user_notification_unique": { + "name": "notification_sub_user_notification_unique", + "nullsNotDistinct": false, + "columns": [ + "user_id", + "notification_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.opendock_apt": { + "name": "opendock_apt", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "release": { + "name": "release", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "open_dock_apt_id": { + "name": "open_dock_apt_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "appointment": { + "name": "appointment", + "type": "jsonb", + "primaryKey": false, + "notNull": true, + "default": "'[]'::jsonb" + }, + "upd_date": { + "name": "upd_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "opendock_apt_opendock_id_idx": { + "name": "opendock_apt_opendock_id_idx", + "columns": [ + { + "expression": "open_dock_apt_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "opendock_apt_release_unique": { + "name": "opendock_apt_release_unique", + "nullsNotDistinct": false, + "columns": [ + "release" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.opendock_article_setup": { + "name": "opendock_article_setup", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "av": { + "name": "av", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "customer": { + "name": "customer", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "customer_description": { + "name": "customer_description", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "load_type": { + "name": "load_type", + "type": "load_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'drop'" + }, + "dock": { + "name": "dock", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "upd_date": { + "name": "upd_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "upd_user": { + "name": "upd_user", + "type": "text", + "primaryKey": false, + "notNull": true, + "default": "'lst-system'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "add_user": { + "name": "add_user", + "type": "text", + "primaryKey": false, + "notNull": true, + "default": "'lst-system'" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "uq_opendock_article_setup_av_customer": { + "name": "uq_opendock_article_setup_av_customer", + "nullsNotDistinct": false, + "columns": [ + "av", + "customer" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.opendock_dock_setup": { + "name": "opendock_dock_setup", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "dock_id": { + "name": "dock_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "upd_date": { + "name": "upd_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "upd_user": { + "name": "upd_user", + "type": "text", + "primaryKey": false, + "notNull": true, + "default": "'lst-system'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "add_user": { + "name": "add_user", + "type": "text", + "primaryKey": false, + "notNull": true, + "default": "'lst-system'" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.printer_log": { + "name": "printer_log", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "printer_log_id_seq", + "schema": "public", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "printer_sn": { + "name": "printer_sn", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "condition": { + "name": "condition", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "message": { + "name": "message", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.printer_data": { + "name": "printer_data", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "humanReadable_id": { + "name": "humanReadable_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "ipAddress": { + "name": "ipAddress", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "port": { + "name": "port", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "statusText": { + "name": "statusText", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "printer_sn": { + "name": "printer_sn", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "last_time_printed": { + "name": "last_time_printed", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "assigned": { + "name": "assigned", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "remark": { + "name": "remark", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "printDelay": { + "name": "printDelay", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 90 + }, + "processes": { + "name": "processes", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "print_delay_override": { + "name": "print_delay_override", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "add_Date": { + "name": "add_Date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "upd_date": { + "name": "upd_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "printer_id": { + "name": "printer_id", + "columns": [ + { + "expression": "humanReadable_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "printer_data_humanReadable_id_unique": { + "name": "printer_data_humanReadable_id_unique", + "nullsNotDistinct": false, + "columns": [ + "humanReadable_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.scan_log": { + "name": "scan_log", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "user": { + "name": "user", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "scanner_id": { + "name": "scanner_id", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "message": { + "name": "message", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "prompt": { + "name": "prompt", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "command_description": { + "name": "command_description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "running_number": { + "name": "running_number", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'0'" + }, + "status": { + "name": "status", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "scanner_version": { + "name": "scanner_version", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'0'" + }, + "lines": { + "name": "lines", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "add_date": { + "name": "add_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.scan_users": { + "name": "scan_users", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "scanner_id": { + "name": "scanner_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "pin_number": { + "name": "pin_number", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "pin_hash": { + "name": "pin_hash", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "excluded_commands": { + "name": "excluded_commands", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "role": { + "name": "role", + "type": "mobile_role", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'user'" + }, + "active": { + "name": "active", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": true + }, + "last_scan": { + "name": "last_scan", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "add_Date": { + "name": "add_Date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "upd_date": { + "name": "upd_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "scan_users_scanner_id_unique": { + "name": "scan_users_scanner_id_unique", + "nullsNotDistinct": false, + "columns": [ + "scanner_id" + ] + }, + "scan_users_pin_number_unique": { + "name": "scan_users_pin_number_unique", + "nullsNotDistinct": false, + "columns": [ + "pin_number" + ] + }, + "scan_user_unique": { + "name": "scan_user_unique", + "nullsNotDistinct": false, + "columns": [ + "scanner_id", + "pin_number" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.server_data": { + "name": "server_data", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "server": { + "name": "server", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "plant_token": { + "name": "plant_token", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id_address": { + "name": "id_address", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "great_plains_plant_code": { + "name": "great_plains_plant_code", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "contact_email": { + "name": "contact_email", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "contact_phone": { + "name": "contact_phone", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "active": { + "name": "active", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": true + }, + "server_loc": { + "name": "server_loc", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "last_updated": { + "name": "last_updated", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "build_number": { + "name": "build_number", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "is_upgrading": { + "name": "is_upgrading", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "server_data_plant_token_unique": { + "name": "server_data_plant_token_unique", + "nullsNotDistinct": false, + "columns": [ + "plant_token" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.settings": { + "name": "settings", + "schema": "", + "columns": { + "settings_id": { + "name": "settings_id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "moduleName": { + "name": "moduleName", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "active": { + "name": "active", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": true + }, + "roles": { + "name": "roles", + "type": "jsonb", + "primaryKey": false, + "notNull": true, + "default": "'[\"systemAdmin\"]'::jsonb" + }, + "settingType": { + "name": "settingType", + "type": "setting_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": false + }, + "seed_version": { + "name": "seed_version", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 1 + }, + "add_User": { + "name": "add_User", + "type": "text", + "primaryKey": false, + "notNull": true, + "default": "'LST_System'" + }, + "add_Date": { + "name": "add_Date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "upd_User": { + "name": "upd_User", + "type": "text", + "primaryKey": false, + "notNull": true, + "default": "'LST_System'" + }, + "upd_date": { + "name": "upd_date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "settings_name_unique": { + "name": "settings_name_unique", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.app_stats": { + "name": "app_stats", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true, + "default": "'primary'" + }, + "current_build": { + "name": "current_build", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "last_build_at": { + "name": "last_build_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false + }, + "last_deploy_at": { + "name": "last_deploy_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false + }, + "building": { + "name": "building", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "updating": { + "name": "updating", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "last_updated": { + "name": "last_updated", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "meta": { + "name": "meta", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'{}'::jsonb" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "public.load_type": { + "name": "load_type", + "schema": "public", + "values": [ + "drop", + "live" + ] + }, + "public.mobile_role": { + "name": "mobile_role", + "schema": "public", + "values": [ + "user", + "lead", + "manager", + "admin" + ] + }, + "public.setting_type": { + "name": "setting_type", + "schema": "public", + "values": [ + "feature", + "system", + "standard" + ] + } + }, + "schemas": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/migrations/meta/_journal.json b/migrations/meta/_journal.json index 05423c7..4c71a88 100644 --- a/migrations/meta/_journal.json +++ b/migrations/meta/_journal.json @@ -435,6 +435,13 @@ "when": 1780692629119, "tag": "0061_wide_marrow", "breakpoints": true + }, + { + "idx": 62, + "version": "7", + "when": 1781009330205, + "tag": "0062_square_harrier", + "breakpoints": true } ] } \ No newline at end of file