PluginProbe
Yatra – Travel Booking & Tour Operator Software / trunk
Yatra – Travel Booking & Tour Operator Software vtrunk
3.0.14 3.0.14.1 3.0.14.2 3.0.12 3.0.13 3.0.11 3.0.10 3.0.9 3.0.8 3.0.7 3.0.6 3.0.5 3.0.5.1 3.0.4 3.0.3 3.0.2.9 3.0.2.7 3.0.2.8 3.0.2.6 trunk 1.0.0 2.0.0 2.0.1 2.0.10 2.0.11 All 82 releases
← All changes | app/Scripts/DepartureCapacitySyncScript.php +1 -1 3.0.7trunk View file →
@@ -41,9 +41,9 @@
41 41 foreach ($allDepartures as $departure) {
42 42 $date = $departure->start_date ?: $departure->date;
43 43
44 44 // Get correct capacity from availability
45 - $correctCapacity = $this->capacityService->getCapacityForDate($departure->trip_id, $date);
45 + $correctCapacity = $this->capacityService->getCapacityForDate($departure->trip_id, $date, $departure->time ?? null);
46 46
47 47 // Only update if capacity is different and correct capacity > 0
48 48 if ($correctCapacity > 0 && $departure->max_capacity !== $correctCapacity) {
49 49 $updated = $this->departureRepository->update($departure->id, [