Wie füge ich einen indischen Staat hinzu?


Antworten:


20

Führen Sie den folgenden Befehl in Ihrer Datenbank aus.

INSERT INTO `directory_country_region` VALUES
    (NULL , 'IN', 'AN','Andaman Nicobar'),
    (NULL , 'IN', 'AP','Andhra Pradesh'),
    (NULL , 'IN', 'AR','Arunachal Pradesh'),
    (NULL , 'IN', 'AS','Assam'),
    (NULL , 'IN', 'BH','Bihar'),
    (NULL , 'IN', 'CH','Chandigarh'),
    (NULL , 'IN', 'CG','Chhattisgarh'),
    (NULL , 'IN', 'DN','Dadra Nagar Haveli'),
    (NULL , 'IN', 'DD','Daman Diu'),
    (NULL , 'IN', 'DL','Delhi'),
    (NULL , 'IN', 'GA','Goa'),
    (NULL , 'IN', 'GJ','Gujarat'),
    (NULL , 'IN', 'HR','Haryana'),
    (NULL , 'IN', 'HP','Himachal Pradesh'),
    (NULL , 'IN', 'JK','Jammu Kashmir'),
    (NULL , 'IN', 'JH','Jharkhand'),
    (NULL , 'IN', 'KA','Karnataka'),
    (NULL , 'IN', 'KL','Kerala'),
    (NULL , 'IN', 'LD','Lakshadweep'),
    (NULL , 'IN', 'MP','Madhya Pradesh'),
    (NULL , 'IN', 'MH','Maharashtra'),
    (NULL , 'IN', 'MN','Manipur'),
    (NULL , 'IN', 'ML','Meghalaya'),
    (NULL , 'IN', 'MZ','Mizoram'),
    (NULL , 'IN', 'NL','Nagaland'),
    (NULL , 'IN', 'OR','Odisha'),
    (NULL , 'IN', 'PY','Pondicherry'),
    (NULL , 'IN', 'PB','Punjab'),
    (NULL , 'IN', 'RJ','Rajasthan'),
    (NULL , 'IN', 'SK','Sikkim'),
    (NULL , 'IN', 'TN','Tamil Nadu'),
    (NULL , 'IN', 'TG','Telangana'),
    (NULL , 'IN', 'TR','Tripura'),
    (NULL , 'IN', 'UP','Uttar Pradesh'),
    (NULL , 'IN', 'UT','Uttaranchal'),
    (NULL , 'IN', 'WB','West Bengal');

Meine Website ist zwei Jahre alt. Ich aktualisiere gerade den obigen Befehl, wenn ich zur Kasse gehe, für alle Benutzer, die nach dem ausgewählten Status fragen. Wir kennen jedoch den Kundenstatus. Wie kann ich den Status dem Kunden für 100.000 Kunden zuweisen?
Gem

13

Magento hat keine Regionen für ein paar Länder in seiner Region angegeben. Die meisten Länder haben keine eigenen Regionen / Bundesstaaten wie Indien, Nepal usw.

Schritt 1 :

Erstes Speichern von Magento region list at directory_country_region table: Fügen Sie also eine neue Region ein list on with respective country in this table: directory_country_region

Führen Sie die Abfrage aus

   INSERT INTO `directory_country_region` (`region_id`, `country_id`, `code`, `default_name`) VALUES
    (NULL, 'IN', 'ANDRA', 'Andra Pradesh'),
    (NULL, 'IN', 'ARUNA', 'Arunachal Pradesh'),
    (NULL, 'IN', 'ASSAM', 'Assam'),
    (NULL, 'IN', 'BIHAR', 'Bihar'),
    (NULL, 'IN', 'CHAND', 'Chandigarh'),
    (NULL, 'IN', 'CHHAT', 'Chhattisgarh'),
    (NULL, 'IN', 'DADAR', 'Dadar and Nagar Haveli'),
    (NULL, 'IN', 'DAMAN', 'Daman and Diu'),
    (NULL, 'IN', 'DELHI', 'Delhi'),
    (NULL, 'IN', 'GOA', 'Goa'),
    (NULL, 'IN', 'GUJAR', 'Gujarat'),
    (NULL, 'IN', 'HARYA', 'Haryana'),
    (NULL, 'IN', 'HP', 'Himachal Pradesh'),
    (NULL, 'IN', 'JK', 'Jammu and Kashmir'),
    (NULL, 'IN', 'JHARK', 'Jharkhand'),
    (NULL, 'IN', 'KARNA', 'Karnataka'),
    (NULL, 'IN', 'KERAL', 'Kerala'),
    (NULL, 'IN', 'LAKSH', 'Lakshadeep'),
    (NULL, 'IN', 'MP', 'Madya Pradesh'),
    (NULL, 'IN', 'MAHAR', 'Maharashtra'),
    (NULL, 'IN', 'MANIP', 'Manipur'),
    (NULL, 'IN', 'MEGHA', 'Meghalaya'),
    (NULL, 'IN', 'MIZOR', 'Mizoram'),
    (NULL, 'IN', 'NAGAL', 'Nagaland'),
    (NULL, 'IN', 'ORISS', 'Orissa'),
    (NULL, 'IN', 'PONDI', 'Pondicherry'),
    (NULL, 'IN', 'PUNJA', 'Punjab'),
    (NULL, 'IN', 'RAJAS', 'Rajasthan'),
    (NULL, 'IN', 'SIKKI', 'Sikkim'),
    (NULL, 'IN', 'TAMIL', 'Tamil Nadu'),
    (NULL, 'IN', 'TAMIL', 'Tripura'),
    (NULL, 'IN', 'UP', 'Uttar Pradesh'),
    (NULL, 'IN', 'UTTAR', 'Uttaranchal'),
    (NULL, 'IN', 'WB', 'West Bengal');

