Version Notes
Bug fixes - tracking update
Download this release
Release Info
Developer | ShipJunction |
Extension | Shipjunction_Util |
Version | 0.3.0 |
Comparing to | |
See all releases |
Code changes from version 0.2.0 to 0.3.0
- app/code/local/Shipjunction/Utilities/Model/Objectmodel/.Api.php.swo +0 -0
- app/code/local/Shipjunction/Utilities/Model/Objectmodel/.Api.php.swp +0 -0
- app/code/local/Shipjunction/Utilities/Model/Objectmodel/Api.php +1 -1
- app/code/local/Shipjunction/Utilities/Model/Objectmodel/test.php +0 -27
- app/code/local/Shipjunction/Utilities/Model/Objectmodel/test_ordinc_id.php +0 -7
- app/code/local/Shipjunction/Utilities/Model/Objectmodel/xmlreturned.xml +0 -295
- package.xml +5 -5
app/code/local/Shipjunction/Utilities/Model/Objectmodel/.Api.php.swo
DELETED
Binary file
|
app/code/local/Shipjunction/Utilities/Model/Objectmodel/.Api.php.swp
DELETED
Binary file
|
app/code/local/Shipjunction/Utilities/Model/Objectmodel/Api.php
CHANGED
@@ -243,7 +243,7 @@ class Shipjunction_Utilities_Model_Objectmodel_Api extends Mage_Api_Model_Resour
|
|
243 |
}
|
244 |
|
245 |
/* @var $shipment Mage_Sales_Model_Order_Shipment */
|
246 |
-
$shipment = $order->prepareShipment($itemsQty
|
247 |
if ($shipment) {
|
248 |
$shipment->register();
|
249 |
//$shipment->addComment($comment, $email && $includeComment);
|
243 |
}
|
244 |
|
245 |
/* @var $shipment Mage_Sales_Model_Order_Shipment */
|
246 |
+
$shipment = $order->prepareShipment(); // removing $itemsQty for now
|
247 |
if ($shipment) {
|
248 |
$shipment->register();
|
249 |
//$shipment->addComment($comment, $email && $includeComment);
|
app/code/local/Shipjunction/Utilities/Model/Objectmodel/test.php
DELETED
@@ -1,27 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
class productLocationZone
|
3 |
-
{
|
4 |
-
public $productId = "";
|
5 |
-
public $location = "";
|
6 |
-
public $zone = "";
|
7 |
-
}
|
8 |
-
|
9 |
-
|
10 |
-
$_productIdList = "SKU1,SKU3";
|
11 |
-
$productIds = explode(",",$_productIdList);
|
12 |
-
$return = array();
|
13 |
-
foreach($productIds as $productId) {
|
14 |
-
$productLocation = $productId."LOC";
|
15 |
-
$zone = $productId."ZONE";
|
16 |
-
$productLocationZone = new productLocationZone();
|
17 |
-
$productLocationZone->productId = $productId;
|
18 |
-
$productLocationZone->location = $productLocation;
|
19 |
-
$productLocationZone->zone = $zone;
|
20 |
-
array_push($return, $productLocationZone);
|
21 |
-
/*array_push($return,
|
22 |
-
array("ProductId" => $productId,
|
23 |
-
"Location" => $productLocation,
|
24 |
-
"Zone" => $zone));*/
|
25 |
-
}
|
26 |
-
print_r($return);
|
27 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/Shipjunction/Utilities/Model/Objectmodel/test_ordinc_id.php
DELETED
@@ -1,7 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
$completeOrderIds = array(1,3);
|
4 |
-
|
5 |
-
$s = "SELECT `increment_id` FROM `". $sales_order_table ."` WHERE `entity_id` in ('". implode("', '", $completeOrderIds) ."')";
|
6 |
-
print_r($s);
|
7 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/Shipjunction/Utilities/Model/Objectmodel/xmlreturned.xml
DELETED
@@ -1,295 +0,0 @@
|
|
1 |
-
difficulties with returning a new object from Magento Api :
|
2 |
-
|
3 |
-
*. got the object defined in wsdl
|
4 |
-
*. have the object being returned as below, but the object itself is called of type "Struct", which I believe to be the default when the magento SOAP serializer gets an object with which it is unfamiliar.
|
5 |
-
|
6 |
-
so the question is, how do I get the SOAP serializer within Magento to return the below without Struct, and with "ProductLocationZone"
|
7 |
-
|
8 |
-
|
9 |
-
<!-- this is the result with the object, but it doesn't know anyhting about my class because it's defined in my api file, and the object->wsdl mapping is happening somewhere else -->
|
10 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
11 |
-
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:Magento" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
12 |
-
<SOAP-ENV:Body>
|
13 |
-
<ns1:shipjunctionUtilitiesGetEmbeddedErpZonesAndBinsResponse>
|
14 |
-
<zonesBins SOAP-ENC:arrayType="SOAP-ENC:Struct[2]" xsi:type="SOAP-ENC:Array">
|
15 |
-
<item xsi:type="SOAP-ENC:Struct">
|
16 |
-
<productId xsi:type="xsd:string">SKU1</productId>
|
17 |
-
<location xsi:type="xsd:string">SKU1LOC</location>
|
18 |
-
<zone xsi:type="xsd:string">SKU1ZONE</zone>
|
19 |
-
</item>
|
20 |
-
<item xsi:type="SOAP-ENC:Struct">
|
21 |
-
<productId xsi:type="xsd:string">SKU2</productId>
|
22 |
-
<location xsi:type="xsd:string">SKU2LOC</location>
|
23 |
-
<zone xsi:type="xsd:string">SKU2ZONE</zone>
|
24 |
-
</item>
|
25 |
-
</zonesBins>
|
26 |
-
</ns1:shipjunctionUtilitiesGetEmbeddedErpZonesAndBinsResponse>
|
27 |
-
</SOAP-ENV:Body>
|
28 |
-
</SOAP-ENV:Envelope>
|
29 |
-
|
30 |
-
<complexType name="associativeEntity">
|
31 |
-
<all>
|
32 |
-
<element name="key" type="xsd:string"/>
|
33 |
-
<element name="value" type="xsd:string"/>
|
34 |
-
</all>
|
35 |
-
</complexType>
|
36 |
-
<complexType name="associativeArray">
|
37 |
-
<complexContent>
|
38 |
-
<restriction base="soapenc:Array">
|
39 |
-
<attribute ref="soapenc:arrayType" wsdl:arrayType="typens:associativeEntity[]"/>
|
40 |
-
</restriction>
|
41 |
-
</complexContent>
|
42 |
-
</complexType>
|
43 |
-
|
44 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
45 |
-
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:Magento" xmlns:ns2="http://xml.apache.org/xml-soap" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
46 |
-
<SOAP-ENV:Body>
|
47 |
-
<ns1:shipjunctionUtilitiesGetEmbeddedErpZonesAndBinsResponse>
|
48 |
-
<zonesBins SOAP-ENC:arrayType="ns2:Map[2]" xsi:type="SOAP-ENC:Array">
|
49 |
-
<item xsi:type="ns2:Map">
|
50 |
-
<item>
|
51 |
-
<key xsi:type="xsd:string">productId</key>
|
52 |
-
<value xsi:type="xsd:string">SKU1</value>
|
53 |
-
</item>
|
54 |
-
<item>
|
55 |
-
<key xsi:type="xsd:string">location</key>
|
56 |
-
<value xsi:nil="true"/>
|
57 |
-
</item>
|
58 |
-
<item>
|
59 |
-
<key xsi:type="xsd:string">zone</key>
|
60 |
-
<value xsi:type="xsd:string">SKU1ZONE</value>
|
61 |
-
</item>
|
62 |
-
</item>
|
63 |
-
<item xsi:type="ns2:Map">
|
64 |
-
<item>
|
65 |
-
<key xsi:type="xsd:string">productId</key>
|
66 |
-
<value xsi:type="xsd:string">SKU2</value>
|
67 |
-
</item>
|
68 |
-
<item>
|
69 |
-
<key xsi:type="xsd:string">location</key>
|
70 |
-
<value xsi:nil="true"/>
|
71 |
-
</item>
|
72 |
-
<item>
|
73 |
-
<key xsi:type="xsd:string">zone</key>
|
74 |
-
<value xsi:type="xsd:string">SKU2ZONE</value>
|
75 |
-
</item>
|
76 |
-
</item>
|
77 |
-
</zonesBins>
|
78 |
-
</ns1:shipjunctionUtilitiesGetEmbeddedErpZonesAndBinsResponse>
|
79 |
-
</SOAP-ENV:Body>
|
80 |
-
</SOAP-ENV:Envelope>
|
81 |
-
|
82 |
-
|
83 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
84 |
-
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:Magento" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
85 |
-
<SOAP-ENV:Body>
|
86 |
-
<ns1:salesOrderInfoResponse>
|
87 |
-
<result xsi:type="ns1:salesOrderEntity">
|
88 |
-
<increment_id xsi:type="xsd:string">100000003</increment_id>
|
89 |
-
<store_id xsi:type="xsd:string">1</store_id>
|
90 |
-
<created_at xsi:type="xsd:string">2013-06-27 16:01:40</created_at>
|
91 |
-
<updated_at xsi:type="xsd:string">2013-07-17 20:06:49</updated_at>
|
92 |
-
<customer_id xsi:type="xsd:string">3</customer_id>
|
93 |
-
<tax_amount xsi:type="xsd:string">1.2400</tax_amount>
|
94 |
-
<shipping_amount xsi:type="xsd:string">5.0000</shipping_amount>
|
95 |
-
<discount_amount xsi:type="xsd:string">0.0000</discount_amount>
|
96 |
-
<subtotal xsi:type="xsd:string">15.0000</subtotal>
|
97 |
-
<grand_total xsi:type="xsd:string">21.2400</grand_total>
|
98 |
-
<total_qty_ordered xsi:type="xsd:string">1.0000</total_qty_ordered>
|
99 |
-
<base_tax_amount xsi:type="xsd:string">1.2400</base_tax_amount>
|
100 |
-
<base_shipping_amount xsi:type="xsd:string">5.0000</base_shipping_amount>
|
101 |
-
<base_discount_amount xsi:type="xsd:string">0.0000</base_discount_amount>
|
102 |
-
<base_subtotal xsi:type="xsd:string">15.0000</base_subtotal>
|
103 |
-
<base_grand_total xsi:type="xsd:string">21.2400</base_grand_total>
|
104 |
-
<billing_address_id xsi:type="xsd:string">5</billing_address_id>
|
105 |
-
<shipping_address_id xsi:type="xsd:string">6</shipping_address_id>
|
106 |
-
<store_to_base_rate xsi:type="xsd:string">1.0000</store_to_base_rate>
|
107 |
-
<store_to_order_rate xsi:type="xsd:string">1.0000</store_to_order_rate>
|
108 |
-
<base_to_global_rate xsi:type="xsd:string">1.0000</base_to_global_rate>
|
109 |
-
<base_to_order_rate xsi:type="xsd:string">1.0000</base_to_order_rate>
|
110 |
-
<weight xsi:type="xsd:string">0.5000</weight>
|
111 |
-
<store_name xsi:type="xsd:string">Main Website
|
112 |
-
Main Store
|
113 |
-
English</store_name>
|
114 |
-
<remote_ip xsi:type="xsd:string">192.168.1.130</remote_ip>
|
115 |
-
<status xsi:type="xsd:string">processing</status>
|
116 |
-
<state xsi:type="xsd:string">processing</state>
|
117 |
-
<global_currency_code xsi:type="xsd:string">USD</global_currency_code>
|
118 |
-
<base_currency_code xsi:type="xsd:string">USD</base_currency_code>
|
119 |
-
<store_currency_code xsi:type="xsd:string">USD</store_currency_code>
|
120 |
-
<order_currency_code xsi:type="xsd:string">USD</order_currency_code>
|
121 |
-
<shipping_method xsi:type="xsd:string">flatrate_flatrate</shipping_method>
|
122 |
-
<shipping_description xsi:type="xsd:string">Flat Rate - Fixed</shipping_description>
|
123 |
-
<customer_email xsi:type="xsd:string">jcarr@shipjunction.com</customer_email>
|
124 |
-
<customer_firstname xsi:type="xsd:string">Joe</customer_firstname>
|
125 |
-
<customer_lastname xsi:type="xsd:string">Carr</customer_lastname>
|
126 |
-
<quote_id xsi:type="xsd:string">3</quote_id>
|
127 |
-
<is_virtual xsi:type="xsd:string">0</is_virtual>
|
128 |
-
<customer_group_id xsi:type="xsd:string">1</customer_group_id>
|
129 |
-
<customer_note_notify xsi:type="xsd:string">1</customer_note_notify>
|
130 |
-
<customer_is_guest xsi:type="xsd:string">0</customer_is_guest>
|
131 |
-
<email_sent xsi:type="xsd:string">1</email_sent>
|
132 |
-
<order_id xsi:type="xsd:string">3</order_id>
|
133 |
-
<shipping_address xsi:type="ns1:salesOrderAddressEntity">
|
134 |
-
<parent_id xsi:type="xsd:string">3</parent_id>
|
135 |
-
<address_type xsi:type="xsd:string">shipping</address_type>
|
136 |
-
<firstname xsi:type="xsd:string">Joe</firstname>
|
137 |
-
<lastname xsi:type="xsd:string">Carr</lastname>
|
138 |
-
<street xsi:type="xsd:string">4116 Emerald St</street>
|
139 |
-
<city xsi:type="xsd:string">San Francisco</city>
|
140 |
-
<region xsi:type="xsd:string">California</region>
|
141 |
-
<postcode xsi:type="xsd:string">94509</postcode>
|
142 |
-
<country_id xsi:type="xsd:string">US</country_id>
|
143 |
-
<telephone xsi:type="xsd:string">718-223-1923</telephone>
|
144 |
-
<region_id xsi:type="xsd:string">12</region_id>
|
145 |
-
<address_id xsi:type="xsd:string">6</address_id>
|
146 |
-
</shipping_address>
|
147 |
-
<billing_address xsi:type="ns1:salesOrderAddressEntity">
|
148 |
-
<parent_id xsi:type="xsd:string">3</parent_id>
|
149 |
-
<address_type xsi:type="xsd:string">billing</address_type>
|
150 |
-
<firstname xsi:type="xsd:string">Joe</firstname>
|
151 |
-
<lastname xsi:type="xsd:string">Carr</lastname>
|
152 |
-
<street xsi:type="xsd:string">4116 Emerald St</street>
|
153 |
-
<city xsi:type="xsd:string">San Francisco</city>
|
154 |
-
<region xsi:type="xsd:string">California</region>
|
155 |
-
<postcode xsi:type="xsd:string">94509</postcode>
|
156 |
-
<country_id xsi:type="xsd:string">US</country_id>
|
157 |
-
<telephone xsi:type="xsd:string">718-223-1923</telephone>
|
158 |
-
<region_id xsi:type="xsd:string">12</region_id>
|
159 |
-
<address_id xsi:type="xsd:string">5</address_id>
|
160 |
-
</billing_address>
|
161 |
-
<items SOAP-ENC:arrayType="ns1:salesOrderItemEntity[2]" xsi:type="ns1:salesOrderItemEntityArray">
|
162 |
-
<item xsi:type="ns1:salesOrderItemEntity">
|
163 |
-
<item_id xsi:type="xsd:string">4</item_id>
|
164 |
-
<order_id xsi:type="xsd:string">3</order_id>
|
165 |
-
<quote_item_id xsi:type="xsd:string">4</quote_item_id>
|
166 |
-
<created_at xsi:type="xsd:string">2013-06-27 16:01:40</created_at>
|
167 |
-
<updated_at xsi:type="xsd:string">2013-07-17 20:06:49</updated_at>
|
168 |
-
<product_id xsi:type="xsd:string">119</product_id>
|
169 |
-
<product_type xsi:type="xsd:string">configurable</product_type>
|
170 |
-
<product_options xsi:type="xsd:string">a:6:{s:15:"info_buyRequest";a:5:{s:4:"uenc";s:104:"aHR0cDovLzE5Mi4xNjguMS4xNDAvaW5kZXgucGhwL2NvYWxlc2NlLWZ1bmN0aW9uaW5nLW9uLWltcGF0aWVuY2UtdC1zaGlydC5odG1s";s:7:"product";s:3:"119";s:15:"related_product";s:0:"";s:15:"super_attribute";a:1:{i:525;s:2:"99";}s:3:"qty";s:1:"1";}s:15:"attributes_info";a:1:{i:0;a:2:{s:5:"label";s:4:"Size";s:5:"value";s:6:"Medium";}}s:11:"simple_name";s:43:"Coalesce: Functioning On Impatience T-Shirt";s:10:"simple_sku";s:7:"coal_md";s:20:"product_calculations";i:1;s:13:"shipment_type";i:0;}</product_options>
|
171 |
-
<weight xsi:type="xsd:string">0.5000</weight>
|
172 |
-
<is_virtual xsi:type="xsd:string">0</is_virtual>
|
173 |
-
<sku xsi:type="xsd:string">coal_md</sku>
|
174 |
-
<name xsi:type="xsd:string">Coalesce: Functioning On Impatience T-Shirt</name>
|
175 |
-
<free_shipping xsi:type="xsd:string">0</free_shipping>
|
176 |
-
<is_qty_decimal xsi:type="xsd:string">0</is_qty_decimal>
|
177 |
-
<no_discount xsi:type="xsd:string">0</no_discount>
|
178 |
-
<qty_canceled xsi:type="xsd:string">0.0000</qty_canceled>
|
179 |
-
<qty_invoiced xsi:type="xsd:string">0.0000</qty_invoiced>
|
180 |
-
<qty_ordered xsi:type="xsd:string">1.0000</qty_ordered>
|
181 |
-
<qty_refunded xsi:type="xsd:string">0.0000</qty_refunded>
|
182 |
-
<qty_shipped xsi:type="xsd:string">1.0000</qty_shipped>
|
183 |
-
<price xsi:type="xsd:string">15.0000</price>
|
184 |
-
<base_price xsi:type="xsd:string">15.0000</base_price>
|
185 |
-
<original_price xsi:type="xsd:string">15.0000</original_price>
|
186 |
-
<base_original_price xsi:type="xsd:string">15.0000</base_original_price>
|
187 |
-
<tax_percent xsi:type="xsd:string">8.2500</tax_percent>
|
188 |
-
<tax_amount xsi:type="xsd:string">1.2400</tax_amount>
|
189 |
-
<base_tax_amount xsi:type="xsd:string">1.2400</base_tax_amount>
|
190 |
-
<tax_invoiced xsi:type="xsd:string">0.0000</tax_invoiced>
|
191 |
-
<base_tax_invoiced xsi:type="xsd:string">0.0000</base_tax_invoiced>
|
192 |
-
<discount_percent xsi:type="xsd:string">0.0000</discount_percent>
|
193 |
-
<discount_amount xsi:type="xsd:string">0.0000</discount_amount>
|
194 |
-
<base_discount_amount xsi:type="xsd:string">0.0000</base_discount_amount>
|
195 |
-
<discount_invoiced xsi:type="xsd:string">0.0000</discount_invoiced>
|
196 |
-
<base_discount_invoiced xsi:type="xsd:string">0.0000</base_discount_invoiced>
|
197 |
-
<amount_refunded xsi:type="xsd:string">0.0000</amount_refunded>
|
198 |
-
<base_amount_refunded xsi:type="xsd:string">0.0000</base_amount_refunded>
|
199 |
-
<row_total xsi:type="xsd:string">15.0000</row_total>
|
200 |
-
<base_row_total xsi:type="xsd:string">15.0000</base_row_total>
|
201 |
-
<row_invoiced xsi:type="xsd:string">0.0000</row_invoiced>
|
202 |
-
<base_row_invoiced xsi:type="xsd:string">0.0000</base_row_invoiced>
|
203 |
-
<row_weight xsi:type="xsd:string">0.5000</row_weight>
|
204 |
-
<weee_tax_applied xsi:type="xsd:string">a:0:{}</weee_tax_applied>
|
205 |
-
<weee_tax_applied_amount xsi:type="xsd:string">0.0000</weee_tax_applied_amount>
|
206 |
-
<weee_tax_applied_row_amount xsi:type="xsd:string">0.0000</weee_tax_applied_row_amount>
|
207 |
-
<base_weee_tax_applied_amount xsi:type="xsd:string">0.0000</base_weee_tax_applied_amount>
|
208 |
-
<base_weee_tax_applied_row_amount xsi:type="xsd:string">0.0000</base_weee_tax_applied_row_amount>
|
209 |
-
<weee_tax_disposition xsi:type="xsd:string">0.0000</weee_tax_disposition>
|
210 |
-
<weee_tax_row_disposition xsi:type="xsd:string">0.0000</weee_tax_row_disposition>
|
211 |
-
<base_weee_tax_disposition xsi:type="xsd:string">0.0000</base_weee_tax_disposition>
|
212 |
-
<base_weee_tax_row_disposition xsi:type="xsd:string">0.0000</base_weee_tax_row_disposition>
|
213 |
-
</item>
|
214 |
-
<item xsi:type="ns1:salesOrderItemEntity">
|
215 |
-
<item_id xsi:type="xsd:string">5</item_id>
|
216 |
-
<order_id xsi:type="xsd:string">3</order_id>
|
217 |
-
<quote_item_id xsi:type="xsd:string">5</quote_item_id>
|
218 |
-
<created_at xsi:type="xsd:string">2013-06-27 16:01:40</created_at>
|
219 |
-
<updated_at xsi:type="xsd:string">2013-07-17 20:06:49</updated_at>
|
220 |
-
<product_id xsi:type="xsd:string">117</product_id>
|
221 |
-
<product_type xsi:type="xsd:string">simple</product_type>
|
222 |
-
<product_options xsi:type="xsd:string">a:1:{s:15:"info_buyRequest";a:5:{s:4:"uenc";s:104:"aHR0cDovLzE5Mi4xNjguMS4xNDAvaW5kZXgucGhwL2NvYWxlc2NlLWZ1bmN0aW9uaW5nLW9uLWltcGF0aWVuY2UtdC1zaGlydC5odG1s";s:7:"product";s:3:"119";s:15:"related_product";s:0:"";s:15:"super_attribute";a:1:{i:525;s:2:"99";}s:3:"qty";s:1:"1";}}</product_options>
|
223 |
-
<weight xsi:type="xsd:string">0.5000</weight>
|
224 |
-
<is_virtual xsi:type="xsd:string">0</is_virtual>
|
225 |
-
<sku xsi:type="xsd:string">coal_md</sku>
|
226 |
-
<name xsi:type="xsd:string">Coalesce: Functioning On Impatience T-Shirt</name>
|
227 |
-
<free_shipping xsi:type="xsd:string">0</free_shipping>
|
228 |
-
<is_qty_decimal xsi:type="xsd:string">0</is_qty_decimal>
|
229 |
-
<no_discount xsi:type="xsd:string">0</no_discount>
|
230 |
-
<qty_canceled xsi:type="xsd:string">0.0000</qty_canceled>
|
231 |
-
<qty_invoiced xsi:type="xsd:string">0.0000</qty_invoiced>
|
232 |
-
<qty_ordered xsi:type="xsd:string">1.0000</qty_ordered>
|
233 |
-
<qty_refunded xsi:type="xsd:string">0.0000</qty_refunded>
|
234 |
-
<qty_shipped xsi:type="xsd:string">0.0000</qty_shipped>
|
235 |
-
<price xsi:type="xsd:string">0.0000</price>
|
236 |
-
<base_price xsi:type="xsd:string">0.0000</base_price>
|
237 |
-
<original_price xsi:type="xsd:string">0.0000</original_price>
|
238 |
-
<tax_percent xsi:type="xsd:string">0.0000</tax_percent>
|
239 |
-
<tax_amount xsi:type="xsd:string">0.0000</tax_amount>
|
240 |
-
<base_tax_amount xsi:type="xsd:string">0.0000</base_tax_amount>
|
241 |
-
<tax_invoiced xsi:type="xsd:string">0.0000</tax_invoiced>
|
242 |
-
<base_tax_invoiced xsi:type="xsd:string">0.0000</base_tax_invoiced>
|
243 |
-
<discount_percent xsi:type="xsd:string">0.0000</discount_percent>
|
244 |
-
<discount_amount xsi:type="xsd:string">0.0000</discount_amount>
|
245 |
-
<base_discount_amount xsi:type="xsd:string">0.0000</base_discount_amount>
|
246 |
-
<discount_invoiced xsi:type="xsd:string">0.0000</discount_invoiced>
|
247 |
-
<base_discount_invoiced xsi:type="xsd:string">0.0000</base_discount_invoiced>
|
248 |
-
<amount_refunded xsi:type="xsd:string">0.0000</amount_refunded>
|
249 |
-
<base_amount_refunded xsi:type="xsd:string">0.0000</base_amount_refunded>
|
250 |
-
<row_total xsi:type="xsd:string">0.0000</row_total>
|
251 |
-
<base_row_total xsi:type="xsd:string">0.0000</base_row_total>
|
252 |
-
<row_invoiced xsi:type="xsd:string">0.0000</row_invoiced>
|
253 |
-
<base_row_invoiced xsi:type="xsd:string">0.0000</base_row_invoiced>
|
254 |
-
<row_weight xsi:type="xsd:string">0.0000</row_weight>
|
255 |
-
<weee_tax_applied xsi:type="xsd:string">a:0:{}</weee_tax_applied>
|
256 |
-
<weee_tax_applied_amount xsi:type="xsd:string">0.0000</weee_tax_applied_amount>
|
257 |
-
<weee_tax_applied_row_amount xsi:type="xsd:string">0.0000</weee_tax_applied_row_amount>
|
258 |
-
<base_weee_tax_applied_amount xsi:type="xsd:string">0.0000</base_weee_tax_applied_amount>
|
259 |
-
<weee_tax_disposition xsi:type="xsd:string">0.0000</weee_tax_disposition>
|
260 |
-
<weee_tax_row_disposition xsi:type="xsd:string">0.0000</weee_tax_row_disposition>
|
261 |
-
<base_weee_tax_disposition xsi:type="xsd:string">0.0000</base_weee_tax_disposition>
|
262 |
-
<base_weee_tax_row_disposition xsi:type="xsd:string">0.0000</base_weee_tax_row_disposition>
|
263 |
-
</item>
|
264 |
-
</items>
|
265 |
-
<payment xsi:type="ns1:salesOrderPaymentEntity">
|
266 |
-
<parent_id xsi:type="xsd:string">3</parent_id>
|
267 |
-
<amount_ordered xsi:type="xsd:string">21.2400</amount_ordered>
|
268 |
-
<shipping_amount xsi:type="xsd:string">5.0000</shipping_amount>
|
269 |
-
<base_amount_ordered xsi:type="xsd:string">21.2400</base_amount_ordered>
|
270 |
-
<base_shipping_amount xsi:type="xsd:string">5.0000</base_shipping_amount>
|
271 |
-
<method xsi:type="xsd:string">checkmo</method>
|
272 |
-
<cc_exp_month xsi:type="xsd:string">0</cc_exp_month>
|
273 |
-
<cc_exp_year xsi:type="xsd:string">0</cc_exp_year>
|
274 |
-
<cc_ss_start_month xsi:type="xsd:string">0</cc_ss_start_month>
|
275 |
-
<cc_ss_start_year xsi:type="xsd:string">0</cc_ss_start_year>
|
276 |
-
<payment_id xsi:type="xsd:string">3</payment_id>
|
277 |
-
</payment>
|
278 |
-
<status_history SOAP-ENC:arrayType="ns1:salesOrderStatusHistoryEntity[2]" xsi:type="ns1:salesOrderStatusHistoryEntityArray">
|
279 |
-
<item xsi:type="ns1:salesOrderStatusHistoryEntity">
|
280 |
-
<parent_id xsi:type="xsd:string">3</parent_id>
|
281 |
-
<created_at xsi:type="xsd:string">2013-07-17 20:06:49</created_at>
|
282 |
-
<is_customer_notified xsi:type="xsd:string">1</is_customer_notified>
|
283 |
-
<status xsi:type="xsd:string">processing</status>
|
284 |
-
</item>
|
285 |
-
<item xsi:type="ns1:salesOrderStatusHistoryEntity">
|
286 |
-
<parent_id xsi:type="xsd:string">3</parent_id>
|
287 |
-
<created_at xsi:type="xsd:string">2013-06-27 16:01:41</created_at>
|
288 |
-
<is_customer_notified xsi:type="xsd:string">1</is_customer_notified>
|
289 |
-
<status xsi:type="xsd:string">pending</status>
|
290 |
-
</item>
|
291 |
-
</status_history>
|
292 |
-
</result>
|
293 |
-
</ns1:salesOrderInfoResponse>
|
294 |
-
</SOAP-ENV:Body>
|
295 |
-
</SOAP-ENV:Envelope>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Shipjunction_Util</name>
|
4 |
-
<version>0.
|
5 |
<stability>stable</stability>
|
6 |
<license>Massachusetts Institute of Technology License (MITL)</license>
|
7 |
<channel>community</channel>
|
@@ -11,11 +11,11 @@
|
|
11 |
ShipJunction is a multi-carrier shipping platform that provides unparalleled efficiency and optimization in the management of backend fulfillment processes and carrier expenses.
|
12 |
Supported Releases 1.5.0.0 & later
|
13 |
</description>
|
14 |
-
<notes>
|
15 |
<authors><author><name> ShipJunction</name><user>shipjunction</user><email>dev@shipjunction.com</email></author></authors>
|
16 |
-
<date>2014-04-
|
17 |
-
<time>
|
18 |
-
<contents><target name="magelocal"><dir name="Shipjunction"><dir name="Utilities"><dir name="Model"><dir name="Objectmodel"><dir name="Api"><file name="V2.php" hash="c72849bd552b06b397854eb0327cab1a"/></dir><file name="Api.php" hash="
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
21 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Shipjunction_Util</name>
|
4 |
+
<version>0.3.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Massachusetts Institute of Technology License (MITL)</license>
|
7 |
<channel>community</channel>
|
11 |
ShipJunction is a multi-carrier shipping platform that provides unparalleled efficiency and optimization in the management of backend fulfillment processes and carrier expenses.
|
12 |
Supported Releases 1.5.0.0 & later
|
13 |
</description>
|
14 |
+
<notes>Bug fixes - tracking update</notes>
|
15 |
<authors><author><name> ShipJunction</name><user>shipjunction</user><email>dev@shipjunction.com</email></author></authors>
|
16 |
+
<date>2014-04-07</date>
|
17 |
+
<time>16:58:05</time>
|
18 |
+
<contents><target name="magelocal"><dir name="Shipjunction"><dir name="Utilities"><dir name="Model"><dir name="Objectmodel"><dir name="Api"><file name="V2.php" hash="c72849bd552b06b397854eb0327cab1a"/></dir><file name="Api.php" hash="7ec411e6f771c70a5370a39e4766fb9b"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8bd8b8559228898482f0350c88abbf2c"/><file name="api.xml" hash="e06219c93f542e947a5aef6216962ad1"/><file name="config.xml" hash="61dbf18db5f93e7c2f0d233db70d0cfa"/><file name="system.xml" hash="9a1e37f245ae223621bdaede1ac2e329"/><file name="wsdl.xml" hash="a030c34a59a1c5e25502f0b947b168b8"/></dir></dir></dir></target></contents>
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
21 |
</package>
|