From afc41f20a5f05d23b4a781df6f4b76842075473f Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Wed, 12 Aug 2026 16:38:02 +0530 Subject: [PATCH] corrected logic in sticker print page --- app/Filament/Pages/StickerPrint.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Filament/Pages/StickerPrint.php b/app/Filament/Pages/StickerPrint.php index e8e3d93..f909a98 100644 --- a/app/Filament/Pages/StickerPrint.php +++ b/app/Filament/Pages/StickerPrint.php @@ -318,7 +318,7 @@ class StickerPrint extends Page implements HasForms $itemI = $item->id; $mapping = StickerMappingMaster::where('plant_id', $plantId) - ->where('machine_id', $workCenter) + ->where('sticker1_machine_id', $workCenter) ->where('item_characteristic_id', $itemI) ->first();