cqp 22 jam lalu
induk
melakukan
da7f5e1eac
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  1. 2 2
      app/Service/ItemService.php

+ 2 - 2
app/Service/ItemService.php

@@ -2538,11 +2538,11 @@ class ItemService extends Service
             $time = time();
 
             ItemNodeMission::where('del_time',0)
-                ->whereIn('id',$data['id'])
+                ->where('id',$data['id'])
                 ->update(['del_time' => $time]);
 
             ItemNodeMissionDetails::where('del_time',0)
-                ->whereIn('item_node_mission_id', $data['id'])
+                ->where('item_node_mission_id', $data['id'])
                 ->update(['del_time' => $time]);
 
             DB::commit();