Schritt 2 : Außerdem müssen Sie Verzeichnis_Land_Region_Name für den Namen der gewünschten Sprachregion eingeben .

Als Standardsprache für Inder wird en_us (Sprachcode) verwendet

Unter Verwendung des folgenden Codes:

INSERT INTO directory_country_region_name( locale, region_id, name )
SELECT 'en_US' AS "language", region_id, default_name
FROM `directory_country_region`
WHERE country_id = 'IN';

Diese letzte Einfügung wird importiert, wenn Sie mehrere Sprachen haben


Meine Website ist zwei Jahre alt. Ich aktualisiere gerade den obigen Befehl, wenn ich zur Kasse gehe, für alle Benutzer, die nach dem ausgewählten Status fragen. Wir kennen jedoch den Kundenstatus. Wie kann ich den Status dem Kunden für 100.000 Kunden zuweisen?
Gem

Ja, das kannst du tun. aber brauche ein benutzerdefiniertes Skript, um dort zu aktualisieren region_id
Amit Bera

Könnten Sie mir bitte dabei helfen?
Edelstein

Holen Sie sich zuerst die Kunden- / Adressensammlung von Mage :: getResourceModel ('customer / address_collection') -> addAttributeToSelect ('region_id') -> -> addAttributeToSelect ('region'); $ addressObject-> getResource () -> saveAttribute ($ addressObject, 'attribute_Code');
Amit Bera

Ich bin Neuling für den Kern, bitte helfen Sie mir, wie kann ich Ihren obigen Code ausführen und meine Details erhalten
Gem

4

Statusliste aktualisiert

INSERT INTO `directory_country_region` VALUES
(NULL , 'IN', 'AN','Andaman and Nicobar'),
(NULL , 'IN', 'AP','Andhra Pradesh'),
(NULL , 'IN', 'AR','Arunachal Pradesh'),
(NULL , 'IN', 'AS','Assam'),
(NULL , 'IN', 'BH','Bihar'),
(NULL , 'IN', 'CH','Chandigarh'),
(NULL , 'IN', 'CT','Chhattisgarh'),
(NULL , 'IN', 'DN','Dadra and Nagar Haveli'),
(NULL , 'IN', 'DD','Daman and Diu'),
(NULL , 'IN', 'DL','Delhi'),
(NULL , 'IN', 'GA','Goa'),
(NULL , 'IN', 'GJ','Gujarat'),
(NULL , 'IN', 'HR','Haryana'),
(NULL , 'IN', 'HP','Himachal Pradesh'),
(NULL , 'IN', 'JK','Jammu Kashmir'),
(NULL , 'IN', 'JH','Jharkhand'),
(NULL , 'IN', 'KA','Karnataka'),
(NULL , 'IN', 'KL','Kerala'),
(NULL , 'IN', 'LD','Lakshadweep'),
(NULL , 'IN', 'MP','Madhya Pradesh'),
(NULL , 'IN', 'MH','Maharashtra'),
(NULL , 'IN', 'MN','Manipur'),
(NULL , 'IN', 'ML','Meghalaya'),
(NULL , 'IN', 'MZ','Mizoram'),
(NULL , 'IN', 'NL','Nagaland'),
(NULL , 'IN', 'OR','Odisha'),
(NULL , 'IN', 'PY','Pondicherry'),
(NULL , 'IN', 'PB','Punjab'),
(NULL , 'IN', 'RJ','Rajasthan'),
(NULL , 'IN', 'SK','Sikkim'),
(NULL , 'IN', 'TN','Tamil Nadu'),
(NULL , 'IN', 'TG','Telangana'),
(NULL , 'IN', 'TR','Tripura'),
(NULL , 'IN', 'UP','Uttar Pradesh'),
(NULL , 'IN', 'UT','Uttarakhand'),
(NULL , 'IN', 'WB','West Bengal');

