Update gold rate naming convention in FetchGoldRates job

- Changed the abbreviation for "22AYARBILEZIK" from "YIB" to "YIA" to improve clarity and consistency in the naming convention for gold rates.

This change enhances the accuracy of the data representation in the FetchGoldRates job within the Truncgil Finance application.
This commit is contained in:
Ümit Tunç
2025-04-22 10:36:45 +03:00
parent 6ddf932bea
commit 41eaf7c6df
+1 -1
View File
@@ -65,7 +65,7 @@ class FetchGoldRates implements ShouldQueue
// Kısaltma işlemleri // Kısaltma işlemleri
$nameGold = str_replace("14AYARBILEZIK", "ODB", $nameGold); $nameGold = str_replace("14AYARBILEZIK", "ODB", $nameGold);
$nameGold = str_replace("18AYARBILEZIK", "OSB", $nameGold); $nameGold = str_replace("18AYARBILEZIK", "OSB", $nameGold);
$nameGold = str_replace("22AYARBILEZIK", "YIB", $nameGold); $nameGold = str_replace("22AYARBILEZIK", "YIA", $nameGold);
$nameGold = str_replace("GRAMALTIN", "GRA", $nameGold); $nameGold = str_replace("GRAMALTIN", "GRA", $nameGold);
$nameGold = str_replace("GRAMPLATIN", "GPL", $nameGold); $nameGold = str_replace("GRAMPLATIN", "GPL", $nameGold);
$nameGold = str_replace("GRAMHASALTIN", "HAS", $nameGold); $nameGold = str_replace("GRAMHASALTIN", "HAS", $nameGold);