Update: 2026-07-06 03:45:17
This commit is contained in:
@@ -8,10 +8,7 @@ $country = filterRequest('country') ?: filterRequest('country_code');
|
||||
$distance = (float)(filterRequest('distance') ?: 0);
|
||||
$siroPrice = (float)(filterRequest('siro_price') ?: 0);
|
||||
|
||||
file_put_contents('/tmp/competitor_debug.log', date('Y-m-d H:i:s') . " - Payload: lat=$lat, lng=$lng, country=$country, dist=$distance, price=$siroPrice\n", FILE_APPEND);
|
||||
|
||||
if (!$lat || !$lng || !$country) {
|
||||
file_put_contents('/tmp/competitor_debug.log', date('Y-m-d H:i:s') . " - Error: Missing params\n", FILE_APPEND);
|
||||
echo json_encode(["status" => "error", "message" => "Missing parameters"]);
|
||||
exit;
|
||||
}
|
||||
@@ -86,23 +83,7 @@ if ($competitorTotalPrice > 0 && $siroPrice < $competitorTotalPrice) {
|
||||
}
|
||||
|
||||
// Format the labels
|
||||
$compNameAr = match(strtolower($topComp)) {
|
||||
'careem' => 'كريم',
|
||||
'uber' => 'أوبر',
|
||||
'yallago' => 'يلا غو',
|
||||
'jenny' => 'جيني',
|
||||
'taxif' => 'تكسي إف',
|
||||
'com.taxif.passenger' => 'تكسي إف',
|
||||
'indrive' => 'إن درايف',
|
||||
'yango' => 'يانغو',
|
||||
'petra' => 'بترا رايد',
|
||||
'petra ride' => 'بترا رايد',
|
||||
'gojo' => 'جو جو',
|
||||
'didi' => 'ديدي',
|
||||
'zakin' => 'زاكن',
|
||||
'tofaddal'=> 'تفضل',
|
||||
default => $topComp
|
||||
};
|
||||
$compNameAr = 'التطبيقات الأخرى';
|
||||
|
||||
$savingsLabel = "أوفر بـ " . number_format($savingsPct, 1) . "% من $compNameAr ⚡";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user