refactor(ocme): picked up per location now vs picked up all

This commit is contained in:
2025-06-16 18:30:55 -05:00
parent 90be86d972
commit 37f2518589
2 changed files with 3 additions and 1 deletions

View File

@@ -17,6 +17,8 @@ export const pickedup = async (data: any) => {
};
}
console.log(data);
if (data.areaFrom) {
try {
const updateRn = await db

View File

@@ -49,6 +49,6 @@ export const palletSendTag = async (tagData: any) => {
Date.now() - tagTime <= 5000 &&
!tagData.value
) {
await pickedup({ runningNr: 1234, all: true, areaFrom: "wrapper1" });
await pickedup({ runningNr: 1234, all: true, areaFrom: "wrapper_1" });
}
};