PluginProbe
Yatra – Travel Booking & Tour Operator Software / trunk
Yatra – Travel Booking & Tour Operator Software vtrunk
3.0.15 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 All 83 releases
← All changes | app/Controllers/EnquiryController.php +4 -0 3.0.14.2trunk View file →
@@ -292,8 +292,12 @@
292 292 case 'mark_completed':
293 293 $result = $this->enquiryService->bulkUpdateStatus($ids, 'completed');
294 294 break;
295 295
296 + case 'mark_closed':
297 + $result = $this->enquiryService->bulkUpdateStatus($ids, 'closed');
298 + break;
299 +
296 300 case 'mark_spam':
297 301 $result = $this->enquiryService->bulkUpdateStatus($ids, 'spam');
298 302 break;
299 303