From 78a5cfe089f0a69fe95bf73bf9a615d9e8278df8 Mon Sep 17 00:00:00 2001 From: csawatzky Date: Tue, 20 May 2025 10:22:59 -0600 Subject: [PATCH] adding hybrid inventory control option --- src/bin/BinSettings.tsx | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/bin/BinSettings.tsx b/src/bin/BinSettings.tsx index 6ae61c2..8cc58a3 100644 --- a/src/bin/BinSettings.tsx +++ b/src/bin/BinSettings.tsx @@ -866,6 +866,11 @@ export default function BinSettings(props: Props) { control={} label={"Auto (Lidar)"} /> + } + label={"Hybrid (Lidar)"} + /> {inventoryControl === pond.BinInventoryControl.BIN_INVENTORY_CONTROL_AUTOMATIC && @@ -876,7 +881,15 @@ export default function BinSettings(props: Props) { )} - {inventoryControl === pond.BinInventoryControl.BIN_INVENTORY_CONTROL_AUTOMATIC_LIDAR && + {inventoryControl === pond.BinInventoryControl.BIN_INVENTORY_CONTROL_HYBRID_LIDAR && ( + + + Hybrid control will submit a transaction that must be approved by the user before inventory is changed + + + )} + {(inventoryControl === pond.BinInventoryControl.BIN_INVENTORY_CONTROL_AUTOMATIC_LIDAR || + inventoryControl === pond.BinInventoryControl.BIN_INVENTORY_CONTROL_HYBRID_LIDAR) &&