forked from magento-hackathon/cutesave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
149 lines (112 loc) · 4.19 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
CUTESAVE bindet das aktuelle Import/Export Model mittels WEBSERVICE an andere Systeme an.
1000 Produkte benötigen dabei, je nach System, bis zu 10 Sekunden.
Es folgt ein Beispielscript:
<?php
//
//
// Zuerst an der Api anmelden. Als Rückgabe der login-Methode gibt es eine Session-ID
$client = new SoapClient('http://localhost.magento/magento161/api/soap?wsdl');
try {
$session = $client->login('soap-test', 'soap-test');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
exit;
}
//
//
// Jetzt holen wir uns ein Vorlage-Array für Produkte
$basicattributes = $client->call( $session, 'fodcamp_cutesave_product.getbasicattributes');
print_r( $basicattributes );
/*
Array
(
[sku] =>
[name] =>
[price] =>
[status] => 0
[description] =>
[short_description] =>
)
*/
//
//
// Mit den Basic-Attributes wissen wir welche Felder Magento haben möchte,
// diese befüllen wir jetzt logisch
$new_product = $basicattributes;
$new_product['sku'] = '1234';
$new_product['name'] = 'Promidata-Test';
$new_product['price'] = '9.95';
$new_product['status'] = '1'; // 1 = Enabled, 0 = Disabled
$new_product['description'] = 'Ich bin ein langer Text';
$new_product['short_description'] = 'Kurzbeschreibung';
$new_product['categories'] = array( 'Kategorie1' );
//
//
// Nun fügen wir das neue Produkt zur Schreib-Queue von Magento hinzu
$client->call( $session, 'fodcamp_cutesave_product.addsimple', array( $new_product ) );
//
//
// Am Ende müssen wir Magento noch mitteilen das alle unsere Änderungen
// geschrieben werden sollen
// Rückgabe kann Fehlermeldungen erhalten (z.B. validierung)
print_r( $client->call($session, 'fodcamp_cutesave_product.write' ) );
//
//
// Wenn wir ganz viele Produkte hinzufügen ist es aber keine gute Idee viele
// Soap-Request zu machen. Dazu gibt es in Magento Multi-Calls
$calls = array();
for($i=0; $i<5; $i++) {
$multi_new_product = $new_product; // Wenn nehmen das new_product von oben als Vorlage
$multi_new_product['sku'] = 'test-sku'.$i; // Und ändern nur die Artikel-Nr :)
$calls[] = array('fodcamp_cutesave_product.addsimple', array( $multi_new_product) );
}
$client->multiCall( $session, $calls );
//
//
// Auch bei einem Multiclass müssen wir danach schreiben
print_r( $client->call($session, 'fodcamp_cutesave_product.write' ) );
//
//
// Im nächsten Schritt legen wir jetzt ein Configuierbares Produkt an.
//
// Dazu muss angegeben werden welche Attribute konfiguiert werden können.
// dann müssen die simple products mit dem gleichen array wie oben übermittelt werden
// und letztlich texte etc. für den konfiguierbaren artikel
$configurable_attributes = array('size', 'color');
$sizes = array('L','M');
$colors = array('Rot','Grün');
$simple_products = array();
//
// Aus Matrix Size * Colors erzeugen wir alle Simple-Products
foreach( $sizes AS $size) {
foreach( $colors AS $color ) {
$new_product = array();
$new_product['sku'] = '1234-'.$color.'-'.$size;
$new_product['name'] = 'Configurable Promidata-Test';
$new_product['price'] = '9.95';
$new_product['status'] = '1'; // 1 = Enabled, 0 = Disabled
$new_product['description'] = 'Ich bin ein langer Text';
$new_product['short_description'] = 'Kurzbeschreibung';
$new_product['size'] = $size;
$new_product['color'] = $color;
$simple_products[] = $new_product;
}
}
$configurable_product = $basicattributes;
$configurable_product['sku'] = '1234-configurable';
$configurable_product['name'] = 'Promidata-Test';
$configurable_product['price'] = '9.95';
$configurable_product['status'] = '1'; // 1 = Enabled, 0 = Disabled
$configurable_product['description'] = 'Ich bin ein langer Text';
$configurable_product['short_description'] = 'Kurzbeschreibung';
$configurable_product['categories'] = array( 'Kategorie2' );
$client->call( $session, 'fodcamp_cutesave_product.addconfigurable', array( $configurable_attributes, $simple_products, $configurable_product ) );
print_r( $client->call($session, 'fodcamp_cutesave_product.write' ) );
//
//
// Ganz am Ende müssen wir noch die Indizes aktualisieren
$client->call($session, 'fodcamp_cutesave_product.reindex' );
//
//
// Zur Sicherheit beenden wir die Session
$client->endSession($session);