4

Magento verwendet eine directory_country_regionTabelle, um die Statusnamen zu speichern.

Sie können der Tabelle Status hinzufügen, indem Sie die Abfrage in der Datenbank wie folgt ausführen:

INSERT INTO `directory_country_region` (`region_id`, `country_id`,`code`, `default_name`) VALUES
(NULL, 'IN', 'ANDRA', 'Andra Pradesh'),
(NULL, 'IN', 'ARUNA', 'Arunachal Pradesh'),
(NULL, 'IN', 'ASSAM', 'Assam'),
(NULL, 'IN', 'BIHAR', 'Bihar'),
(NULL, 'IN', 'CHAND', 'Chandigarh'),
(NULL, 'IN', 'CHHAT', 'Chhattisgarh'),
(NULL, 'IN', 'DADAR', 'Dadar and Nagar Haveli'),
(NULL, 'IN', 'DAMAN', 'Daman and Diu'),
(NULL, 'IN', 'DELHI', 'Delhi'),
(NULL, 'IN', 'GOA', 'Goa'),
(NULL, 'IN', 'GUJAR', 'Gujarat'),
(NULL, 'IN', 'HARYA', 'Haryana'),
(NULL, 'IN', 'HP', 'Himachal Pradesh'),
(NULL, 'IN', 'JK', 'Jammu and Kashmir'),
(NULL, 'IN', 'JHARK', 'Jharkhand'),
(NULL, 'IN', 'KARNA', 'Karnataka'),
(NULL, 'IN', 'KERAL', 'Kerala'),
(NULL, 'IN', 'LAKSH', 'Lakshadeep'),
(NULL, 'IN', 'MP', 'Madya Pradesh'),
(NULL, 'IN', 'MAHAR', 'Maharashtra'),
(NULL, 'IN', 'MANIP', 'Manipur'),
(NULL, 'IN', 'MEGHA', 'Meghalaya'),
(NULL, 'IN', 'MIZOR', 'Mizoram'),
(NULL, 'IN', 'NAGAL', 'Nagaland'),
(NULL, 'IN', 'ORISS', 'Orissa'),
(NULL, 'IN', 'PONDI', 'Pondicherry'),
(NULL, 'IN', 'PUNJA', 'Punjab'),
(NULL, 'IN', 'RAJAS', 'Rajasthan'),
(NULL, 'IN', 'SIKKI', 'Sikkim'),
(NULL, 'IN', 'TAMIL', 'Tamil Nadu'),
(NULL, 'IN', 'TAMIL', 'Tripura'),
(NULL, 'IN', 'UP', 'Uttar Pradesh'),
(NULL, 'IN', 'UTTAR', 'Uttaranchal'),
(NULL, 'IN', 'WB', 'West Bengal');

Sie können auch den Staat eines anderen Landes hinzufügen, indem Sie wie oben den Ländercode, den Staatscode und den Staatsnamen hinzufügen.


Meine Website ist zwei Jahre alt. Ich aktualisiere gerade den obigen Befehl, wenn ich zur Kasse gehe, für alle Benutzer, die nach dem ausgewählten Status fragen. Wir kennen jedoch den Kundenstatus. Wie kann ich den Status dem Kunden für 100.000 Kunden zuweisen?
Gem

3

Stand vom 3. Juli 2015 aktualisiert

Melden Sie sich bei cpanel an, gehen Sie zur Datenbank und dann zur directory_country_regionTabelle. Klicken Sie auf die SQLRegisterkarte und fügen Sie den folgenden Code hinzu

INSERT INTO `directory_country_region` VALUES
(NULL , 'IN', 'AN','Andaman and Nicobar Islands'),
(NULL , 'IN', 'AP','Andhra Pradesh'),
(NULL , 'IN', 'AR','Arunachal Pradesh'),
(NULL , 'IN', 'AS','Assam'),
(NULL , 'IN', 'BR','Bihar'),
(NULL , 'IN', 'CH','Chandigarh'),
(NULL , 'IN', 'CT','Chhattisgarh'),
(NULL , 'IN', 'DN','Dadra and Nagar Haveli'),
(NULL , 'IN', 'DD','Daman and Diu'),
(NULL , 'IN', 'DL','Delhi'),
(NULL , 'IN', 'GA','Goa'),
(NULL , 'IN', 'GJ','Gujarat'),
(NULL , 'IN', 'HR','Haryana'),
(NULL , 'IN', 'HP','Himachal Pradesh'),
(NULL , 'IN', 'JK','Jammu and Kashmir'),
(NULL , 'IN', 'JH','Jharkhand'),
(NULL , 'IN', 'KA','Karnataka'),
(NULL , 'IN', 'KL','Kerala'),
(NULL , 'IN', 'LD','Lakshadweep'),
(NULL , 'IN', 'MP','Madhya Pradesh'),
(NULL , 'IN', 'MH','Maharashtra'),
(NULL , 'IN', 'MN','Manipur'),
(NULL , 'IN', 'ML','Meghalaya'),
(NULL , 'IN', 'MZ','Mizoram'),
(NULL , 'IN', 'NL','Nagaland'),
(NULL , 'IN', 'OR','Odisha'),
(NULL , 'IN', 'PY','Puducherry'),
(NULL , 'IN', 'PB','Punjab'),
(NULL , 'IN', 'RJ','Rajasthan'),
(NULL , 'IN', 'SK','Sikkim'),
(NULL , 'IN', 'TN','Tamil Nadu'),
(NULL , 'IN', 'TG','Telangana'),
(NULL , 'IN', 'TR','Tripura'),
(NULL , 'IN', 'UP','Uttar Pradesh'),
(NULL , 'IN', 'UT','Uttarakhand'),
(NULL , 'IN', 'WB','West Bengal');

Für eine aktualisierte Liste der Länder überprüfen Sie die gleiche Antwort auf meinem Blog


bevorzugter Weise als Update SQL-Skript in Magento hinzufügen, funktioniert also auf lokalen und Remote-Instanzen.
Huzefam

0

Hinzufügen der Liste der Bundesstaaten in Indien zu Magento


Ich habe das getestet und für mich auf meinem Server gearbeitet.
Bitte öffne deinen php my admin und führe folgendes aus:
IN directory_country_regionWERTE EINFÜGEN
 ( NULL , "IN" , "Andaman und Nikobar" , "Andaman und Nikobar" ), ( NULL , "IN" , "Andhra Pradesh" , "Andhra Pradesh" ), ( NULL , "IN" , "Arunachal" Pradesh " , " Arunachal Pradesh " ), ( NULL , " IN " , " Assam " , " Assam " ), ( NULL , " IN " ,"Bihar" , "Bihar" ), (  
  
  
  
  
NULL , "IN" , "Chandigarh" , "Chandigarh" ), ( NULL , "IN" , "Chhattisgarh" , "Chhattisgarh" ), ( NULL , "IN" , "Dadra und Nagar Haveli" , "Dadra und Nagar Haveli" " ), ( NULL , " IN " , " Daman und Diu " , " Daman und Diu " ), ( NULL , " IN " , " Delhi " , "Delhi“ ), ( NULL ,  
  
  
  
  
  " IN ", "Goa" , "Goa" ), ( NULL , "IN" , "Gujarat" , "Gujarat" ), ( NULL , "IN" , "Haryana" , "Haryana" ), ( NULL , "IN" , " Himachal Pradesh " , " Himachal Pradesh " ), ( NULL , " IN " , " Jammu und Kashmir " , " Jammu und Kashmir " ), ( NULL ,"IN" , "Jharkhand" , "Jharkhand" 
  
  
  
  
  ), ( NULL , "IN" , "Karnataka" , "Karnataka" ), ( NULL , "IN" , "Kerala" , "Kerala" ), ( NULL , "IN" , "Lakshadweep" , "Lakshadweep" ), ( NULL , "IN" , "Madhya Pradesh" , "Madhya Pradesh" ), ( NULL , "IN" , "Maharashtra" , "Maharashtra " ), ( NULL , " IN "
  
  
  
  
  
 , "Manipur" , "Manipur" ), ( NULL , "IN" , "Meghalaya" , "Meghalaya" ), ( NULL , "IN" , "Mizoram" , "Mizoram" ), ( NULL , "IN" , " Nagaland " , " Nagaland " ), ( NULL , " IN " , " Orissa " , " Orissa " ), ( NULL , " IN " ,"Pondicherry" , "Pondicherry" ), 
  
  
  
  
  
( NULL , "IN" , "Punjab" , "Punjab" ), ( NULL , "IN" , "Rajasthan" , "Rajasthan" ), ( NULL , "IN" , "Sikkim" , "Sikkim" ), ( NULL , "IN " , " Tamil Nadu " , " Tamil Nadu " ), ( NULL , " IN " , " Tripura " , " Tripura " ), ( NULL ,"IN" , "Uttar Pradesh" , "Uttar Pradesh" 
  
  
  
  
   ), ( NULL , "IN" , "Uttaranchal" , "Uttaranchal" ), ( NULL , "IN" , "Westbengalen" , "Westbengalen" );
  
  

INSERT INTO ( , , ) SELECT 'en_US' , tmp . region_id , tmp . default_name FROM AS tmp WHERE tmp . country_id = 'IN' ;directory_country_region_name locale region_id name directory_country_region


Ich hoffe es wird dir helfen. http://tejabhagavan.blogspot.in/2015/12/adding-list-of-states-in-india-to.html

Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.