dropship360 - Version 2.0.24

Version Notes

stable

Download this release

Release Info

Developer Logicbroker
Extension dropship360
Version 2.0.24
Comparing to
See all releases


Code changes from version 2.0.23 to 2.0.24

app/code/community/Logicbroker/Dropship360/Block/Adminhtml/System/Config/Crontime.php CHANGED
@@ -27,7 +27,7 @@ class Logicbroker_Dropship360_Block_Adminhtml_System_Config_Crontime extends Mag
27
  }
28
 
29
  $html = '<input type="hidden" id="' . $element->getHtmlId() . '" />';
30
- $html .= '<select name="'. $this->getName($element->getName()) . '" '.$element->serialize($this->getHtmlAttributes()).' style="width:auto">'."\n";
31
 
32
  for( $i=-2;$i<24;$i++ ) {
33
  $hour = str_pad($i, 2, '0', STR_PAD_LEFT);
@@ -40,7 +40,7 @@ class Logicbroker_Dropship360_Block_Adminhtml_System_Config_Crontime extends Mag
40
  }
41
  $html.= '</select>'."\n";
42
 
43
- $html.= '&nbsp;:&nbsp;<select name="'. $this->getName($element->getName()) . '" '.$element->serialize($this->getHtmlAttributes()).' style="width:auto">'."\n";
44
  //$html.= '<option value="*" '. ( ($value_min == '*') ? 'selected="selected"' : '' ) .'>*</option>';
45
  for( $i=-1;$i<60;$i++ ) {
46
  $hour = str_pad($i, 2, '0', STR_PAD_LEFT);
@@ -51,7 +51,7 @@ class Logicbroker_Dropship360_Block_Adminhtml_System_Config_Crontime extends Mag
51
  }
52
  $html.= '</select>'."\n";
53
 
54
- $html.= '&nbsp;:&nbsp;<select name="'. $this->getName($element->getName()) . '" '.$element->serialize($this->getHtmlAttributes()).' style="width:auto">'."\n";
55
  //$html.= '<option value="*" '. ( ($value_sec == '*') ? 'selected="selected"' : '' ) .'>*</option>';
56
  for( $i=-1;$i<60;$i++ ) {
57
  $hour = str_pad($i, 2, '0', STR_PAD_LEFT);
@@ -64,4 +64,4 @@ class Logicbroker_Dropship360_Block_Adminhtml_System_Config_Crontime extends Mag
64
  $html.= $element->getAfterElementHtml();
65
  return $html;
66
  }
67
- }
27
  }
28
 
29
  $html = '<input type="hidden" id="' . $element->getHtmlId() . '" />';
30
+ $html .= '<select name="'. $this->getName($element->getName()) . '" style="width:auto">'."\n";
31
 
32
  for( $i=-2;$i<24;$i++ ) {
33
  $hour = str_pad($i, 2, '0', STR_PAD_LEFT);
40
  }
41
  $html.= '</select>'."\n";
42
 
43
+ $html.= '&nbsp;:&nbsp;<select name="'. $this->getName($element->getName()) . '" style="width:auto">'."\n";
44
  //$html.= '<option value="*" '. ( ($value_min == '*') ? 'selected="selected"' : '' ) .'>*</option>';
45
  for( $i=-1;$i<60;$i++ ) {
46
  $hour = str_pad($i, 2, '0', STR_PAD_LEFT);
51
  }
52
  $html.= '</select>'."\n";
53
 
54
+ $html.= '&nbsp;:&nbsp;<select name="'. $this->getName($element->getName()) . '"style="width:auto">'."\n";
55
  //$html.= '<option value="*" '. ( ($value_sec == '*') ? 'selected="selected"' : '' ) .'>*</option>';
56
  for( $i=-1;$i<60;$i++ ) {
57
  $hour = str_pad($i, 2, '0', STR_PAD_LEFT);
64
  $html.= $element->getAfterElementHtml();
65
  return $html;
66
  }
67
+ }
app/code/community/Logicbroker/Dropship360/Model/Inventory.php CHANGED
@@ -245,9 +245,9 @@ class Logicbroker_Dropship360_Model_Inventory extends Mage_Core_Model_Abstract
245
  public function saveTabVendorData($request){
246
 
247
  $inventoryStock = array();
248
- $update = $request['vendor_update'];
249
- $addNew = $request['vendor_new'];
250
- $sku = $request['sku'];
251
  $result = true;
252
 
253
  $error = $this->_validate($request);
@@ -257,7 +257,7 @@ class Logicbroker_Dropship360_Model_Inventory extends Mage_Core_Model_Abstract
257
  return $result = false;
258
  }
259
 
260
-
261
  foreach($update as $key => $data){
262
  if($data['is_delete'] == 1){
263
  $this->_deleteInvendorVendor($key);
@@ -268,7 +268,7 @@ class Logicbroker_Dropship360_Model_Inventory extends Mage_Core_Model_Abstract
268
 
269
  }
270
  }
271
-
272
  if(!empty($addNew)){
273
 
274
  foreach($addNew as $key => $data){
@@ -290,7 +290,9 @@ class Logicbroker_Dropship360_Model_Inventory extends Mage_Core_Model_Abstract
290
  protected function _validate($request)
291
  {
292
  $arrVendorCode = array();
293
- $isError = true;
 
 
294
  $errorArr = array();
295
  if(!empty($request['vendor_new'])){
296
  foreach ($request['vendor_new'] as $key => $data){
@@ -458,4 +460,4 @@ class Logicbroker_Dropship360_Model_Inventory extends Mage_Core_Model_Abstract
458
  }
459
 
460
 
461
- }
245
  public function saveTabVendorData($request){
246
 
247
  $inventoryStock = array();
248
+ $update = isset($request['vendor_update']) ? $request['vendor_update'] : '';
249
+ $addNew = isset($request['vendor_new']) ? $request['vendor_new'] : '';
250
+ $sku = isset($request['sku']) ? $request['sku'] : '';
251
  $result = true;
252
 
253
  $error = $this->_validate($request);
257
  return $result = false;
258
  }
259
 
260
+ if(!empty($update)){
261
  foreach($update as $key => $data){
262
  if($data['is_delete'] == 1){
263
  $this->_deleteInvendorVendor($key);
268
 
269
  }
270
  }
271
+ }
272
  if(!empty($addNew)){
273
 
274
  foreach($addNew as $key => $data){
290
  protected function _validate($request)
291
  {
292
  $arrVendorCode = array();
293
+ $isUniqueCombination = false;
294
+ $isEntrySame = false;
295
+ $isError = true;
296
  $errorArr = array();
297
  if(!empty($request['vendor_new'])){
298
  foreach ($request['vendor_new'] as $key => $data){
460
  }
461
 
462
 
463
+ }
app/code/community/Logicbroker/Dropship360/Model/Logicbroker.php CHANGED
@@ -51,11 +51,12 @@ class Logicbroker_Dropship360_Model_Logicbroker {
51
  $modelData = Mage::getModel('api/user');
52
  }
53
 
 
54
  $modelData->setData(array(
55
  'user_id'=> $userId,
56
  'username' => $fieldsetData['api_user_name'],
57
- 'firstname' => $fieldsetData['firstname'],
58
- 'lastname' => $fieldsetData['lastname'],
59
  'email' => $fieldsetData['email'],
60
  'api_key' => $password,
61
  'api_key_confirmation' => $password,
51
  $modelData = Mage::getModel('api/user');
52
  }
53
 
54
+
55
  $modelData->setData(array(
56
  'user_id'=> $userId,
57
  'username' => $fieldsetData['api_user_name'],
58
+ 'firstname' => 'logicbroker',
59
+ 'lastname' => '',
60
  'email' => $fieldsetData['email'],
61
  'api_key' => $password,
62
  'api_key_confirmation' => $password,
app/code/community/Logicbroker/Dropship360/Model/Observer.php CHANGED
@@ -82,6 +82,7 @@ public function tarPatch()
82
  }
83
 
84
  public function logicbrokerSourcing() {
 
85
  if(!Mage::getStoreConfig(self::CRON_STRING_PATH_SOURCING)) {
86
  return;
87
  }
82
  }
83
 
84
  public function logicbrokerSourcing() {
85
+
86
  if(!Mage::getStoreConfig(self::CRON_STRING_PATH_SOURCING)) {
87
  return;
88
  }
app/code/community/Logicbroker/Dropship360/Model/Orderitems.php CHANGED
@@ -102,12 +102,12 @@ class Logicbroker_Dropship360_Model_Orderitems extends Mage_Core_Model_Abstract
102
  public function updateOrderStatus($orderId,$itemId){
103
 
104
  $arrData = array();
105
- $orderStatus = $this->_changeAllItemStatus($orderId,$itemId,$updatedBy);
106
  if(is_null($orderStatus))
107
  return;
108
  $orderCollection = Mage::getModel('sales/order')->Load($orderId);
109
  $orderCollection->setStatus(Mage::getStoreConfig($orderStatus)); //done
110
- $orderCollection->addStatusToHistory(Mage::getStoreConfig($orderStatus), 'Order status and sourcing changed by '.$updatedBy, false);
111
  try{
112
  $orderCollection->save();
113
  }catch (Exception $e) {
102
  public function updateOrderStatus($orderId,$itemId){
103
 
104
  $arrData = array();
105
+ $orderStatus = $this->_changeAllItemStatus($orderId,$itemId);
106
  if(is_null($orderStatus))
107
  return;
108
  $orderCollection = Mage::getModel('sales/order')->Load($orderId);
109
  $orderCollection->setStatus(Mage::getStoreConfig($orderStatus)); //done
110
+ $orderCollection->addStatusToHistory(Mage::getStoreConfig($orderStatus), 'Order status and sourcing changed by user', false);
111
  try{
112
  $orderCollection->save();
113
  }catch (Exception $e) {
app/code/community/Logicbroker/Dropship360/Model/System/Config/Source/Vendorlist.php CHANGED
@@ -46,7 +46,7 @@ class Logicbroker_Dropship360_Model_System_Config_Source_Vendorlist
46
  ) )->where('lbRanking.is_dropship = ?','yes');
47
 
48
  $collectionVendor->getSelect ()->group('main_table.lb_vendor_code');
49
- if($collectionVendor > 0){
50
  foreach ($collectionVendor as $vendor) {
51
  $options[] = array(
52
  'label' => $vendor->getLbVendorName(),
@@ -88,7 +88,7 @@ class Logicbroker_Dropship360_Model_System_Config_Source_Vendorlist
88
 
89
  $collectionVendor->getSelect ()->group('main_table.lb_vendor_code');
90
 
91
- if($collectionVendor > 0){
92
  foreach ($collectionVendor as $vendor) {
93
  $options[] = array(
94
  'label' => $vendor->getLbVendorName(),
@@ -105,7 +105,7 @@ class Logicbroker_Dropship360_Model_System_Config_Source_Vendorlist
105
  $options =array();
106
  $collectionVendor = Mage::getModel ( 'logicbroker/ranking' )->getCollection ();
107
 
108
- if($collectionVendor > 0){
109
  foreach ($collectionVendor as $vendor) {
110
  $options[] = array(
111
  'label' => $vendor->getLbVendorCode().'--'.$vendor->getLbVendorName(),
46
  ) )->where('lbRanking.is_dropship = ?','yes');
47
 
48
  $collectionVendor->getSelect ()->group('main_table.lb_vendor_code');
49
+ if($collectionVendor->count() > 0){
50
  foreach ($collectionVendor as $vendor) {
51
  $options[] = array(
52
  'label' => $vendor->getLbVendorName(),
88
 
89
  $collectionVendor->getSelect ()->group('main_table.lb_vendor_code');
90
 
91
+ if($collectionVendor->count() > 0){
92
  foreach ($collectionVendor as $vendor) {
93
  $options[] = array(
94
  'label' => $vendor->getLbVendorName(),
105
  $options =array();
106
  $collectionVendor = Mage::getModel ( 'logicbroker/ranking' )->getCollection ();
107
 
108
+ if($collectionVendor->count() > 0){
109
  foreach ($collectionVendor as $vendor) {
110
  $options[] = array(
111
  'label' => $vendor->getLbVendorCode().'--'.$vendor->getLbVendorName(),
app/code/community/Logicbroker/Dropship360/Model/Uploadvendor.php CHANGED
@@ -63,7 +63,7 @@ class Logicbroker_Dropship360_Model_Uploadvendor extends Mage_Core_Model_Abstrac
63
  return Mage::getBaseDir('var') . DS . 'logicbrokervendorproduct' . DS;
64
  }
65
 
66
- public function insertCronEntry($filename,$data){
67
 
68
  $this->setFileName($filename);
69
  $this->setUpdatedBy('manually');
@@ -321,6 +321,7 @@ protected function checkDataIntigrity($csvData,$isFtp = false){
321
  $records = array();
322
  $success = array();
323
  $failure = array();
 
324
 
325
  $tableVendorImportLog = Mage::getSingleton ( 'core/resource' )->getTableName ( 'logicbroker/vendor_import_log' );
326
 
@@ -330,7 +331,7 @@ protected function checkDataIntigrity($csvData,$isFtp = false){
330
 
331
  if(count($csvData) <= 1 )
332
  {
333
- if(!$isFtp)
334
  $failure[$fileName.'.csv'] = 'File is empty';
335
  $this->_UploadCsvErrors['empty_file'] = 'File is empty';
336
  }
@@ -339,7 +340,7 @@ protected function checkDataIntigrity($csvData,$isFtp = false){
339
  {
340
  if($row == 0)
341
  continue;
342
- $data = trim($data);
343
  if(is_numeric($csvRowData[2]))
344
  $csvqty = floor($csvRowData[2]); // jira ticket 898 change
345
  else
@@ -347,14 +348,16 @@ protected function checkDataIntigrity($csvData,$isFtp = false){
347
  $records[$row] = array('magento_sku'=>$csvRowData[0],'vendor_sku'=>$csvRowData[1],'qty'=>$csvqty ,'cost'=>$csvRowData[3],'lb_vendor_code'=>$lb_vendor_code);
348
  }
349
 
350
- $requestData = array_chunk($records, 1, true);
351
-
352
  $this->conn->beginTransaction ();
353
- foreach($requestData as $dataArr){
 
 
 
354
  foreach($dataArr as $data){
355
  $result[] = $this->validateCsvData($data);
356
  }
357
  }
 
358
  foreach($result as $successOrfail){
359
  if($successOrfail['success']!="")
360
  $success[] = $successOrfail['success'];
@@ -375,14 +378,20 @@ protected function checkDataIntigrity($csvData,$isFtp = false){
375
  Mage::logException($e);
376
  }
377
  $this->checkDataIntigrity($csvData);
 
 
378
  $this->_UploadCsvErrors['other'] = implode(' , ', $this->_UploadCsvErrors['general_error']);
379
  unset($this->_UploadCsvErrors['general_error']);
 
 
380
  foreach($this->_UploadCsvErrors as $output){
381
  $foramterroroutput[] = '<li>'.$output.'</li>';
382
  }
 
383
  array_unshift($foramterroroutput,'<ul>');
384
  array_push($foramterroroutput,'</ul>');
385
  $errorDiscription = implode('',$foramterroroutput);
 
386
  $ftp_err = (count($failure) > 0) ? 'Missing/Bad Data' : '';
387
  $insert = 'INSERT INTO '.$tableVendorImportLog.'(lb_vendor_code,updated_by,success,failure,ftp_error,ftp_error_desc,created_at) VALUES ("'.$lb_vendor_code.'","'.Mage::getSingleton('admin/session')->getUser()->getUsername().'",'.count($success).','.count($failure).',"'.$ftp_err.'","'.$errorDiscription.'","'.now().'")';
388
 
@@ -914,8 +923,16 @@ public function testFtpConnection($request,$isFtp = false){
914
  $records = array();
915
  $success = array();
916
  $failure = array();
 
917
  $vendorCode = '';
918
  $tableVendorImportLog = Mage::getSingleton ( 'core/resource' )->getTableName ( 'logicbroker/vendor_import_log' );
 
 
 
 
 
 
 
919
  foreach($csvData as $row => $csvRowData)
920
  {
921
  if($row == 0)
@@ -930,9 +947,10 @@ public function testFtpConnection($request,$isFtp = false){
930
  $vendorCode = $csvRowData[0];
931
  }
932
 
 
 
933
  $requestData = array_chunk($records, 1, true);
934
 
935
- $this->conn->beginTransaction ();
936
  foreach($requestData as $dataArr)
937
  {
938
  foreach($dataArr as $data){
@@ -947,11 +965,13 @@ public function testFtpConnection($request,$isFtp = false){
947
  $failure[] = $successOrfail['failure'];
948
 
949
  }
 
950
  $this->checkDataIntigrity($this->_getCsvData($path),true);
951
-
 
952
  $this->_FtpErrors['other'] = implode(' , ', $this->_FtpErrors['general_error']);
953
  unset($this->_FtpErrors['general_error']);
954
-
955
  foreach($this->_FtpErrors as $output){
956
  $itemerroroutput[] = '<li>'.$output.'</li>';
957
  }
@@ -960,10 +980,11 @@ public function testFtpConnection($request,$isFtp = false){
960
 
961
  $ftp_err = (count($failure) > 0) ? 'Missing/Bad Data' : '';
962
  $insert = 'INSERT INTO '.$tableVendorImportLog.'(lb_vendor_code,updated_by,success,failure,ftp_error,ftp_error_desc,created_at) VALUES ("'.$vendorCode.'","FTP",'.count($success).','.count($failure).',"'.$ftp_err.'","'.implode('',$itemerroroutput).'","'.now().'")';
963
-
964
  $this->conn->query($insert);
965
  try {
966
  $this->conn->commit ();
 
967
  } catch ( Exception $e ) {
968
  $this->conn->rollBack ();
969
  Mage::log($e->getMessage(), null, 'logicbroker_ftp_vendor_inventory_import.log');
@@ -1054,7 +1075,10 @@ public function testFtpConnection($request,$isFtp = false){
1054
  * @return array
1055
  */
1056
  protected function validateCsvData($data, $isFtp=false){
1057
- $invalidData = false;
 
 
 
1058
  if($isFtp){
1059
  $inventoryCollectionResult = $this->getInventoryCollection($data,true);
1060
  $data['magento_sku'] = $inventoryCollectionResult['magento_sku'];
@@ -1090,7 +1114,7 @@ public function testFtpConnection($request,$isFtp = false){
1090
  $success += 1;
1091
  }
1092
  }else{
1093
- $failure[$data['magento_sku']] = $data['magento_sku'];
1094
  $this->_UploadCsvErrors['general_error'][] = 'Product sku <b>'.$data['magento_sku'].'</b> can not inserted ';
1095
  $this->_FtpErrors['general_error'][] = $data['lb_vendor_code'].' and '.$data['vendor_sku'] .' combination does not exist';
1096
  }
63
  return Mage::getBaseDir('var') . DS . 'logicbrokervendorproduct' . DS;
64
  }
65
 
66
+ public function insertCronEntry($filename,$data = null){
67
 
68
  $this->setFileName($filename);
69
  $this->setUpdatedBy('manually');
321
  $records = array();
322
  $success = array();
323
  $failure = array();
324
+ $foramterroroutput = array();
325
 
326
  $tableVendorImportLog = Mage::getSingleton ( 'core/resource' )->getTableName ( 'logicbroker/vendor_import_log' );
327
 
331
 
332
  if(count($csvData) <= 1 )
333
  {
334
+
335
  $failure[$fileName.'.csv'] = 'File is empty';
336
  $this->_UploadCsvErrors['empty_file'] = 'File is empty';
337
  }
340
  {
341
  if($row == 0)
342
  continue;
343
+ //$data = trim($data);
344
  if(is_numeric($csvRowData[2]))
345
  $csvqty = floor($csvRowData[2]); // jira ticket 898 change
346
  else
348
  $records[$row] = array('magento_sku'=>$csvRowData[0],'vendor_sku'=>$csvRowData[1],'qty'=>$csvqty ,'cost'=>$csvRowData[3],'lb_vendor_code'=>$lb_vendor_code);
349
  }
350
 
 
 
351
  $this->conn->beginTransaction ();
352
+ if(is_array($records) && !empty($records)){
353
+ $requestData = array_chunk($records, 1, true);
354
+
355
+ foreach($requestData as $dataArr){
356
  foreach($dataArr as $data){
357
  $result[] = $this->validateCsvData($data);
358
  }
359
  }
360
+
361
  foreach($result as $successOrfail){
362
  if($successOrfail['success']!="")
363
  $success[] = $successOrfail['success'];
378
  Mage::logException($e);
379
  }
380
  $this->checkDataIntigrity($csvData);
381
+ }
382
+ if(isset($this->_UploadCsvErrors['general_error'])){
383
  $this->_UploadCsvErrors['other'] = implode(' , ', $this->_UploadCsvErrors['general_error']);
384
  unset($this->_UploadCsvErrors['general_error']);
385
+ }
386
+
387
  foreach($this->_UploadCsvErrors as $output){
388
  $foramterroroutput[] = '<li>'.$output.'</li>';
389
  }
390
+
391
  array_unshift($foramterroroutput,'<ul>');
392
  array_push($foramterroroutput,'</ul>');
393
  $errorDiscription = implode('',$foramterroroutput);
394
+ unset($foramterroroutput);
395
  $ftp_err = (count($failure) > 0) ? 'Missing/Bad Data' : '';
396
  $insert = 'INSERT INTO '.$tableVendorImportLog.'(lb_vendor_code,updated_by,success,failure,ftp_error,ftp_error_desc,created_at) VALUES ("'.$lb_vendor_code.'","'.Mage::getSingleton('admin/session')->getUser()->getUsername().'",'.count($success).','.count($failure).',"'.$ftp_err.'","'.$errorDiscription.'","'.now().'")';
397
 
923
  $records = array();
924
  $success = array();
925
  $failure = array();
926
+ $itemerroroutput = array();
927
  $vendorCode = '';
928
  $tableVendorImportLog = Mage::getSingleton ( 'core/resource' )->getTableName ( 'logicbroker/vendor_import_log' );
929
+
930
+ if(count($csvData) <= 1 )
931
+ {
932
+
933
+ $failure[] = 'File is empty';
934
+ $this->_FtpErrors['empty_file'] = 'File is empty';
935
+ }
936
  foreach($csvData as $row => $csvRowData)
937
  {
938
  if($row == 0)
947
  $vendorCode = $csvRowData[0];
948
  }
949
 
950
+ $this->conn->beginTransaction ();
951
+ if(is_array($records) && !empty($records)){
952
  $requestData = array_chunk($records, 1, true);
953
 
 
954
  foreach($requestData as $dataArr)
955
  {
956
  foreach($dataArr as $data){
965
  $failure[] = $successOrfail['failure'];
966
 
967
  }
968
+
969
  $this->checkDataIntigrity($this->_getCsvData($path),true);
970
+ }
971
+ if(isset($this->_FtpErrors['general_error'])){
972
  $this->_FtpErrors['other'] = implode(' , ', $this->_FtpErrors['general_error']);
973
  unset($this->_FtpErrors['general_error']);
974
+ }
975
  foreach($this->_FtpErrors as $output){
976
  $itemerroroutput[] = '<li>'.$output.'</li>';
977
  }
980
 
981
  $ftp_err = (count($failure) > 0) ? 'Missing/Bad Data' : '';
982
  $insert = 'INSERT INTO '.$tableVendorImportLog.'(lb_vendor_code,updated_by,success,failure,ftp_error,ftp_error_desc,created_at) VALUES ("'.$vendorCode.'","FTP",'.count($success).','.count($failure).',"'.$ftp_err.'","'.implode('',$itemerroroutput).'","'.now().'")';
983
+ unset($itemerroroutput);
984
  $this->conn->query($insert);
985
  try {
986
  $this->conn->commit ();
987
+
988
  } catch ( Exception $e ) {
989
  $this->conn->rollBack ();
990
  Mage::log($e->getMessage(), null, 'logicbroker_ftp_vendor_inventory_import.log');
1075
  * @return array
1076
  */
1077
  protected function validateCsvData($data, $isFtp=false){
1078
+ $invalidData = false;
1079
+ $success = 0;
1080
+ $failure = 0;
1081
+ $ignoreData = array();
1082
  if($isFtp){
1083
  $inventoryCollectionResult = $this->getInventoryCollection($data,true);
1084
  $data['magento_sku'] = $inventoryCollectionResult['magento_sku'];
1114
  $success += 1;
1115
  }
1116
  }else{
1117
+ $failure+=1;
1118
  $this->_UploadCsvErrors['general_error'][] = 'Product sku <b>'.$data['magento_sku'].'</b> can not inserted ';
1119
  $this->_FtpErrors['general_error'][] = $data['lb_vendor_code'].' and '.$data['vendor_sku'] .' combination does not exist';
1120
  }
app/design/adminhtml/default/default/template/logicbroker/result.phtml CHANGED
@@ -32,11 +32,14 @@
32
 
33
  <?php foreach($logArray as $valueArray){ ?>
34
  <tr>
 
 
35
  <?php foreach($valueArray as $value){ ?>
36
 
37
  <td class="a-right "><?php echo $value ?> </td>
38
 
39
  <?php } ?>
 
40
  </tr>
41
  <?php } ?>
42
  </tbody>
@@ -71,4 +74,4 @@ for(var i=0; i<= headingArr.length; i++ )
71
  <?php else: ?>
72
  <h1>No Data Found</h1>
73
  </div>
74
- <?php endif; ?>
32
 
33
  <?php foreach($logArray as $valueArray){ ?>
34
  <tr>
35
+ <?php unset($logArray['created']); ?>
36
+ <?php if(is_array($valueArray)){ ?>
37
  <?php foreach($valueArray as $value){ ?>
38
 
39
  <td class="a-right "><?php echo $value ?> </td>
40
 
41
  <?php } ?>
42
+ <?php } ?>
43
  </tr>
44
  <?php } ?>
45
  </tbody>
74
  <?php else: ?>
75
  <h1>No Data Found</h1>
76
  </div>
77
+ <?php endif; ?>
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>dropship360</name>
4
- <version>2.0.23</version>
5
  <stability>stable</stability>
6
  <license uri="http://logicbroker.com/portfolio/magento/license">Customer License</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>logicbroker enables Magento merchants to seamlessly connect with vendors via EDI for drop ship automation.</summary>
10
  <description>logicbroker is the most complete eCommerce integration platform available and offers a true end-to-end EDI solution for Magento. Beyond its EDI capabilities, logicbroker&#x2019;s flexible connectivity automates and simplifies tasks like drop ship deployment and omni-channel retailing. logicbroker connects Magento to backend systems like ERPs (Dynamics, Netsuite, Exact), accounting software (QuickBooks), and order management systems (M.O.M) to seamlessly exchange information</description>
11
- <notes>package is stable.</notes>
12
  <authors><author><name>Logicbroker</name><user>Logicbroker</user><email>magentoext@logicbroker.com</email></author></authors>
13
- <date>2015-02-12</date>
14
- <time>10:51:10</time>
15
- <contents><target name="magecommunity"><dir name="Logicbroker"><dir name="Dropship360"><dir name="Block"><dir name="Adminhtml"><dir name="Inventory"><dir name="Edit"><dir name="Tab"><file name="Addvendorfield.php" hash="aad1cfdc7e9c95e5c0000d0e3cfe1618"/><file name="Lbvendor.php" hash="d2c6075bf2a39b241aae4152052778b9"/><file name="Vendortabhistory.php" hash="114bffa65fc4ada5a354c997e9070728"/></dir><file name="Vendortab.php" hash="81b94c11b74e82640a95c5182a0a3cc2"/><file name="Vendortabhistory.php" hash="b5dd42ad12faa98328dacaddb2860a0c"/></dir><file name="Grid.php" hash="6cac11d609cb0d7f4ce744e6709fce41"/></dir><file name="Inventory.php" hash="803d0541960263312a5854d7a808d332"/><file name="Logicbroker.php" hash="a34417941b908c25418cde5984bb1d14"/><file name="Notification.php" hash="401565593ab615836776a459b5516d02"/><dir name="Ranking"><file name="Grid.php" hash="13ecabf71b55ef342eb02f4b44adcabf"/></dir><file name="Ranking.php" hash="59005b6544765de8c41eba862b81d44d"/><dir name="Sales"><dir name="Order"><dir name="View"><file name="Items.php" hash="6d153d42f71898e7d20edf862e58f171"/></dir></dir></dir><file name="Showhistory.php" hash="836ed9f14a3cadb10e3a531bcf8e4395"/><dir name="Sourcing"><dir name="Edit"><file name="Form.php" hash="876edb971916ad0033e4264786b1dd67"/><dir name="Tab"><file name="Form.php" hash="f2e91525711c4ea4afb3b2d639c4ae7f"/></dir><file name="Tabs.php" hash="ef1501d2821bbb92e9b9033368f1040e"/></dir><file name="Edit.php" hash="3f8947ee74eb2b3c78302ade26e5ecdb"/><file name="Grid.php" hash="bcfd5eff016c2b508cc2ce5b85da1a4c"/></dir><file name="Sourcing.php" hash="6a6346bcdbc8c0dcc3da895f8c19506d"/><dir name="System"><dir name="Config"><file name="Crontime.php" hash="5742084192a24398990ee6f6fac5115b"/><dir name="Fieldset"><file name="Hint.php" hash="50a8bd6d0cd87af35b71fb4c5a11f67f"/></dir><file name="Ftpconnectionbutton.php" hash="6a3b3b65888ce196a397e4c8af61589b"/><file name="Helplink.php" hash="acfd5b07538a81a287f01fb812358fda"/><file name="Singuplink.php" hash="78c984f1b28ff97e3f781823515cee72"/><file name="Submitbutton.php" hash="a0cb782027cf4abe9e46bf6b835269ab"/><file name="Time.php" hash="681a859ce8cd1b20af1970851aa234b4"/></dir></dir><dir name="Upload"><dir name="Edit"><file name="Form.php" hash="285a80975ab2502b615857e708f3f1a3"/></dir></dir><file name="Upload.php" hash="f2a8323d32bdbddc53bd97d09d5f97e5"/><file name="Vendorproductuploadhistory.php" hash="2f2eff8b9294fa069bda0edb3e6e7956"/><dir name="Widget"><dir name="Grid"><dir name="Column"><file name="Nameaction.php" hash="04c09bb31f44eca6115997c6602ca6f2"/><file name="Orderaction.php" hash="33baaac58e53141c3122f8e7acf34621"/><file name="Skuaction.php" hash="6082778173f08ae42c81f8fc9c83b365"/><file name="Textaction.php" hash="205d1ed2ad8ebd8e236dc2b2bb49ce22"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="6e0f8a92d1adeda5a3ca402a45b58a40"/></dir><dir name="Model"><dir name="Api2"><file name="Createroleandrule.php" hash="7ce65526f1934324dab6ea871b40b04d"/><dir name="Inventory"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="221a9fac801bdc13f0c8969fa4e9b8b8"/></dir><dir name="Customer"><file name="V1.php" hash="14a090b850abd03fbac17ead1ef6e40c"/></dir><dir name="Guest"><file name="V1.php" hash="55add18c51be78ef2d80cfb68b640d5a"/></dir></dir><file name="Rest.php" hash="b36b5cee2e408ecace45b2136d8f8db5"/></dir><file name="Inventory.php" hash="efc9e5e8d97d3379a4f1264f446d53bd"/><dir name="Product"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="b993dfec11008696227b19d132ebf2b5"/></dir><dir name="Customer"><file name="V1.php" hash="14a090b850abd03fbac17ead1ef6e40c"/></dir><dir name="Guest"><file name="V1.php" hash="0a7e1d540852188098258bbf7e2a067f"/></dir></dir><file name="Rest.php" hash="c464b15b68c87373497609fae0bc3ac7"/></dir><file name="Product.php" hash="98dd1988e8712b5cd8240538c54c9c4b"/></dir><file name="Inventory.php" hash="84c6a1530b3bed6e6da5f659b083603b"/><file name="Inventorylog.php" hash="5efe3a866e878c94511f7720073f5b58"/><file name="Logicbroker.php" hash="cf97dbd4e9d79f5259474a2a049c44d5"/><file name="Observer.php" hash="11b9f7814d8479123524a4aaa6bc681a"/><dir name="Order"><file name="Api.php" hash="93cb5fdc395bed9684d8b6ad4f822c34"/></dir><file name="Orderitems.php" hash="572643bba10e807ddcda3632fc158cd8"/><file name="Ordersourcing.php" hash="c297bdc3eef51b42ed37a026375039ac"/><file name="Productimport.php" hash="3f86f8e03efa18a0d6e58f034dd7e251"/><file name="Ranking.php" hash="99e8bf4c97012ede16dadd253653a986"/><file name="Rankinglog.php" hash="6b00a2f0b997ad634bf38a9aa7d89404"/><dir name="Resource"><dir name="Inventory"><file name="Collection.php" hash="64abac572c4cdbbd15bec30f0c4614ef"/></dir><file name="Inventory.php" hash="b6853986d109fb7c3ba2c3db32cd0381"/><dir name="Inventorylog"><file name="Collection.php" hash="e5f33b8a0db2acc304ff1f0706c52bf2"/></dir><file name="Inventorylog.php" hash="55255ff69e778710fd2e29700e9da06d"/><dir name="Orderitems"><file name="Collection.php" hash="d3c95b0634b37948b2d0cb19e3637fd6"/></dir><file name="Orderitems.php" hash="f34b5d078a9498d10958395c6875d969"/><dir name="Ordersourcing"><file name="Collection.php" hash="df7fede92820a7b4a50aeac2d32cd7ef"/></dir><file name="Ordersourcing.php" hash="0409c90fb55997b340a54888a6f4b3bf"/><dir name="Ranking"><file name="Collection.php" hash="9efcdcab905872553f0828ecd1670aa6"/></dir><file name="Ranking.php" hash="bb5db1250b0f6ce79f0928cd5aeb49fd"/><dir name="Rankinglog"><file name="Collection.php" hash="5f7dc2e0b408c240220abc0ac36b7868"/></dir><file name="Rankinglog.php" hash="889c96c4a2dd3b45cf6aa322ee4e28ae"/><file name="Setup.php" hash="d7d6e67542b137c450b6fe8ed339f2fe"/><dir name="Uploadvendor"><file name="Collection.php" hash="b24a06b05dc7570b1d904f118401a7eb"/></dir><file name="Uploadvendor.php" hash="c94c815f0f3d2e1646a453b08754e032"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Sourcing"><file name="Cronbackorder.php" hash="09eba6b5a6710859b512ffc129fb8c20"/><file name="Cronsourcing.php" hash="da24f9f10d4b502c7946605c67a4d4a9"/></dir><dir name="Uploadvendor"><file name="Cron.php" hash="38839277660b76c0d0429c1b01cbfb1b"/></dir></dir><dir name="Source"><file name="Attributecodes.php" hash="ff3ef88a0a3064de37987c5a029f5479"/><file name="Category.php" hash="c3471f520fa80fdd060ecb2fd5dcc590"/><file name="Ediqualifier.php" hash="6a8b3a53b551995a4631c96e2f037f73"/><file name="Ftptype.php" hash="bf8886b553b5cc0a42fa9b9e55b6ac08"/><file name="Optionvalues.php" hash="eacf7fa61d5a7cf81022c16884fe4ac5"/><file name="Ranktype.php" hash="84df4a5459e91e337a584d267b6f6ed2"/><file name="Store.php" hash="e1c243d00b60e6101c92942e4e763d94"/><file name="Time.php" hash="faa6420f941c775244cd70c3eeac9238"/><file name="Vendorlist.php" hash="c9f52492c9c53bdeac0e86da8c546d01"/></dir></dir></dir><file name="Uploadvendor.php" hash="77b5a3886954d325e7812dc5cb0959da"/><dir name="Versions"><dir name="Api"><file name="V2.php" hash="81456d30305772391898bbde88a15a2f"/></dir><file name="Api.php" hash="57e656cd9d02c57db138a49795b124c6"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="InventoryController.php" hash="229590b844138efe3430d7acdedffaad"/><file name="LogicbrokerController.php" hash="e5888fbd6e2e1f3c305ef30541608df0"/><file name="RankingController.php" hash="630fc9bbf72b4ce222572b385fc005a4"/><file name="SourcingController.php" hash="afe54a234da78e53b54a8d48a64d48d0"/><file name="UploadController.php" hash="b77447a1151975a940fbd8ea1da27df4"/></dir></dir><dir name="data"><dir name="dropship360_setup"><file name="data-install-1.0.3.php" hash="ce1e30bcec7ba8e45420703ae216ca1c"/><file name="data-upgrade-1.0.3-1.0.4.php" hash="95ebfa01d549e177a5741a20f52c1a5e"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="3f78bf4d3bf336ceeb514a03544b8324"/><file name="api.xml" hash="238e53cfef1df018a58ee19c20daf62c"/><file name="api2.xml" hash="c2c5e21433b9ae7809ad062bb0047c84"/><file name="config.xml" hash="29611f5e0f72e94df878c730bf5db677"/><file name="jstranslator.xml" hash="c4401a0c80dd792208ee3bbdbe6c27ff"/><file name="system.xml" hash="3b9bc80458ab7ef2718b818dd6e514a0"/><file name="wsdl.xml" hash="5b88a5e23e8885142dc26a998be279ed"/></dir><dir name="sql"><dir name="dropship360_setup"><file name="mysql4-install-1.0.3.php" hash="541820b4435e190809954440cd2615d0"/><file name="mysql4-upgrade-1.0.3-1.0.4.php" hash="b6cc9a10e1d5ca8839bffd399910ba80"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="logicbroker"><file name="addvendorfields.phtml" hash="76b12eceda6ec571fc63dabb762ee62a"/><dir name="bundle"><file name="renderer.phtml" hash="6cf6b1b3da98cae6545bed980db3daf4"/></dir><dir name="downloadable"><file name="downloadable.phtml" hash="01b262bd02461b7116de0032c6272ee8"/></dir><dir name="import"><dir name="form"><file name="after.phtml" hash="fe6b87f7ca329260eb0fd33e1e0d99b7"/><file name="before.phtml" hash="d6fb33bbb207350b02da28075fe9712e"/></dir><dir name="frame"><file name="result.phtml" hash="3593b07a3b9540c7eea44d29fbf3c272"/></dir></dir><file name="inline-edit.phtml" hash="b6046c9efc1f621030cdc4c3cf4d67e7"/><file name="popup.phtml" hash="4f7511bf396c0cd31891dd2bd1eb7c9c"/><file name="result.phtml" hash="96e7edef972fb5bb737d0cf7b5877ca3"/><dir name="sales"><file name="default.phtml" hash="d9fa96a63896757545db95935745add9"/><file name="items.phtml" hash="120a90cb44a272296b985b109d3f77fe"/></dir><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="7b409b95a71e7315fe672ffe075a6323"/></dir><file name="submitbutton.phtml" hash="fecf50356a1a46b8573c40af65ab066c"/></dir></dir><file name="upload_vendor_product.phtml" hash="2231a9d312d53a258455c8fa4c745055"/><file name="vendor_ranking.phtml" hash="a2b4c9c930c3f93d27e06e605547ca19"/><file name="vendor_upload_product_history.phtml" hash="cd688b713797c1874baa13a0f730eb34"/><file name="vendorproducttab.phtml" hash="437bcd5c9cd8f34c56550b17bd794d40"/><file name="vendorproducttabhistory.phtml" hash="4e61503a376c875b5c5c796e2080d90c"/><file name="window.phtml" hash="ada7a7a4ac7b47e2806c17d613460b80"/></dir></dir><dir name="layout"><file name="logicbroker.xml" hash="3e58b9f5637d204891054aaa0e16c6fc"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Logicbroker_Dropship360.xml" hash="67068aaea26ac3534322d12dbb7c0c1a"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Logicbroker_Dropship360.csv" hash="34e85a999b73c4a216eed04dfffa756d"/><dir name="template"><dir name="email"><file name="logicbroker.html" hash="20ec1acaa64500708bdc6b1c86a33668"/></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="logicbroker"><dir><dir name="extjs"><file name="bootstrap.js" hash="a82e5f0ee98f60e92bb5774e25c480f7"/><dir name="css"><file name="example.css" hash="7fcbf7ea6c0466ac334f00e12ac4be7e"/><file name="ext-all.css" hash="ecf28869070c6511559c6a5286a6f6cb"/><dir name="images"><dir name="boundlist"><file name="trigger-arrow.png" hash="4655916b183b914b357da69b86414f52"/></dir><dir name="box"><file name="corners-blue.gif" hash="86fd4c5664e0971bfc11959e8442604c"/><file name="corners.gif" hash="d2d1bc2085b369ce35ffd20c0121676e"/><file name="l-blue.gif" hash="ced9ffbf66ea39e77083a591f8257267"/><file name="l.gif" hash="c4d9dbbdc59ae06b5e9e72a6a865c981"/><file name="r-blue.gif" hash="82dbb522a80e3246f6297719371a9494"/><file name="r.gif" hash="bf1e1d4a45f951ae656968a8c834f04a"/><file name="tb-blue.gif" hash="7c4b19eb682afdc1bde0640d2321fb25"/><file name="tb.gif" hash="dd3f63afe7ba90983ba73dad1c66bf2f"/></dir><dir name="button"><file name="arrow.gif" hash="44b6dbf385236a2697932a7a3e20b4a0"/><file name="btn.gif" hash="40ac871755023cc11ad15dcd77b54dbf"/><file name="group-cs.gif" hash="5dc0252bd9ecf72f98d858427054cf08"/><file name="group-lr.gif" hash="cb7813012d6be17e083835d60037029e"/><file name="group-tb.gif" hash="4edf9b7db13b1331282eed298384cab9"/><file name="s-arrow-b-noline.gif" hash="30d04f652551f1df9d59d33a99c9a320"/><file name="s-arrow-b.gif" hash="a957a6d618d19b92a2d1a7a1b50f5235"/><file name="s-arrow-bo.gif" hash="53a15d7907a017122f7f60402c435753"/><file name="s-arrow-light.gif" hash="6576de0eb6bec88f8e37c12829939573"/><file name="s-arrow-noline.gif" hash="13f08a275c58135365b8e58b3177ab1a"/><file name="s-arrow-o.gif" hash="5005d8dea2f9456aaf2ab27ca7bf5651"/><file name="s-arrow.gif" hash="bc71296ddf9c7ef5aa56b09ca3512c8a"/></dir><dir name="datepicker"><file name="datepicker-footer-bg.gif" hash="52e65759b3e8c81d3c3f2d0484ec9e58"/><file name="datepicker-footer-bg.png" hash="deca7c712da61f827c61b6219b3246af"/><file name="datepicker-header-bg.gif" hash="5cda0bb28a42b7023d24d48b9a0e1685"/><file name="datepicker-header-bg.png" hash="93fb8e8f1fb52d38e61ab064187f11de"/></dir><dir name="dd"><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-no.gif" hash="ae536c37391ba78143b5c8283cec8d13"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/></dir><dir name="editor"><file name="tb-sprite.gif" hash="a2f06caddc2fb729db5cbbd874491128"/></dir><dir name="form"><file name="checkbox.gif" hash="75d685cab5665a935660a3d04f71c2be"/><file name="clear-trigger.gif" hash="97b3e5e9edf27b50d63d48098c2f1eae"/><file name="date-trigger.gif" hash="30b5bace9f3dac358716c1415270f874"/><file name="error-tip-corners.gif" hash="364474276178c7b48b6270056b42b808"/><file name="exclamation.gif" hash="37dbe02e3cbde0f6780650bfd8535e38"/><file name="radio.gif" hash="0239bdaef529be68530b86266a24742c"/><file name="search-trigger.gif" hash="559ef372cf27a38678d84e8c0b7237fc"/><file name="spinner-small.gif" hash="122ab763adfc5f379def95269889a876"/><file name="spinner.gif" hash="eee2bdd07a8136d2eff635b721838b4c"/><file name="text-bg.gif" hash="d5ba54c1f417e6a72cbce8b909078727"/><file name="trigger-square.gif" hash="c1cbaecc91209f77e2d20235c137e13e"/><file name="trigger-tpl.gif" hash="d7be20f0dc38f4f46cd318fe32cf3ce3"/><file name="trigger.gif" hash="447d5b600f7527f5c8cc49e7453bbb27"/></dir><dir name="grid"><file name="arrow-left-white.gif" hash="b04e859bdcbd21ad1f06b8bfa7881df8"/><file name="arrow-right-white.gif" hash="714eb00f8134dde3a65c83f3f71ad2c4"/><file name="cell-special-bg.gif" hash="60b05fd8cd98b6109112775a4cf2ad0e"/><file name="cell-special-bg.png" hash="a6487b6bd88ce1a726d41140595235be"/><file name="cell-special-selected-bg.gif" hash="2d4830861beacb8945d22b3bb79ad9c2"/><file name="cell-special-selected-bg.png" hash="df8d68826afb17ab5ed333565f531fdf"/><file name="checked.gif" hash="cb7b3408df56f5585aaa1242cd2f0b45"/><file name="col-move-bottom.gif" hash="9c38bcb5cee1dc9b4ce64ad9ab1386f8"/><file name="col-move-top.gif" hash="c4584202d5172464050f675d396d1c6f"/><file name="column-header-bg.gif" hash="1c0619ef4faf05d33d53e46f164664d0"/><file name="column-header-bg.png" hash="2c8e36b59e78fe93fcc13360bebd7f7f"/><file name="column-header-over-bg.gif" hash="8af4b32e4a033f3ac980277efee1d0b2"/><file name="column-header-over-bg.png" hash="25da418192d7f8bb7fbacc3baf6731fb"/><file name="columns.gif" hash="ef35242fa6514a81d17d5f700f561b7c"/><file name="dd-insert-arrow-left.gif" hash="fee4ee1bfc31c909a83713656497c8b2"/><file name="dd-insert-arrow-left.png" hash="5050c8e897cec907d6319f397a66c474"/><file name="dd-insert-arrow-right.gif" hash="b03355f58b96d167f0770b14358e5d88"/><file name="dd-insert-arrow-right.png" hash="46faba03ba3a35d750b5b758cc3d5d2c"/><file name="dirty.gif" hash="decca3b96e2c37cf6eb04ddb0d9f669b"/><file name="done.gif" hash="365266930a93451414fe51ffc524a196"/><file name="drop-no.gif" hash="b53ca86d60fbcc7a45c8917299218bfd"/><file name="drop-yes.gif" hash="af96f4c3b32a470db2f38abb521b5c97"/><file name="footer-bg.gif" hash="65ed63e44c6149f1127ad3b4be4e0108"/><file name="grid-blue-hd.gif" hash="dd35d5c1202c440c2d1a945b335984d3"/><file name="grid-blue-split.gif" hash="0494ba49974ff2bc1bf81e1d82dfee18"/><file name="grid-hrow.gif" hash="55972a5063d80f35fb6b95a79bb0018a"/><file name="grid-loading.gif" hash="9ac6f737eb9b15272f12b00bfeb3c3c6"/><file name="grid-split.gif" hash="3ef419d4b9421d8e94f673a6238dc4c0"/><file name="grid-vista-hd.gif" hash="675f403e8a9cb5ab4bed725da9fe2023"/><file name="grid3-hd-btn.gif" hash="e3e77072c16a6b27556236961f29c552"/><file name="grid3-hrow-over.gif" hash="a92d8f6c106943995720f2884634670e"/><file name="grid3-hrow.gif" hash="3e4484ea8db10af1320808c8477346ea"/><file name="grid3-rowheader.gif" hash="b4491705564909da7f9eaf749dbbfbb1"/><file name="group-by.gif" hash="3ff8c5936e358cf213227509c9bee95a"/><file name="group-collapse.gif" hash="fd6a72ffa784170d83f9f13322266ca8"/><file name="group-expand-sprite.gif" hash="d0f614a387292177f3acb0c95a4cd760"/><file name="group-expand.gif" hash="8a9ad3ed3d74c2911b7f101268a1843b"/><file name="hd-pop.gif" hash="e5f27a2f68cc2d13b11cf41c46d298dc"/><file name="hmenu-asc.gif" hash="048e0bc30f7c39d473dad5dabcbe03f2"/><file name="hmenu-desc.gif" hash="f0a987b34b003b25a7c82624d41f018a"/><file name="hmenu-lock.gif" hash="bcef18e25342c69c37c44dab87086065"/><file name="hmenu-lock.png" hash="2a3b0b441834f443c1086930939efdae"/><file name="hmenu-unlock.gif" hash="8cc8205dafa587ef02d8a86903ae8074"/><file name="hmenu-unlock.png" hash="c1f61df70b98c5498ea81e7e7b9effbb"/><file name="invalid_line.gif" hash="04a88e97b56e8a8ece4a66d49cc78828"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="mso-hd.gif" hash="37fba9c02f0eefe57f655890eef1c4a1"/><file name="nowait.gif" hash="23c91166dbb16ba8655363321bf5a400"/><file name="page-first-disabled.gif" hash="8d3185028c541cbcce67b5909c04824e"/><file name="page-first.gif" hash="16ec00fa770d860b768cf5034ddfca96"/><file name="page-last-disabled.gif" hash="1d123237ceeb5109a1b9274f0cf19d73"/><file name="page-last.gif" hash="ef524dd0b8dfe4eefecffaa1c0bb8edd"/><file name="page-next-disabled.gif" hash="0f4b8681772c91921fa93ede9c755ea0"/><file name="page-next.gif" hash="f6f9d2209dfc99912ffc9848d97646db"/><file name="page-prev-disabled.gif" hash="eefcbed15c8d37a89618b08f7b224297"/><file name="page-prev.gif" hash="80daad880483eed682b22ec70514ecc4"/><file name="pick-button.gif" hash="b431fdf306f1e2f033d0a431996de93f"/><file name="property-cell-bg.gif" hash="1b65e348d6db0c7b6c9aa5478c15a052"/><file name="property-cell-selected-bg.gif" hash="a94039f89dec164896ceff1fbdf6dbc5"/><file name="refresh-disabled.gif" hash="105c62973ba69710bc2b41b443af5198"/><file name="refresh.gif" hash="f1a2e7df30394c5a30bc76c2d09013b7"/><file name="row-check-sprite.gif" hash="2d0aa7e501c3e6f97a97faf75e35d3c3"/><file name="row-expand-sprite.gif" hash="be81199d9d4fa69bef47a8f036a5a7d8"/><file name="row-over.gif" hash="f639094bd0560aefabc86e51a825f23d"/><file name="row-sel.gif" hash="ca87d6b950386edd5e17c985769d9101"/><file name="sort-hd.gif" hash="2640addef6e987b4c5dfa4c8c2dfb10c"/><file name="sort_asc.gif" hash="2352874b5f636ca331fe9509a2f9bdd7"/><file name="sort_desc.gif" hash="d104fcf119d40c51554ddb8b377142e5"/><file name="unchecked.gif" hash="31846118bddc7945b595ea2090589cf1"/><file name="wait.gif" hash="b0cd5a5dc070c705ebf8814a909802c3"/></dir><dir name="layout"><file name="mini-bottom.gif" hash="ae8e3674fd32997dc5217d5d6199a5a5"/><file name="mini-left.gif" hash="8654fdb45ecf4406af2fce1d3beb7596"/><file name="mini-right.gif" hash="cbdf9fb0c45466b4217ac9f7bd6a9ed4"/><file name="mini-top.gif" hash="fbd91e98576f66fd2702495251b15240"/></dir><dir name="menu"><file name="checked.gif" hash="cb7b3408df56f5585aaa1242cd2f0b45"/><file name="group-checked.gif" hash="f7973443d91e5e074013f1b07ee79479"/><file name="item-over.gif" hash="29055ede2ff0584d0374a2ff5a987382"/><file name="menu-item-active-bg.gif" hash="5956b7cac9aabf4c670c2997bba12d47"/><file name="menu-item-active-corners.gif" hash="9a073e133a65c4e1b3bd4098ca72552a"/><file name="menu-item-active-sides.gif" hash="cf1981c1027a8c962a9d8c0f6d61c098"/><file name="menu-parent.gif" hash="d303ad7e3ced891736e80f77e1d4e51d"/><file name="menu.gif" hash="ae128d5f3f3a39213f3d4e23aec8728f"/><file name="unchecked.gif" hash="31846118bddc7945b595ea2090589cf1"/></dir><dir name="progress"><file name="progress-default-bg.gif" hash="b170dfad9f747e1aca54e47c4415c2d3"/></dir><dir name="shared"><file name="blue-loading.gif" hash="dc2fd7c0ed853c56b4ac65710af3bd0a"/><file name="calendar.gif" hash="81296cff1f97f5365524f2b9dcf626da"/><file name="glass-bg.gif" hash="bc2cd5c5ac9b3874d956c892d23f2119"/><file name="hd-sprite.gif" hash="6a54ae98bef53397d52282201852c204"/><file name="icon-error.gif" hash="f477b54b6b8361362e96c2218dce7ea0"/><file name="icon-info.gif" hash="ec6b7a5d4caeea767c8674689bae47c6"/><file name="icon-question.gif" hash="2713644a8aa582728d71e35eca62fbcd"/><file name="icon-warning.gif" hash="3f20258272af0e00f6b7531b3b9aee35"/><file name="large-loading.gif" hash="d96f6517e00399c37a9765e045eaaf22"/><file name="left-btn.gif" hash="6bf30c6cf0b5d70436c3e463b5532b35"/><file name="loading-balls.gif" hash="ac062b94ed674aaa50a6c18df92acdf3"/><file name="right-btn.gif" hash="e7ad3a7f4814791cecf1b90e77e9e139"/><file name="shadow-c.png" hash="7ab6163237099f2529452b88953a4049"/><file name="shadow-lr.png" hash="986270d8ab4330fa7499dc33ed135598"/><file name="shadow.png" hash="860bf4f690d2ea2aba7b11500925da62"/><file name="warning.gif" hash="448dc934a7f0dd6092b51f88a1e47b2d"/></dir><dir name="sizer"><file name="e-handle-dark.gif" hash="b86289f41d7ad1a7401dd2b2a9b3c3d8"/><file name="e-handle.gif" hash="510edc95ebaa36306916c50ca10596f7"/><file name="ne-handle-dark.gif" hash="115f71b851c7f0b5f354caa7b8dfff15"/><file name="ne-handle.gif" hash="8e268b962dc909d275997b572ff17a72"/><file name="nw-handle-dark.gif" hash="4a361e6920b2e34a39fd425a515c83b9"/><file name="nw-handle.gif" hash="1120600505249c38c3d1cc2ab120cd13"/><file name="s-handle-dark.gif" hash="4a6bf15d308a4ae580dd03cbd431a95c"/><file name="s-handle.gif" hash="5e3338cb09e9df7f52383d6b1423fc86"/><file name="se-handle-dark.gif" hash="f3d8d8aac23e3e9633072e2366cda847"/><file name="se-handle.gif" hash="71edc3f63f79f447d2c81ee09e1fbbc3"/><file name="square.gif" hash="4431ea1954bfd2a9cea0931f07fc7ffa"/><file name="sw-handle-dark.gif" hash="44b2400d873cf8a23d84424827cde44d"/><file name="sw-handle.gif" hash="c3e0befc4208a51180344765fd7deeda"/></dir><dir name="slider"><file name="slider-bg.gif" hash="a6286f74e6de7414663483aa08305a2f"/><file name="slider-bg.png" hash="1fbffa04044bed9262836d2a710f9ee1"/><file name="slider-thumb.gif" hash="e8b6ac40fa2709692ed0d806ef90b0c3"/><file name="slider-thumb.png" hash="24a893c9606f3a6892eb62f29a08870c"/><file name="slider-v-bg.gif" hash="9d8e5f0a4afa0e2256b999c856ba1a9e"/><file name="slider-v-bg.png" hash="0682c28925a7296730f7f221e4a76b96"/><file name="slider-v-thumb.gif" hash="c871f735637e1c383862aacecabb554a"/><file name="slider-v-thumb.png" hash="2fc3430dc351d9a118e048b9aafb7c3c"/></dir><dir name="tab-bar"><file name="scroll-left.gif" hash="611cea625f98ee5c0204dc186da8a05e"/><file name="scroll-right.gif" hash="b31b5bb81129aa52755f7f0becedc624"/><file name="tab-bar-default-bg.gif" hash="d8e4c911af8cf8660fd598b0a004fbb4"/></dir><dir name="tip"><file name="tip-corners.gif" hash="679a8fd0e2d9aa18fedc2f2b4f6001bc"/><file name="tip-sides.gif" hash="f9f434277b451d60474db8756a506736"/></dir><dir name="toolbar"><file name="more.gif" hash="15c7a30d4131305b672fe1e76d962d4d"/><file name="scroll-left.gif" hash="90ed293465f6f6bbb6104e9285f60392"/><file name="scroll-right.gif" hash="086497e95d820d7c58a1be2293e6e4a6"/><file name="toolbar-default-bg.gif" hash="61b9dcfa93a445a8a7dbbfde6efd5ecf"/></dir><dir name="tools"><file name="tool-sprite-tpl.gif" hash="e0449768cd5dce80b18fac904818ab33"/><file name="tool-sprites.gif" hash="75106d9a5ffab255a5bb3792a2a16e16"/><file name="tools-sprites-trans.gif" hash="8331513f15bd26be38974a7d7fc4ee41"/></dir><dir name="tree"><file name="arrows.gif" hash="bd4ecad4870c5b23926742ddd1298584"/><file name="drop-above.gif" hash="d6b303cfa3de8784057d9d7e66cdaa86"/><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-append.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-below.gif" hash="55e5dbc9451cfa91423832260b0753aa"/><file name="drop-between.gif" hash="edb544a0de58547d4a39c526e06e3c82"/><file name="drop-no.gif" hash="67f83ea04a2eb1c50614a96faf625f25"/><file name="drop-over.gif" hash="d6b303cfa3de8784057d9d7e66cdaa86"/><file name="drop-under.gif" hash="55e5dbc9451cfa91423832260b0753aa"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/><file name="elbow-end-minus-nl.gif" hash="04025031365f2bdb09169188eae9556b"/><file name="elbow-end-minus.gif" hash="b4ae35ce75b5bbe728fdeeb5ed89ac42"/><file name="elbow-end-plus-nl.gif" hash="d6343055539d3ae503329e65d0927c0d"/><file name="elbow-end-plus.gif" hash="46f4d75f43fff6fcd4b0b9aeda907e9c"/><file name="elbow-end.gif" hash="6748722c117147e321d0af952833109e"/><file name="elbow-line.gif" hash="765c70e58be8064da7ce8c01afb1f6c3"/><file name="elbow-minus-nl.gif" hash="04025031365f2bdb09169188eae9556b"/><file name="elbow-minus.gif" hash="01359f5b57c066f952c1d5a02f21a457"/><file name="elbow-plus-nl.gif" hash="d6343055539d3ae503329e65d0927c0d"/><file name="elbow-plus.gif" hash="e4385b53e7f15b43b74e9c3b46cfee77"/><file name="elbow.gif" hash="53321708a4948539bb8b4c8efeae39c7"/><file name="folder-open.gif" hash="2bf2623696392abc9b2853b59aab3bb5"/><file name="folder.gif" hash="d15144420ee39843bb27feb014ee4442"/><file name="leaf.gif" hash="23757d6e353f343e3c7edfe28428f198"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/></dir><dir name="util"><dir name="splitter"><file name="mini-bottom.gif" hash="ae8e3674fd32997dc5217d5d6199a5a5"/><file name="mini-left.gif" hash="8654fdb45ecf4406af2fce1d3beb7596"/><file name="mini-right.gif" hash="cbdf9fb0c45466b4217ac9f7bd6a9ed4"/><file name="mini-top.gif" hash="fbd91e98576f66fd2702495251b15240"/></dir></dir></dir></dir><file name="dnd_grid_to_grid.js" hash="057a8cbf8b255c1955c83ca249bd9ae8"/><file name="examples.js" hash="c34c39a3da1b2216f636778b26e10108"/><file name="ext-all.js" hash="33c8a2191d27ee2812d9e5469f094556"/></dir><dir name="jquery"><file name="jquery.min.js" hash="4c8cfcfcda2e9d34ba0097086a7bc328"/></dir><dir name="resources"><dir name="css"><file name="README.txt" hash="66440774774ca4995ad5137ac9ae48e0"/><file name="basic-dialog.css" hash="4cc973c87f79ea230f372cea597963ba"/><file name="box.css" hash="3809db7ee254d629d52dba0aad472d35"/><file name="button.css" hash="d3f29c8497579832fe5d7aafff7c3544"/><file name="combo.css" hash="483a1a701ca9c7db718e0e767f3d4585"/><file name="core.css" hash="6e82710d5206b6b7c0f70399cf649449"/><file name="date-picker.css" hash="fa68b668561d477e702318fb5d59636c"/><file name="dd.css" hash="f0e5f55969aeda8f65a01033613181c5"/><file name="debug.css" hash="6ef466c0c857e0c405cac7b8911f0824"/><file name="editor.css" hash="2fdb75e85a247c362285d4f079c0a12f"/><file name="ext-all.css" hash="c5e12af950c3ea3a243d0b9ca0dc4dba"/><file name="form.css" hash="38bd5bd602a83075325696af2c447e65"/><file name="grid.css" hash="c6d110f89542c04e4cbf98de73e97e9b"/><file name="layout.css" hash="89251906d248b3756f0ed354491651a6"/><file name="menu.css" hash="88eb8b3754612496ccf9d386694a39e0"/><file name="panel.css" hash="deaf7ccb5526687fadd67c093da9e604"/><file name="qtips.css" hash="2a6e683a7b23cbdf52177d7141d17435"/><file name="reset-min.css" hash="8fddbb1b7930f2817f2d5d215be98d5f"/><file name="resizable.css" hash="a50b8d1ea8e9dfbdd101a43bc63857c3"/><file name="tabs.css" hash="323d6f11f1550a43a02a617e39242ed5"/><file name="toolbar.css" hash="d09eb7507f57178967d217caeaa8b046"/><file name="tree.css" hash="b0104f954fbe1f04ebf49acffcec74ef"/><file name="ytheme-aero.css" hash="c25b48ba1b913f2ea094065fa916e9da"/><file name="ytheme-galdaka.css" hash="8b1917749205e64bdbcecc893e188b09"/><file name="ytheme-gray.css" hash="c45ba874b89038c9c8d9a79a1c591f26"/><file name="ytheme-magento.css" hash="94c3fc72743ad6d1fe7d8e74d713750e"/><file name="ytheme-vista.css" hash="2092ef97154cf5f6b33893bf5e178e21"/></dir><dir name="themes"><dir name="images"><dir name="default"><dir name="basic-dialog"><file name="btn-arrow.gif" hash="9e2365ef98c6096f6b5f411ab618bb4e"/><file name="btn-sprite.gif" hash="73a8327c23c12ed9ec42ac8f52b072e0"/><file name="close.gif" hash="2d54069e9355f295dd27027f7f779eb9"/><file name="collapse.gif" hash="63b2687a2dc81537765a7d22f9e480da"/><file name="e-handle.gif" hash="f9357e6c1dfbd00da007cf6705e08225"/><file name="expand.gif" hash="740af52fb7de6ca9fd888184e86a5308"/><file name="hd-sprite.gif" hash="6a54ae98bef53397d52282201852c204"/><file name="progress.gif" hash="baff9a083b93588fa7ff3548844a9e1a"/><file name="progress2.gif" hash="339036f9eb530c1b180c77f9a109ef3e"/><file name="s-handle.gif" hash="36b90844c0b35da23da21aac599957d4"/><file name="se-handle.gif" hash="668b22581100befcf947e806599dc0ce"/></dir><dir name="box"><file name="corners-blue.gif" hash="86fd4c5664e0971bfc11959e8442604c"/><file name="corners.gif" hash="d2d1bc2085b369ce35ffd20c0121676e"/><file name="l-blue.gif" hash="ced9ffbf66ea39e77083a591f8257267"/><file name="l.gif" hash="c4d9dbbdc59ae06b5e9e72a6a865c981"/><file name="r-blue.gif" hash="82dbb522a80e3246f6297719371a9494"/><file name="r.gif" hash="bf1e1d4a45f951ae656968a8c834f04a"/><file name="tb-blue.gif" hash="7c4b19eb682afdc1bde0640d2321fb25"/><file name="tb.gif" hash="dd3f63afe7ba90983ba73dad1c66bf2f"/></dir><dir name="dd"><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-no.gif" hash="ae536c37391ba78143b5c8283cec8d13"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/></dir><dir name="editor"><file name="tb-sprite.gif" hash="8908365d736426795ce46de7e328b508"/></dir><dir name="form"><file name="clear-trigger.gif" hash="97b3e5e9edf27b50d63d48098c2f1eae"/><file name="date-trigger.gif" hash="9245675ed8931df277184b419cf4cdad"/><file name="error-tip-corners.gif" hash="364474276178c7b48b6270056b42b808"/><file name="exclamation.gif" hash="40491021e901fa801dbbc09b6c59d73e"/><file name="search-trigger.gif" hash="559ef372cf27a38678d84e8c0b7237fc"/><file name="text-bg.gif" hash="d5ba54c1f417e6a72cbce8b909078727"/><file name="trigger-tpl.gif" hash="d7be20f0dc38f4f46cd318fe32cf3ce3"/><file name="trigger.gif" hash="45019efdf75528242c5a68742821dc57"/></dir><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><dir name="grid"><file name="Thumbs.db" hash="c3affff39ba36b80da43a08c34a61391"/><file name="arrow-left-white.gif" hash="b04e859bdcbd21ad1f06b8bfa7881df8"/><file name="arrow-right-white.gif" hash="714eb00f8134dde3a65c83f3f71ad2c4"/><file name="col-move-bottom.gif" hash="9c38bcb5cee1dc9b4ce64ad9ab1386f8"/><file name="col-move-top.gif" hash="c4584202d5172464050f675d396d1c6f"/><file name="dirty.gif" hash="decca3b96e2c37cf6eb04ddb0d9f669b"/><file name="done.gif" hash="365266930a93451414fe51ffc524a196"/><file name="drop-no.gif" hash="b53ca86d60fbcc7a45c8917299218bfd"/><file name="drop-yes.gif" hash="af96f4c3b32a470db2f38abb521b5c97"/><file name="footer-bg.gif" hash="65ed63e44c6149f1127ad3b4be4e0108"/><file name="grid-blue-hd.gif" hash="dd35d5c1202c440c2d1a945b335984d3"/><file name="grid-blue-split.gif" hash="0494ba49974ff2bc1bf81e1d82dfee18"/><file name="grid-hrow.gif" hash="55972a5063d80f35fb6b95a79bb0018a"/><file name="grid-loading.gif" hash="9ac6f737eb9b15272f12b00bfeb3c3c6"/><file name="grid-split.gif" hash="3ef419d4b9421d8e94f673a6238dc4c0"/><file name="grid-vista-hd.gif" hash="675f403e8a9cb5ab4bed725da9fe2023"/><file name="grid3-hd-btn.gif" hash="e3e77072c16a6b27556236961f29c552"/><file name="grid3-hrow-over.gif" hash="a92d8f6c106943995720f2884634670e"/><file name="grid3-hrow.gif" hash="4c58074bb961c8f184522355f1b0eb90"/><file name="grid3-special-col-bg.gif" hash="c9df03a1c107360128da89fa47066405"/><file name="grid3-special-col-sel-bg.gif" hash="a94039f89dec164896ceff1fbdf6dbc5"/><file name="hd-pop.gif" hash="e5f27a2f68cc2d13b11cf41c46d298dc"/><file name="hmenu-asc.gif" hash="048e0bc30f7c39d473dad5dabcbe03f2"/><file name="hmenu-desc.gif" hash="f0a987b34b003b25a7c82624d41f018a"/><file name="hmenu-lock.gif" hash="bcef18e25342c69c37c44dab87086065"/><file name="hmenu-lock.png" hash="2a3b0b441834f443c1086930939efdae"/><file name="hmenu-unlock.gif" hash="8cc8205dafa587ef02d8a86903ae8074"/><file name="hmenu-unlock.png" hash="c1f61df70b98c5498ea81e7e7b9effbb"/><file name="invalid_line.gif" hash="04a88e97b56e8a8ece4a66d49cc78828"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="mso-hd.gif" hash="37fba9c02f0eefe57f655890eef1c4a1"/><file name="nowait.gif" hash="23c91166dbb16ba8655363321bf5a400"/><file name="page-first-disabled.gif" hash="8d3185028c541cbcce67b5909c04824e"/><file name="page-first.gif" hash="16ec00fa770d860b768cf5034ddfca96"/><file name="page-last-disabled.gif" hash="1d123237ceeb5109a1b9274f0cf19d73"/><file name="page-last.gif" hash="ef524dd0b8dfe4eefecffaa1c0bb8edd"/><file name="page-next-disabled.gif" hash="0f4b8681772c91921fa93ede9c755ea0"/><file name="page-next.gif" hash="f6f9d2209dfc99912ffc9848d97646db"/><file name="page-prev-disabled.gif" hash="eefcbed15c8d37a89618b08f7b224297"/><file name="page-prev.gif" hash="80daad880483eed682b22ec70514ecc4"/><file name="pick-button.gif" hash="b431fdf306f1e2f033d0a431996de93f"/><file name="refresh.gif" hash="8dae08d3581dcd9a04ca73877eab4b53"/><file name="row-check-sprite.gif" hash="2d0aa7e501c3e6f97a97faf75e35d3c3"/><file name="row-expand-sprite.gif" hash="be81199d9d4fa69bef47a8f036a5a7d8"/><file name="row-over.gif" hash="f639094bd0560aefabc86e51a825f23d"/><file name="row-sel.gif" hash="ca87d6b950386edd5e17c985769d9101"/><file name="sort_asc.gif" hash="cc186187e31b0c39abbb7d2394916292"/><file name="sort_desc.gif" hash="fcfe91243fac2e5f24d05bb44f78ded4"/><file name="wait.gif" hash="b0cd5a5dc070c705ebf8814a909802c3"/></dir><dir name="layout"><file name="collapse.gif" hash="dfcec0803d488a783916c750fd83a897"/><file name="expand.gif" hash="c9c9b0ea5311c3dc016c69dc234912bc"/><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><file name="ns-collapse.gif" hash="efa9fbd7a1f3f0f1f22360391e16126f"/><file name="ns-expand.gif" hash="da1f9d40c091d3b6dc7a8dee4fc02ac6"/><file name="panel-close.gif" hash="b185da1837344529bfb684a96d8371b5"/><file name="panel-title-bg.gif" hash="b66384c309a397963389a76b07e9ecd4"/><file name="panel-title-light-bg.gif" hash="688d3a263442db125da170e5d3aebf70"/><file name="stick.gif" hash="be9e67ae0b61b01cfd15928ca7a3da51"/><file name="stuck.gif" hash="745e0cacb51250ea0216efc4a1cb50cb"/><file name="tab-close-on.gif" hash="0ae2c978e85391a69f0dce8da18d8b23"/><file name="tab-close.gif" hash="f92107cc6b4cb78af084648a628e01d2"/></dir><dir name="menu"><file name="checked.gif" hash="692bc97badf50c05495f6109143b4b11"/><file name="group-checked.gif" hash="f7973443d91e5e074013f1b07ee79479"/><file name="menu-parent.gif" hash="d303ad7e3ced891736e80f77e1d4e51d"/><file name="menu.gif" hash="5d34732294bbe06a862961dd02bcc962"/><file name="unchecked.gif" hash="9b90ed7c9e8f0892ce09f3b35b19db53"/></dir><dir name="panel"><file name="corners-sprite.gif" hash="06daef2335218cdfd900ce8bf7a68738"/><file name="left-right.gif" hash="49344fefef7c6f866f910b9067f0990f"/><file name="tool-sprite-tpl.gif" hash="e0449768cd5dce80b18fac904818ab33"/><file name="tool-sprites.gif" hash="31ccd74ac8dab4b5669887310a2341df"/><file name="top-bottom.gif" hash="d9a86e8466a31bd1cb87aae2cf55faf2"/><file name="white-corners-sprite.gif" hash="de8b3036676d19b9635f319a8a4aad36"/><file name="white-left-right.gif" hash="77a6389c6737ad507ca5330ad8816524"/><file name="white-top-bottom.gif" hash="f865d7237bff3c45fd4a8c448f97d236"/></dir><dir name="qtip"><file name="bg.gif" hash="49c0a530cc16357bb39d51c13065a88f"/><file name="close.gif" hash="0379d036250096cae2e42b427b3df2e7"/><file name="tip-sprite.gif" hash="11637a20b1f3f2331bf0627146c2f433"/></dir><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/><file name="shadow-c.png" hash="3abbfce345687daada53445adf6fddc7"/><file name="shadow-lr.png" hash="986270d8ab4330fa7499dc33ed135598"/><file name="shadow.png" hash="860bf4f690d2ea2aba7b11500925da62"/><dir name="shared"><file name="calendar.gif" hash="81296cff1f97f5365524f2b9dcf626da"/><file name="glass-bg.gif" hash="bc2cd5c5ac9b3874d956c892d23f2119"/><file name="left-btn.gif" hash="6bf30c6cf0b5d70436c3e463b5532b35"/><file name="right-btn.gif" hash="e7ad3a7f4814791cecf1b90e77e9e139"/><file name="warning.gif" hash="448dc934a7f0dd6092b51f88a1e47b2d"/></dir><dir name="sizer"><file name="e-handle-dark.gif" hash="b86289f41d7ad1a7401dd2b2a9b3c3d8"/><file name="e-handle.gif" hash="510edc95ebaa36306916c50ca10596f7"/><file name="ne-handle-dark.gif" hash="115f71b851c7f0b5f354caa7b8dfff15"/><file name="ne-handle.gif" hash="8e268b962dc909d275997b572ff17a72"/><file name="nw-handle-dark.gif" hash="4a361e6920b2e34a39fd425a515c83b9"/><file name="nw-handle.gif" hash="1120600505249c38c3d1cc2ab120cd13"/><file name="s-handle-dark.gif" hash="4a6bf15d308a4ae580dd03cbd431a95c"/><file name="s-handle.gif" hash="5e3338cb09e9df7f52383d6b1423fc86"/><file name="se-handle-dark.gif" hash="f3d8d8aac23e3e9633072e2366cda847"/><file name="se-handle.gif" hash="71edc3f63f79f447d2c81ee09e1fbbc3"/><file name="square.gif" hash="4431ea1954bfd2a9cea0931f07fc7ffa"/><file name="sw-handle-dark.gif" hash="44b2400d873cf8a23d84424827cde44d"/><file name="sw-handle.gif" hash="c3e0befc4208a51180344765fd7deeda"/></dir><dir name="tabs"><file name="tab-btm-inactive-left-bg.gif" hash="4f141a6abf25d3c9409b6c381333c138"/><file name="tab-btm-inactive-right-bg.gif" hash="eb2423d3b9dd072976ce955ab0c683d6"/><file name="tab-btm-left-bg.gif" hash="a36eb9382ed8b858eff2c5d4e5d7011a"/><file name="tab-btm-right-bg.gif" hash="9e4245776f0f7b6b6c7ddbf40a43103a"/><file name="tab-sprite.gif" hash="6a7d481bf5b74acfbfa0b01a35bd6620"/></dir><dir name="toolbar"><file name="btn-arrow-light.gif" hash="fa49b39a0fd88ef26264da44a2b4edea"/><file name="btn-arrow.gif" hash="12bda29a4c8016cfa047e852c4353f59"/><file name="btn-over-bg.gif" hash="faddf9b24cefa721326ba3f87f3ef31f"/><file name="gray-bg.gif" hash="cf2d9408f320e696e607d8472afa7ff0"/><file name="tb-bg.gif" hash="5309337fd7a22cab9d9467fd9eaa0a0c"/><file name="tb-btn-sprite.gif" hash="3aed28dd646d22e215c8a6a3e983322f"/></dir><dir name="tree"><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-between.gif" hash="edb544a0de58547d4a39c526e06e3c82"/><file name="drop-no.gif" hash="67f83ea04a2eb1c50614a96faf625f25"/><file name="drop-over.gif" hash="d6b303cfa3de8784057d9d7e66cdaa86"/><file name="drop-under.gif" hash="55e5dbc9451cfa91423832260b0753aa"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/><file name="elbow-end-minus-nl.gif" hash="5e5bffba157eceee7989db95b919e4d5"/><file name="elbow-end-minus.gif" hash="a469f6a4394d797c2efeffc70409f6db"/><file name="elbow-end-plus-nl.gif" hash="f0f50c0dd3ee6dd4b11c1f245b36eb01"/><file name="elbow-end-plus.gif" hash="ec1482391363612d9e5f8c7087fddaba"/><file name="elbow-end.gif" hash="345551384aa325189ba28a1c20f3405e"/><file name="elbow-line.gif" hash="90e478158df476dc989a60daaafc87e6"/><file name="elbow-minus-nl.gif" hash="5e5bffba157eceee7989db95b919e4d5"/><file name="elbow-minus.gif" hash="71bb1bd44b1274c60d30dba1de472ed7"/><file name="elbow-plus-nl.gif" hash="f0f50c0dd3ee6dd4b11c1f245b36eb01"/><file name="elbow-plus.gif" hash="945572d06a74b5f952251a86c595f2da"/><file name="elbow.gif" hash="27679f3b1222ba95d9925885d7d82d02"/><file name="folder-open.gif" hash="c569141d6ae7c61d838ed8af26aa9380"/><file name="folder.gif" hash="b7209740bb4a825a06beb8698d92c2b1"/><file name="leaf.gif" hash="23757d6e353f343e3c7edfe28428f198"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/></dir><dir name="window"><file name="corners-sprite.gif" hash="b485d6e69678822a0fb77cc312487874"/><file name="left-right.gif" hash="3fe626d6ca2f71d36fc62c32cb1cc52a"/><file name="top-bottom.gif" hash="8a227016c401438e602c2f770a611d5b"/></dir></dir><dir name="magento"><dir name="basic-dialog"><file name="collapse-on.gif" hash="b60dfdc0d00cfb30a8a622e0c22eed84"/><file name="collapse.gif" hash="8525b9d2e93d31e0b071b1f9bf9550e5"/><file name="expand-on.gif" hash="0dfb4ac6d626cdcaa931c14dbb45848e"/><file name="expand.gif" hash="0eb5c03da8b8415e0568784c959e536a"/><file name="hd-sprite.gif" hash="035bf2296afd70af7020cf06b60bf3f6"/><file name="ns-collapse-on.gif" hash="88ed8b7578c803f68d9f1eb171454e00"/><file name="ns-collapse.gif" hash="44b91376c040f91672aaa98c1fcc062b"/><file name="ns-expand-on.gif" hash="587c2ce90066280e5e6cd731bb9d346c"/><file name="ns-expand.gif" hash="57b479b168f8a54200bd1770b5591630"/><file name="panel_close.gif" hash="686c6dfcf341de25487ab4d8ea5954ce"/><file name="pop_close.gif" hash="dd3605531f9959901eff6f089f084bdc"/><file name="pop_collapse.gif" hash="2b8007242ae1c9ae9f26c60a878a63f7"/></dir><dir name="grid"><file name="grid-body-bg.gif" hash="b5fe585c01f57b2171a2b723abcc4a38"/><file name="grid-split.gif" hash="32e210451e8dc4295b53cf7ca13bb4a6"/></dir><dir name="layout"><file name="checkered-bg.gif" hash="f0a0cd29a6120377c289fd39e2ee7e80"/><file name="icon-catalog.gif" hash="435ff2300ddefb9f8a4bad8ee806fb1a"/><file name="icon-category.gif" hash="ce2a146851bb5ec1e41670b68183b56a"/><file name="icon-my-tasks.gif" hash="0ecb888b160701845e25a7140d038af0"/><file name="icon-product.gif" hash="a0707878c5221052209e5ae6a4de0bd2"/></dir><file name="loading_bg.gif" hash="e202ef7e03d0ef3e9beac7480dae65bf"/><dir name="tabs"><file name="tab-sprite.gif" hash="049fb2f4186b6dc9de747ad96456b1ab"/></dir><dir name="toolbar"><file name="btn-arrow.gif" hash="938cffb6de5cc8b1febfd1851fd983c2"/><file name="header_bg.gif" hash="3696842a32740fa159484cabc3340d13"/><file name="toolbar-bg.gif" hash="8d1b465c2a75963407b536d9081f649f"/></dir><dir name="tree"><file name="elbow-end-minus-nl.gif" hash="6dc08c43109cc6a365bd0270f05e2f1c"/><file name="elbow-end-minus.gif" hash="3dbdb88a9297fe5631e832f046b0350b"/><file name="elbow-end-plus-nl.gif" hash="6dc08c43109cc6a365bd0270f05e2f1c"/><file name="elbow-end-plus.gif" hash="5470e5712a9742ba666c26cb429baaeb"/><file name="elbow-end.gif" hash="63fe879440e2784e0cc0d316ce017745"/><file name="elbow-line.gif" hash="b316a39455304e20e01dbc437f57fd32"/><file name="elbow-minus-nl.gif" hash="0e3129bff70475c8f7f297e0e59d1608"/><file name="elbow-minus.gif" hash="e7b18ff6800e65c6e171bbb2a911762e"/><file name="elbow-plus-nl.gif" hash="78a8f737941fa658f1e770258a3791cd"/><file name="elbow-plus.gif" hash="b02cb264df55aef2105b1b245d075e56"/><file name="elbow.gif" hash="b6bd0e0237e3cd413fa2dac27701c724"/><file name="folder-open.gif" hash="e3cd196406d4857dc0c926807f16c409"/><file name="folder.gif" hash="03eb26c42137ac792609822862ef4d0f"/><file name="leaf.gif" hash="e3cd196406d4857dc0c926807f16c409"/><file name="s.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/></dir></dir></dir></dir></dir></dir><file name="ranking.js" hash="bbdbf7077ae6ffeb65b5f0b50bb3204f"/></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>dropship360</name>
4
+ <version>2.0.24</version>
5
  <stability>stable</stability>
6
  <license uri="http://logicbroker.com/portfolio/magento/license">Customer License</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>logicbroker enables Magento merchants to seamlessly connect with vendors via EDI for drop ship automation.</summary>
10
  <description>logicbroker is the most complete eCommerce integration platform available and offers a true end-to-end EDI solution for Magento. Beyond its EDI capabilities, logicbroker&#x2019;s flexible connectivity automates and simplifies tasks like drop ship deployment and omni-channel retailing. logicbroker connects Magento to backend systems like ERPs (Dynamics, Netsuite, Exact), accounting software (QuickBooks), and order management systems (M.O.M) to seamlessly exchange information</description>
11
+ <notes>stable</notes>
12
  <authors><author><name>Logicbroker</name><user>Logicbroker</user><email>magentoext@logicbroker.com</email></author></authors>
13
+ <date>2015-03-17</date>
14
+ <time>13:59:58</time>
15
+ <contents><target name="magecommunity"><dir name="Logicbroker"><dir name="Dropship360"><dir name="Block"><dir name="Adminhtml"><dir name="Inventory"><dir name="Edit"><dir name="Tab"><file name="Addvendorfield.php" hash="aad1cfdc7e9c95e5c0000d0e3cfe1618"/><file name="Lbvendor.php" hash="d2c6075bf2a39b241aae4152052778b9"/><file name="Vendortabhistory.php" hash="114bffa65fc4ada5a354c997e9070728"/></dir><file name="Vendortab.php" hash="81b94c11b74e82640a95c5182a0a3cc2"/><file name="Vendortabhistory.php" hash="b5dd42ad12faa98328dacaddb2860a0c"/></dir><file name="Grid.php" hash="6cac11d609cb0d7f4ce744e6709fce41"/></dir><file name="Inventory.php" hash="803d0541960263312a5854d7a808d332"/><file name="Logicbroker.php" hash="a34417941b908c25418cde5984bb1d14"/><file name="Notification.php" hash="401565593ab615836776a459b5516d02"/><dir name="Ranking"><file name="Grid.php" hash="13ecabf71b55ef342eb02f4b44adcabf"/></dir><file name="Ranking.php" hash="59005b6544765de8c41eba862b81d44d"/><dir name="Sales"><dir name="Order"><dir name="View"><file name="Items.php" hash="6d153d42f71898e7d20edf862e58f171"/></dir></dir></dir><file name="Showhistory.php" hash="836ed9f14a3cadb10e3a531bcf8e4395"/><dir name="Sourcing"><dir name="Edit"><file name="Form.php" hash="876edb971916ad0033e4264786b1dd67"/><dir name="Tab"><file name="Form.php" hash="f2e91525711c4ea4afb3b2d639c4ae7f"/></dir><file name="Tabs.php" hash="ef1501d2821bbb92e9b9033368f1040e"/></dir><file name="Edit.php" hash="3f8947ee74eb2b3c78302ade26e5ecdb"/><file name="Grid.php" hash="bcfd5eff016c2b508cc2ce5b85da1a4c"/></dir><file name="Sourcing.php" hash="6a6346bcdbc8c0dcc3da895f8c19506d"/><dir name="System"><dir name="Config"><file name="Crontime.php" hash="3ed5d60d8f9b7b04081897a6f0dc6e65"/><dir name="Fieldset"><file name="Hint.php" hash="50a8bd6d0cd87af35b71fb4c5a11f67f"/></dir><file name="Ftpconnectionbutton.php" hash="6a3b3b65888ce196a397e4c8af61589b"/><file name="Helplink.php" hash="acfd5b07538a81a287f01fb812358fda"/><file name="Singuplink.php" hash="78c984f1b28ff97e3f781823515cee72"/><file name="Submitbutton.php" hash="a0cb782027cf4abe9e46bf6b835269ab"/><file name="Time.php" hash="681a859ce8cd1b20af1970851aa234b4"/></dir></dir><dir name="Upload"><dir name="Edit"><file name="Form.php" hash="285a80975ab2502b615857e708f3f1a3"/></dir></dir><file name="Upload.php" hash="f2a8323d32bdbddc53bd97d09d5f97e5"/><file name="Vendorproductuploadhistory.php" hash="2f2eff8b9294fa069bda0edb3e6e7956"/><dir name="Widget"><dir name="Grid"><dir name="Column"><file name="Nameaction.php" hash="04c09bb31f44eca6115997c6602ca6f2"/><file name="Orderaction.php" hash="33baaac58e53141c3122f8e7acf34621"/><file name="Skuaction.php" hash="6082778173f08ae42c81f8fc9c83b365"/><file name="Textaction.php" hash="205d1ed2ad8ebd8e236dc2b2bb49ce22"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="6e0f8a92d1adeda5a3ca402a45b58a40"/></dir><dir name="Model"><dir name="Api2"><file name="Createroleandrule.php" hash="7ce65526f1934324dab6ea871b40b04d"/><dir name="Inventory"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="221a9fac801bdc13f0c8969fa4e9b8b8"/></dir><dir name="Customer"><file name="V1.php" hash="14a090b850abd03fbac17ead1ef6e40c"/></dir><dir name="Guest"><file name="V1.php" hash="55add18c51be78ef2d80cfb68b640d5a"/></dir></dir><file name="Rest.php" hash="b36b5cee2e408ecace45b2136d8f8db5"/></dir><file name="Inventory.php" hash="efc9e5e8d97d3379a4f1264f446d53bd"/><dir name="Product"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="b993dfec11008696227b19d132ebf2b5"/></dir><dir name="Customer"><file name="V1.php" hash="14a090b850abd03fbac17ead1ef6e40c"/></dir><dir name="Guest"><file name="V1.php" hash="0a7e1d540852188098258bbf7e2a067f"/></dir></dir><file name="Rest.php" hash="c464b15b68c87373497609fae0bc3ac7"/></dir><file name="Product.php" hash="98dd1988e8712b5cd8240538c54c9c4b"/></dir><file name="Inventory.php" hash="c44b380b76562d67830ce730b0bb0c7e"/><file name="Inventorylog.php" hash="5efe3a866e878c94511f7720073f5b58"/><file name="Logicbroker.php" hash="ecfea389589fa9624d0738abb3f91479"/><file name="Observer.php" hash="b7498e896fa300593bda9e581753a8cd"/><dir name="Order"><file name="Api.php" hash="93cb5fdc395bed9684d8b6ad4f822c34"/></dir><file name="Orderitems.php" hash="62317b30b5f04d5819036e2ca32816d5"/><file name="Ordersourcing.php" hash="c297bdc3eef51b42ed37a026375039ac"/><file name="Productimport.php" hash="3f86f8e03efa18a0d6e58f034dd7e251"/><file name="Ranking.php" hash="99e8bf4c97012ede16dadd253653a986"/><file name="Rankinglog.php" hash="6b00a2f0b997ad634bf38a9aa7d89404"/><dir name="Resource"><dir name="Inventory"><file name="Collection.php" hash="64abac572c4cdbbd15bec30f0c4614ef"/></dir><file name="Inventory.php" hash="b6853986d109fb7c3ba2c3db32cd0381"/><dir name="Inventorylog"><file name="Collection.php" hash="e5f33b8a0db2acc304ff1f0706c52bf2"/></dir><file name="Inventorylog.php" hash="55255ff69e778710fd2e29700e9da06d"/><dir name="Orderitems"><file name="Collection.php" hash="d3c95b0634b37948b2d0cb19e3637fd6"/></dir><file name="Orderitems.php" hash="f34b5d078a9498d10958395c6875d969"/><dir name="Ordersourcing"><file name="Collection.php" hash="df7fede92820a7b4a50aeac2d32cd7ef"/></dir><file name="Ordersourcing.php" hash="0409c90fb55997b340a54888a6f4b3bf"/><dir name="Ranking"><file name="Collection.php" hash="9efcdcab905872553f0828ecd1670aa6"/></dir><file name="Ranking.php" hash="bb5db1250b0f6ce79f0928cd5aeb49fd"/><dir name="Rankinglog"><file name="Collection.php" hash="5f7dc2e0b408c240220abc0ac36b7868"/></dir><file name="Rankinglog.php" hash="889c96c4a2dd3b45cf6aa322ee4e28ae"/><file name="Setup.php" hash="d7d6e67542b137c450b6fe8ed339f2fe"/><dir name="Uploadvendor"><file name="Collection.php" hash="b24a06b05dc7570b1d904f118401a7eb"/></dir><file name="Uploadvendor.php" hash="c94c815f0f3d2e1646a453b08754e032"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Sourcing"><file name="Cronbackorder.php" hash="09eba6b5a6710859b512ffc129fb8c20"/><file name="Cronsourcing.php" hash="da24f9f10d4b502c7946605c67a4d4a9"/></dir><dir name="Uploadvendor"><file name="Cron.php" hash="38839277660b76c0d0429c1b01cbfb1b"/></dir></dir><dir name="Source"><file name="Attributecodes.php" hash="ff3ef88a0a3064de37987c5a029f5479"/><file name="Category.php" hash="c3471f520fa80fdd060ecb2fd5dcc590"/><file name="Ediqualifier.php" hash="6a8b3a53b551995a4631c96e2f037f73"/><file name="Ftptype.php" hash="bf8886b553b5cc0a42fa9b9e55b6ac08"/><file name="Optionvalues.php" hash="eacf7fa61d5a7cf81022c16884fe4ac5"/><file name="Ranktype.php" hash="84df4a5459e91e337a584d267b6f6ed2"/><file name="Store.php" hash="e1c243d00b60e6101c92942e4e763d94"/><file name="Time.php" hash="faa6420f941c775244cd70c3eeac9238"/><file name="Vendorlist.php" hash="a5c00939adaa9dfd2038dfaa9afa29d7"/></dir></dir></dir><file name="Uploadvendor.php" hash="c52538c1364a5f49d83e12392de97e30"/><dir name="Versions"><dir name="Api"><file name="V2.php" hash="81456d30305772391898bbde88a15a2f"/></dir><file name="Api.php" hash="57e656cd9d02c57db138a49795b124c6"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="InventoryController.php" hash="229590b844138efe3430d7acdedffaad"/><file name="LogicbrokerController.php" hash="e5888fbd6e2e1f3c305ef30541608df0"/><file name="RankingController.php" hash="630fc9bbf72b4ce222572b385fc005a4"/><file name="SourcingController.php" hash="afe54a234da78e53b54a8d48a64d48d0"/><file name="UploadController.php" hash="b77447a1151975a940fbd8ea1da27df4"/></dir></dir><dir name="data"><dir name="dropship360_setup"><file name="data-install-1.0.3.php" hash="ce1e30bcec7ba8e45420703ae216ca1c"/><file name="data-upgrade-1.0.3-1.0.4.php" hash="95ebfa01d549e177a5741a20f52c1a5e"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="3f78bf4d3bf336ceeb514a03544b8324"/><file name="api.xml" hash="238e53cfef1df018a58ee19c20daf62c"/><file name="api2.xml" hash="c2c5e21433b9ae7809ad062bb0047c84"/><file name="config.xml" hash="29611f5e0f72e94df878c730bf5db677"/><file name="jstranslator.xml" hash="c4401a0c80dd792208ee3bbdbe6c27ff"/><file name="system.xml" hash="3b9bc80458ab7ef2718b818dd6e514a0"/><file name="wsdl.xml" hash="5b88a5e23e8885142dc26a998be279ed"/></dir><dir name="sql"><dir name="dropship360_setup"><file name="mysql4-install-1.0.3.php" hash="541820b4435e190809954440cd2615d0"/><file name="mysql4-upgrade-1.0.3-1.0.4.php" hash="b6cc9a10e1d5ca8839bffd399910ba80"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="logicbroker"><file name="addvendorfields.phtml" hash="76b12eceda6ec571fc63dabb762ee62a"/><dir name="bundle"><file name="renderer.phtml" hash="6cf6b1b3da98cae6545bed980db3daf4"/></dir><dir name="downloadable"><file name="downloadable.phtml" hash="01b262bd02461b7116de0032c6272ee8"/></dir><dir name="import"><dir name="form"><file name="after.phtml" hash="fe6b87f7ca329260eb0fd33e1e0d99b7"/><file name="before.phtml" hash="d6fb33bbb207350b02da28075fe9712e"/></dir><dir name="frame"><file name="result.phtml" hash="3593b07a3b9540c7eea44d29fbf3c272"/></dir></dir><file name="inline-edit.phtml" hash="b6046c9efc1f621030cdc4c3cf4d67e7"/><file name="popup.phtml" hash="4f7511bf396c0cd31891dd2bd1eb7c9c"/><file name="result.phtml" hash="16dada729edcb70ed066a837e42da37a"/><dir name="sales"><file name="default.phtml" hash="d9fa96a63896757545db95935745add9"/><file name="items.phtml" hash="120a90cb44a272296b985b109d3f77fe"/></dir><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="7b409b95a71e7315fe672ffe075a6323"/></dir><file name="submitbutton.phtml" hash="fecf50356a1a46b8573c40af65ab066c"/></dir></dir><file name="upload_vendor_product.phtml" hash="2231a9d312d53a258455c8fa4c745055"/><file name="vendor_ranking.phtml" hash="a2b4c9c930c3f93d27e06e605547ca19"/><file name="vendor_upload_product_history.phtml" hash="cd688b713797c1874baa13a0f730eb34"/><file name="vendorproducttab.phtml" hash="437bcd5c9cd8f34c56550b17bd794d40"/><file name="vendorproducttabhistory.phtml" hash="4e61503a376c875b5c5c796e2080d90c"/><file name="window.phtml" hash="ada7a7a4ac7b47e2806c17d613460b80"/></dir></dir><dir name="layout"><file name="logicbroker.xml" hash="3e58b9f5637d204891054aaa0e16c6fc"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Logicbroker_Dropship360.xml" hash="67068aaea26ac3534322d12dbb7c0c1a"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Logicbroker_Dropship360.csv" hash="34e85a999b73c4a216eed04dfffa756d"/><dir name="template"><dir name="email"><file name="logicbroker.html" hash="20ec1acaa64500708bdc6b1c86a33668"/></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="logicbroker"><dir><dir name="extjs"><file name="bootstrap.js" hash="a82e5f0ee98f60e92bb5774e25c480f7"/><dir name="css"><file name="example.css" hash="7fcbf7ea6c0466ac334f00e12ac4be7e"/><file name="ext-all.css" hash="ecf28869070c6511559c6a5286a6f6cb"/><dir name="images"><dir name="boundlist"><file name="trigger-arrow.png" hash="4655916b183b914b357da69b86414f52"/></dir><dir name="box"><file name="corners-blue.gif" hash="86fd4c5664e0971bfc11959e8442604c"/><file name="corners.gif" hash="d2d1bc2085b369ce35ffd20c0121676e"/><file name="l-blue.gif" hash="ced9ffbf66ea39e77083a591f8257267"/><file name="l.gif" hash="c4d9dbbdc59ae06b5e9e72a6a865c981"/><file name="r-blue.gif" hash="82dbb522a80e3246f6297719371a9494"/><file name="r.gif" hash="bf1e1d4a45f951ae656968a8c834f04a"/><file name="tb-blue.gif" hash="7c4b19eb682afdc1bde0640d2321fb25"/><file name="tb.gif" hash="dd3f63afe7ba90983ba73dad1c66bf2f"/></dir><dir name="button"><file name="arrow.gif" hash="44b6dbf385236a2697932a7a3e20b4a0"/><file name="btn.gif" hash="40ac871755023cc11ad15dcd77b54dbf"/><file name="group-cs.gif" hash="5dc0252bd9ecf72f98d858427054cf08"/><file name="group-lr.gif" hash="cb7813012d6be17e083835d60037029e"/><file name="group-tb.gif" hash="4edf9b7db13b1331282eed298384cab9"/><file name="s-arrow-b-noline.gif" hash="30d04f652551f1df9d59d33a99c9a320"/><file name="s-arrow-b.gif" hash="a957a6d618d19b92a2d1a7a1b50f5235"/><file name="s-arrow-bo.gif" hash="53a15d7907a017122f7f60402c435753"/><file name="s-arrow-light.gif" hash="6576de0eb6bec88f8e37c12829939573"/><file name="s-arrow-noline.gif" hash="13f08a275c58135365b8e58b3177ab1a"/><file name="s-arrow-o.gif" hash="5005d8dea2f9456aaf2ab27ca7bf5651"/><file name="s-arrow.gif" hash="bc71296ddf9c7ef5aa56b09ca3512c8a"/></dir><dir name="datepicker"><file name="datepicker-footer-bg.gif" hash="52e65759b3e8c81d3c3f2d0484ec9e58"/><file name="datepicker-footer-bg.png" hash="deca7c712da61f827c61b6219b3246af"/><file name="datepicker-header-bg.gif" hash="5cda0bb28a42b7023d24d48b9a0e1685"/><file name="datepicker-header-bg.png" hash="93fb8e8f1fb52d38e61ab064187f11de"/></dir><dir name="dd"><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-no.gif" hash="ae536c37391ba78143b5c8283cec8d13"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/></dir><dir name="editor"><file name="tb-sprite.gif" hash="a2f06caddc2fb729db5cbbd874491128"/></dir><dir name="form"><file name="checkbox.gif" hash="75d685cab5665a935660a3d04f71c2be"/><file name="clear-trigger.gif" hash="97b3e5e9edf27b50d63d48098c2f1eae"/><file name="date-trigger.gif" hash="30b5bace9f3dac358716c1415270f874"/><file name="error-tip-corners.gif" hash="364474276178c7b48b6270056b42b808"/><file name="exclamation.gif" hash="37dbe02e3cbde0f6780650bfd8535e38"/><file name="radio.gif" hash="0239bdaef529be68530b86266a24742c"/><file name="search-trigger.gif" hash="559ef372cf27a38678d84e8c0b7237fc"/><file name="spinner-small.gif" hash="122ab763adfc5f379def95269889a876"/><file name="spinner.gif" hash="eee2bdd07a8136d2eff635b721838b4c"/><file name="text-bg.gif" hash="d5ba54c1f417e6a72cbce8b909078727"/><file name="trigger-square.gif" hash="c1cbaecc91209f77e2d20235c137e13e"/><file name="trigger-tpl.gif" hash="d7be20f0dc38f4f46cd318fe32cf3ce3"/><file name="trigger.gif" hash="447d5b600f7527f5c8cc49e7453bbb27"/></dir><dir name="grid"><file name="arrow-left-white.gif" hash="b04e859bdcbd21ad1f06b8bfa7881df8"/><file name="arrow-right-white.gif" hash="714eb00f8134dde3a65c83f3f71ad2c4"/><file name="cell-special-bg.gif" hash="60b05fd8cd98b6109112775a4cf2ad0e"/><file name="cell-special-bg.png" hash="a6487b6bd88ce1a726d41140595235be"/><file name="cell-special-selected-bg.gif" hash="2d4830861beacb8945d22b3bb79ad9c2"/><file name="cell-special-selected-bg.png" hash="df8d68826afb17ab5ed333565f531fdf"/><file name="checked.gif" hash="cb7b3408df56f5585aaa1242cd2f0b45"/><file name="col-move-bottom.gif" hash="9c38bcb5cee1dc9b4ce64ad9ab1386f8"/><file name="col-move-top.gif" hash="c4584202d5172464050f675d396d1c6f"/><file name="column-header-bg.gif" hash="1c0619ef4faf05d33d53e46f164664d0"/><file name="column-header-bg.png" hash="2c8e36b59e78fe93fcc13360bebd7f7f"/><file name="column-header-over-bg.gif" hash="8af4b32e4a033f3ac980277efee1d0b2"/><file name="column-header-over-bg.png" hash="25da418192d7f8bb7fbacc3baf6731fb"/><file name="columns.gif" hash="ef35242fa6514a81d17d5f700f561b7c"/><file name="dd-insert-arrow-left.gif" hash="fee4ee1bfc31c909a83713656497c8b2"/><file name="dd-insert-arrow-left.png" hash="5050c8e897cec907d6319f397a66c474"/><file name="dd-insert-arrow-right.gif" hash="b03355f58b96d167f0770b14358e5d88"/><file name="dd-insert-arrow-right.png" hash="46faba03ba3a35d750b5b758cc3d5d2c"/><file name="dirty.gif" hash="decca3b96e2c37cf6eb04ddb0d9f669b"/><file name="done.gif" hash="365266930a93451414fe51ffc524a196"/><file name="drop-no.gif" hash="b53ca86d60fbcc7a45c8917299218bfd"/><file name="drop-yes.gif" hash="af96f4c3b32a470db2f38abb521b5c97"/><file name="footer-bg.gif" hash="65ed63e44c6149f1127ad3b4be4e0108"/><file name="grid-blue-hd.gif" hash="dd35d5c1202c440c2d1a945b335984d3"/><file name="grid-blue-split.gif" hash="0494ba49974ff2bc1bf81e1d82dfee18"/><file name="grid-hrow.gif" hash="55972a5063d80f35fb6b95a79bb0018a"/><file name="grid-loading.gif" hash="9ac6f737eb9b15272f12b00bfeb3c3c6"/><file name="grid-split.gif" hash="3ef419d4b9421d8e94f673a6238dc4c0"/><file name="grid-vista-hd.gif" hash="675f403e8a9cb5ab4bed725da9fe2023"/><file name="grid3-hd-btn.gif" hash="e3e77072c16a6b27556236961f29c552"/><file name="grid3-hrow-over.gif" hash="a92d8f6c106943995720f2884634670e"/><file name="grid3-hrow.gif" hash="3e4484ea8db10af1320808c8477346ea"/><file name="grid3-rowheader.gif" hash="b4491705564909da7f9eaf749dbbfbb1"/><file name="group-by.gif" hash="3ff8c5936e358cf213227509c9bee95a"/><file name="group-collapse.gif" hash="fd6a72ffa784170d83f9f13322266ca8"/><file name="group-expand-sprite.gif" hash="d0f614a387292177f3acb0c95a4cd760"/><file name="group-expand.gif" hash="8a9ad3ed3d74c2911b7f101268a1843b"/><file name="hd-pop.gif" hash="e5f27a2f68cc2d13b11cf41c46d298dc"/><file name="hmenu-asc.gif" hash="048e0bc30f7c39d473dad5dabcbe03f2"/><file name="hmenu-desc.gif" hash="f0a987b34b003b25a7c82624d41f018a"/><file name="hmenu-lock.gif" hash="bcef18e25342c69c37c44dab87086065"/><file name="hmenu-lock.png" hash="2a3b0b441834f443c1086930939efdae"/><file name="hmenu-unlock.gif" hash="8cc8205dafa587ef02d8a86903ae8074"/><file name="hmenu-unlock.png" hash="c1f61df70b98c5498ea81e7e7b9effbb"/><file name="invalid_line.gif" hash="04a88e97b56e8a8ece4a66d49cc78828"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="mso-hd.gif" hash="37fba9c02f0eefe57f655890eef1c4a1"/><file name="nowait.gif" hash="23c91166dbb16ba8655363321bf5a400"/><file name="page-first-disabled.gif" hash="8d3185028c541cbcce67b5909c04824e"/><file name="page-first.gif" hash="16ec00fa770d860b768cf5034ddfca96"/><file name="page-last-disabled.gif" hash="1d123237ceeb5109a1b9274f0cf19d73"/><file name="page-last.gif" hash="ef524dd0b8dfe4eefecffaa1c0bb8edd"/><file name="page-next-disabled.gif" hash="0f4b8681772c91921fa93ede9c755ea0"/><file name="page-next.gif" hash="f6f9d2209dfc99912ffc9848d97646db"/><file name="page-prev-disabled.gif" hash="eefcbed15c8d37a89618b08f7b224297"/><file name="page-prev.gif" hash="80daad880483eed682b22ec70514ecc4"/><file name="pick-button.gif" hash="b431fdf306f1e2f033d0a431996de93f"/><file name="property-cell-bg.gif" hash="1b65e348d6db0c7b6c9aa5478c15a052"/><file name="property-cell-selected-bg.gif" hash="a94039f89dec164896ceff1fbdf6dbc5"/><file name="refresh-disabled.gif" hash="105c62973ba69710bc2b41b443af5198"/><file name="refresh.gif" hash="f1a2e7df30394c5a30bc76c2d09013b7"/><file name="row-check-sprite.gif" hash="2d0aa7e501c3e6f97a97faf75e35d3c3"/><file name="row-expand-sprite.gif" hash="be81199d9d4fa69bef47a8f036a5a7d8"/><file name="row-over.gif" hash="f639094bd0560aefabc86e51a825f23d"/><file name="row-sel.gif" hash="ca87d6b950386edd5e17c985769d9101"/><file name="sort-hd.gif" hash="2640addef6e987b4c5dfa4c8c2dfb10c"/><file name="sort_asc.gif" hash="2352874b5f636ca331fe9509a2f9bdd7"/><file name="sort_desc.gif" hash="d104fcf119d40c51554ddb8b377142e5"/><file name="unchecked.gif" hash="31846118bddc7945b595ea2090589cf1"/><file name="wait.gif" hash="b0cd5a5dc070c705ebf8814a909802c3"/></dir><dir name="layout"><file name="mini-bottom.gif" hash="ae8e3674fd32997dc5217d5d6199a5a5"/><file name="mini-left.gif" hash="8654fdb45ecf4406af2fce1d3beb7596"/><file name="mini-right.gif" hash="cbdf9fb0c45466b4217ac9f7bd6a9ed4"/><file name="mini-top.gif" hash="fbd91e98576f66fd2702495251b15240"/></dir><dir name="menu"><file name="checked.gif" hash="cb7b3408df56f5585aaa1242cd2f0b45"/><file name="group-checked.gif" hash="f7973443d91e5e074013f1b07ee79479"/><file name="item-over.gif" hash="29055ede2ff0584d0374a2ff5a987382"/><file name="menu-item-active-bg.gif" hash="5956b7cac9aabf4c670c2997bba12d47"/><file name="menu-item-active-corners.gif" hash="9a073e133a65c4e1b3bd4098ca72552a"/><file name="menu-item-active-sides.gif" hash="cf1981c1027a8c962a9d8c0f6d61c098"/><file name="menu-parent.gif" hash="d303ad7e3ced891736e80f77e1d4e51d"/><file name="menu.gif" hash="ae128d5f3f3a39213f3d4e23aec8728f"/><file name="unchecked.gif" hash="31846118bddc7945b595ea2090589cf1"/></dir><dir name="progress"><file name="progress-default-bg.gif" hash="b170dfad9f747e1aca54e47c4415c2d3"/></dir><dir name="shared"><file name="blue-loading.gif" hash="dc2fd7c0ed853c56b4ac65710af3bd0a"/><file name="calendar.gif" hash="81296cff1f97f5365524f2b9dcf626da"/><file name="glass-bg.gif" hash="bc2cd5c5ac9b3874d956c892d23f2119"/><file name="hd-sprite.gif" hash="6a54ae98bef53397d52282201852c204"/><file name="icon-error.gif" hash="f477b54b6b8361362e96c2218dce7ea0"/><file name="icon-info.gif" hash="ec6b7a5d4caeea767c8674689bae47c6"/><file name="icon-question.gif" hash="2713644a8aa582728d71e35eca62fbcd"/><file name="icon-warning.gif" hash="3f20258272af0e00f6b7531b3b9aee35"/><file name="large-loading.gif" hash="d96f6517e00399c37a9765e045eaaf22"/><file name="left-btn.gif" hash="6bf30c6cf0b5d70436c3e463b5532b35"/><file name="loading-balls.gif" hash="ac062b94ed674aaa50a6c18df92acdf3"/><file name="right-btn.gif" hash="e7ad3a7f4814791cecf1b90e77e9e139"/><file name="shadow-c.png" hash="7ab6163237099f2529452b88953a4049"/><file name="shadow-lr.png" hash="986270d8ab4330fa7499dc33ed135598"/><file name="shadow.png" hash="860bf4f690d2ea2aba7b11500925da62"/><file name="warning.gif" hash="448dc934a7f0dd6092b51f88a1e47b2d"/></dir><dir name="sizer"><file name="e-handle-dark.gif" hash="b86289f41d7ad1a7401dd2b2a9b3c3d8"/><file name="e-handle.gif" hash="510edc95ebaa36306916c50ca10596f7"/><file name="ne-handle-dark.gif" hash="115f71b851c7f0b5f354caa7b8dfff15"/><file name="ne-handle.gif" hash="8e268b962dc909d275997b572ff17a72"/><file name="nw-handle-dark.gif" hash="4a361e6920b2e34a39fd425a515c83b9"/><file name="nw-handle.gif" hash="1120600505249c38c3d1cc2ab120cd13"/><file name="s-handle-dark.gif" hash="4a6bf15d308a4ae580dd03cbd431a95c"/><file name="s-handle.gif" hash="5e3338cb09e9df7f52383d6b1423fc86"/><file name="se-handle-dark.gif" hash="f3d8d8aac23e3e9633072e2366cda847"/><file name="se-handle.gif" hash="71edc3f63f79f447d2c81ee09e1fbbc3"/><file name="square.gif" hash="4431ea1954bfd2a9cea0931f07fc7ffa"/><file name="sw-handle-dark.gif" hash="44b2400d873cf8a23d84424827cde44d"/><file name="sw-handle.gif" hash="c3e0befc4208a51180344765fd7deeda"/></dir><dir name="slider"><file name="slider-bg.gif" hash="a6286f74e6de7414663483aa08305a2f"/><file name="slider-bg.png" hash="1fbffa04044bed9262836d2a710f9ee1"/><file name="slider-thumb.gif" hash="e8b6ac40fa2709692ed0d806ef90b0c3"/><file name="slider-thumb.png" hash="24a893c9606f3a6892eb62f29a08870c"/><file name="slider-v-bg.gif" hash="9d8e5f0a4afa0e2256b999c856ba1a9e"/><file name="slider-v-bg.png" hash="0682c28925a7296730f7f221e4a76b96"/><file name="slider-v-thumb.gif" hash="c871f735637e1c383862aacecabb554a"/><file name="slider-v-thumb.png" hash="2fc3430dc351d9a118e048b9aafb7c3c"/></dir><dir name="tab-bar"><file name="scroll-left.gif" hash="611cea625f98ee5c0204dc186da8a05e"/><file name="scroll-right.gif" hash="b31b5bb81129aa52755f7f0becedc624"/><file name="tab-bar-default-bg.gif" hash="d8e4c911af8cf8660fd598b0a004fbb4"/></dir><dir name="tip"><file name="tip-corners.gif" hash="679a8fd0e2d9aa18fedc2f2b4f6001bc"/><file name="tip-sides.gif" hash="f9f434277b451d60474db8756a506736"/></dir><dir name="toolbar"><file name="more.gif" hash="15c7a30d4131305b672fe1e76d962d4d"/><file name="scroll-left.gif" hash="90ed293465f6f6bbb6104e9285f60392"/><file name="scroll-right.gif" hash="086497e95d820d7c58a1be2293e6e4a6"/><file name="toolbar-default-bg.gif" hash="61b9dcfa93a445a8a7dbbfde6efd5ecf"/></dir><dir name="tools"><file name="tool-sprite-tpl.gif" hash="e0449768cd5dce80b18fac904818ab33"/><file name="tool-sprites.gif" hash="75106d9a5ffab255a5bb3792a2a16e16"/><file name="tools-sprites-trans.gif" hash="8331513f15bd26be38974a7d7fc4ee41"/></dir><dir name="tree"><file name="arrows.gif" hash="bd4ecad4870c5b23926742ddd1298584"/><file name="drop-above.gif" hash="d6b303cfa3de8784057d9d7e66cdaa86"/><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-append.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-below.gif" hash="55e5dbc9451cfa91423832260b0753aa"/><file name="drop-between.gif" hash="edb544a0de58547d4a39c526e06e3c82"/><file name="drop-no.gif" hash="67f83ea04a2eb1c50614a96faf625f25"/><file name="drop-over.gif" hash="d6b303cfa3de8784057d9d7e66cdaa86"/><file name="drop-under.gif" hash="55e5dbc9451cfa91423832260b0753aa"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/><file name="elbow-end-minus-nl.gif" hash="04025031365f2bdb09169188eae9556b"/><file name="elbow-end-minus.gif" hash="b4ae35ce75b5bbe728fdeeb5ed89ac42"/><file name="elbow-end-plus-nl.gif" hash="d6343055539d3ae503329e65d0927c0d"/><file name="elbow-end-plus.gif" hash="46f4d75f43fff6fcd4b0b9aeda907e9c"/><file name="elbow-end.gif" hash="6748722c117147e321d0af952833109e"/><file name="elbow-line.gif" hash="765c70e58be8064da7ce8c01afb1f6c3"/><file name="elbow-minus-nl.gif" hash="04025031365f2bdb09169188eae9556b"/><file name="elbow-minus.gif" hash="01359f5b57c066f952c1d5a02f21a457"/><file name="elbow-plus-nl.gif" hash="d6343055539d3ae503329e65d0927c0d"/><file name="elbow-plus.gif" hash="e4385b53e7f15b43b74e9c3b46cfee77"/><file name="elbow.gif" hash="53321708a4948539bb8b4c8efeae39c7"/><file name="folder-open.gif" hash="2bf2623696392abc9b2853b59aab3bb5"/><file name="folder.gif" hash="d15144420ee39843bb27feb014ee4442"/><file name="leaf.gif" hash="23757d6e353f343e3c7edfe28428f198"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/></dir><dir name="util"><dir name="splitter"><file name="mini-bottom.gif" hash="ae8e3674fd32997dc5217d5d6199a5a5"/><file name="mini-left.gif" hash="8654fdb45ecf4406af2fce1d3beb7596"/><file name="mini-right.gif" hash="cbdf9fb0c45466b4217ac9f7bd6a9ed4"/><file name="mini-top.gif" hash="fbd91e98576f66fd2702495251b15240"/></dir></dir></dir></dir><file name="dnd_grid_to_grid.js" hash="057a8cbf8b255c1955c83ca249bd9ae8"/><file name="examples.js" hash="c34c39a3da1b2216f636778b26e10108"/><file name="ext-all.js" hash="33c8a2191d27ee2812d9e5469f094556"/></dir><dir name="jquery"><file name="jquery.min.js" hash="4c8cfcfcda2e9d34ba0097086a7bc328"/></dir><dir name="resources"><dir name="css"><file name="README.txt" hash="66440774774ca4995ad5137ac9ae48e0"/><file name="basic-dialog.css" hash="4cc973c87f79ea230f372cea597963ba"/><file name="box.css" hash="3809db7ee254d629d52dba0aad472d35"/><file name="button.css" hash="d3f29c8497579832fe5d7aafff7c3544"/><file name="combo.css" hash="483a1a701ca9c7db718e0e767f3d4585"/><file name="core.css" hash="6e82710d5206b6b7c0f70399cf649449"/><file name="date-picker.css" hash="fa68b668561d477e702318fb5d59636c"/><file name="dd.css" hash="f0e5f55969aeda8f65a01033613181c5"/><file name="debug.css" hash="6ef466c0c857e0c405cac7b8911f0824"/><file name="editor.css" hash="2fdb75e85a247c362285d4f079c0a12f"/><file name="ext-all.css" hash="c5e12af950c3ea3a243d0b9ca0dc4dba"/><file name="form.css" hash="38bd5bd602a83075325696af2c447e65"/><file name="grid.css" hash="c6d110f89542c04e4cbf98de73e97e9b"/><file name="layout.css" hash="89251906d248b3756f0ed354491651a6"/><file name="menu.css" hash="88eb8b3754612496ccf9d386694a39e0"/><file name="panel.css" hash="deaf7ccb5526687fadd67c093da9e604"/><file name="qtips.css" hash="2a6e683a7b23cbdf52177d7141d17435"/><file name="reset-min.css" hash="8fddbb1b7930f2817f2d5d215be98d5f"/><file name="resizable.css" hash="a50b8d1ea8e9dfbdd101a43bc63857c3"/><file name="tabs.css" hash="323d6f11f1550a43a02a617e39242ed5"/><file name="toolbar.css" hash="d09eb7507f57178967d217caeaa8b046"/><file name="tree.css" hash="b0104f954fbe1f04ebf49acffcec74ef"/><file name="ytheme-aero.css" hash="c25b48ba1b913f2ea094065fa916e9da"/><file name="ytheme-galdaka.css" hash="8b1917749205e64bdbcecc893e188b09"/><file name="ytheme-gray.css" hash="c45ba874b89038c9c8d9a79a1c591f26"/><file name="ytheme-magento.css" hash="94c3fc72743ad6d1fe7d8e74d713750e"/><file name="ytheme-vista.css" hash="2092ef97154cf5f6b33893bf5e178e21"/></dir><dir name="themes"><dir name="images"><dir name="default"><dir name="basic-dialog"><file name="btn-arrow.gif" hash="9e2365ef98c6096f6b5f411ab618bb4e"/><file name="btn-sprite.gif" hash="73a8327c23c12ed9ec42ac8f52b072e0"/><file name="close.gif" hash="2d54069e9355f295dd27027f7f779eb9"/><file name="collapse.gif" hash="63b2687a2dc81537765a7d22f9e480da"/><file name="e-handle.gif" hash="f9357e6c1dfbd00da007cf6705e08225"/><file name="expand.gif" hash="740af52fb7de6ca9fd888184e86a5308"/><file name="hd-sprite.gif" hash="6a54ae98bef53397d52282201852c204"/><file name="progress.gif" hash="baff9a083b93588fa7ff3548844a9e1a"/><file name="progress2.gif" hash="339036f9eb530c1b180c77f9a109ef3e"/><file name="s-handle.gif" hash="36b90844c0b35da23da21aac599957d4"/><file name="se-handle.gif" hash="668b22581100befcf947e806599dc0ce"/></dir><dir name="box"><file name="corners-blue.gif" hash="86fd4c5664e0971bfc11959e8442604c"/><file name="corners.gif" hash="d2d1bc2085b369ce35ffd20c0121676e"/><file name="l-blue.gif" hash="ced9ffbf66ea39e77083a591f8257267"/><file name="l.gif" hash="c4d9dbbdc59ae06b5e9e72a6a865c981"/><file name="r-blue.gif" hash="82dbb522a80e3246f6297719371a9494"/><file name="r.gif" hash="bf1e1d4a45f951ae656968a8c834f04a"/><file name="tb-blue.gif" hash="7c4b19eb682afdc1bde0640d2321fb25"/><file name="tb.gif" hash="dd3f63afe7ba90983ba73dad1c66bf2f"/></dir><dir name="dd"><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-no.gif" hash="ae536c37391ba78143b5c8283cec8d13"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/></dir><dir name="editor"><file name="tb-sprite.gif" hash="8908365d736426795ce46de7e328b508"/></dir><dir name="form"><file name="clear-trigger.gif" hash="97b3e5e9edf27b50d63d48098c2f1eae"/><file name="date-trigger.gif" hash="9245675ed8931df277184b419cf4cdad"/><file name="error-tip-corners.gif" hash="364474276178c7b48b6270056b42b808"/><file name="exclamation.gif" hash="40491021e901fa801dbbc09b6c59d73e"/><file name="search-trigger.gif" hash="559ef372cf27a38678d84e8c0b7237fc"/><file name="text-bg.gif" hash="d5ba54c1f417e6a72cbce8b909078727"/><file name="trigger-tpl.gif" hash="d7be20f0dc38f4f46cd318fe32cf3ce3"/><file name="trigger.gif" hash="45019efdf75528242c5a68742821dc57"/></dir><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><dir name="grid"><file name="Thumbs.db" hash="c3affff39ba36b80da43a08c34a61391"/><file name="arrow-left-white.gif" hash="b04e859bdcbd21ad1f06b8bfa7881df8"/><file name="arrow-right-white.gif" hash="714eb00f8134dde3a65c83f3f71ad2c4"/><file name="col-move-bottom.gif" hash="9c38bcb5cee1dc9b4ce64ad9ab1386f8"/><file name="col-move-top.gif" hash="c4584202d5172464050f675d396d1c6f"/><file name="dirty.gif" hash="decca3b96e2c37cf6eb04ddb0d9f669b"/><file name="done.gif" hash="365266930a93451414fe51ffc524a196"/><file name="drop-no.gif" hash="b53ca86d60fbcc7a45c8917299218bfd"/><file name="drop-yes.gif" hash="af96f4c3b32a470db2f38abb521b5c97"/><file name="footer-bg.gif" hash="65ed63e44c6149f1127ad3b4be4e0108"/><file name="grid-blue-hd.gif" hash="dd35d5c1202c440c2d1a945b335984d3"/><file name="grid-blue-split.gif" hash="0494ba49974ff2bc1bf81e1d82dfee18"/><file name="grid-hrow.gif" hash="55972a5063d80f35fb6b95a79bb0018a"/><file name="grid-loading.gif" hash="9ac6f737eb9b15272f12b00bfeb3c3c6"/><file name="grid-split.gif" hash="3ef419d4b9421d8e94f673a6238dc4c0"/><file name="grid-vista-hd.gif" hash="675f403e8a9cb5ab4bed725da9fe2023"/><file name="grid3-hd-btn.gif" hash="e3e77072c16a6b27556236961f29c552"/><file name="grid3-hrow-over.gif" hash="a92d8f6c106943995720f2884634670e"/><file name="grid3-hrow.gif" hash="4c58074bb961c8f184522355f1b0eb90"/><file name="grid3-special-col-bg.gif" hash="c9df03a1c107360128da89fa47066405"/><file name="grid3-special-col-sel-bg.gif" hash="a94039f89dec164896ceff1fbdf6dbc5"/><file name="hd-pop.gif" hash="e5f27a2f68cc2d13b11cf41c46d298dc"/><file name="hmenu-asc.gif" hash="048e0bc30f7c39d473dad5dabcbe03f2"/><file name="hmenu-desc.gif" hash="f0a987b34b003b25a7c82624d41f018a"/><file name="hmenu-lock.gif" hash="bcef18e25342c69c37c44dab87086065"/><file name="hmenu-lock.png" hash="2a3b0b441834f443c1086930939efdae"/><file name="hmenu-unlock.gif" hash="8cc8205dafa587ef02d8a86903ae8074"/><file name="hmenu-unlock.png" hash="c1f61df70b98c5498ea81e7e7b9effbb"/><file name="invalid_line.gif" hash="04a88e97b56e8a8ece4a66d49cc78828"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="mso-hd.gif" hash="37fba9c02f0eefe57f655890eef1c4a1"/><file name="nowait.gif" hash="23c91166dbb16ba8655363321bf5a400"/><file name="page-first-disabled.gif" hash="8d3185028c541cbcce67b5909c04824e"/><file name="page-first.gif" hash="16ec00fa770d860b768cf5034ddfca96"/><file name="page-last-disabled.gif" hash="1d123237ceeb5109a1b9274f0cf19d73"/><file name="page-last.gif" hash="ef524dd0b8dfe4eefecffaa1c0bb8edd"/><file name="page-next-disabled.gif" hash="0f4b8681772c91921fa93ede9c755ea0"/><file name="page-next.gif" hash="f6f9d2209dfc99912ffc9848d97646db"/><file name="page-prev-disabled.gif" hash="eefcbed15c8d37a89618b08f7b224297"/><file name="page-prev.gif" hash="80daad880483eed682b22ec70514ecc4"/><file name="pick-button.gif" hash="b431fdf306f1e2f033d0a431996de93f"/><file name="refresh.gif" hash="8dae08d3581dcd9a04ca73877eab4b53"/><file name="row-check-sprite.gif" hash="2d0aa7e501c3e6f97a97faf75e35d3c3"/><file name="row-expand-sprite.gif" hash="be81199d9d4fa69bef47a8f036a5a7d8"/><file name="row-over.gif" hash="f639094bd0560aefabc86e51a825f23d"/><file name="row-sel.gif" hash="ca87d6b950386edd5e17c985769d9101"/><file name="sort_asc.gif" hash="cc186187e31b0c39abbb7d2394916292"/><file name="sort_desc.gif" hash="fcfe91243fac2e5f24d05bb44f78ded4"/><file name="wait.gif" hash="b0cd5a5dc070c705ebf8814a909802c3"/></dir><dir name="layout"><file name="collapse.gif" hash="dfcec0803d488a783916c750fd83a897"/><file name="expand.gif" hash="c9c9b0ea5311c3dc016c69dc234912bc"/><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><file name="ns-collapse.gif" hash="efa9fbd7a1f3f0f1f22360391e16126f"/><file name="ns-expand.gif" hash="da1f9d40c091d3b6dc7a8dee4fc02ac6"/><file name="panel-close.gif" hash="b185da1837344529bfb684a96d8371b5"/><file name="panel-title-bg.gif" hash="b66384c309a397963389a76b07e9ecd4"/><file name="panel-title-light-bg.gif" hash="688d3a263442db125da170e5d3aebf70"/><file name="stick.gif" hash="be9e67ae0b61b01cfd15928ca7a3da51"/><file name="stuck.gif" hash="745e0cacb51250ea0216efc4a1cb50cb"/><file name="tab-close-on.gif" hash="0ae2c978e85391a69f0dce8da18d8b23"/><file name="tab-close.gif" hash="f92107cc6b4cb78af084648a628e01d2"/></dir><dir name="menu"><file name="checked.gif" hash="692bc97badf50c05495f6109143b4b11"/><file name="group-checked.gif" hash="f7973443d91e5e074013f1b07ee79479"/><file name="menu-parent.gif" hash="d303ad7e3ced891736e80f77e1d4e51d"/><file name="menu.gif" hash="5d34732294bbe06a862961dd02bcc962"/><file name="unchecked.gif" hash="9b90ed7c9e8f0892ce09f3b35b19db53"/></dir><dir name="panel"><file name="corners-sprite.gif" hash="06daef2335218cdfd900ce8bf7a68738"/><file name="left-right.gif" hash="49344fefef7c6f866f910b9067f0990f"/><file name="tool-sprite-tpl.gif" hash="e0449768cd5dce80b18fac904818ab33"/><file name="tool-sprites.gif" hash="31ccd74ac8dab4b5669887310a2341df"/><file name="top-bottom.gif" hash="d9a86e8466a31bd1cb87aae2cf55faf2"/><file name="white-corners-sprite.gif" hash="de8b3036676d19b9635f319a8a4aad36"/><file name="white-left-right.gif" hash="77a6389c6737ad507ca5330ad8816524"/><file name="white-top-bottom.gif" hash="f865d7237bff3c45fd4a8c448f97d236"/></dir><dir name="qtip"><file name="bg.gif" hash="49c0a530cc16357bb39d51c13065a88f"/><file name="close.gif" hash="0379d036250096cae2e42b427b3df2e7"/><file name="tip-sprite.gif" hash="11637a20b1f3f2331bf0627146c2f433"/></dir><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/><file name="shadow-c.png" hash="3abbfce345687daada53445adf6fddc7"/><file name="shadow-lr.png" hash="986270d8ab4330fa7499dc33ed135598"/><file name="shadow.png" hash="860bf4f690d2ea2aba7b11500925da62"/><dir name="shared"><file name="calendar.gif" hash="81296cff1f97f5365524f2b9dcf626da"/><file name="glass-bg.gif" hash="bc2cd5c5ac9b3874d956c892d23f2119"/><file name="left-btn.gif" hash="6bf30c6cf0b5d70436c3e463b5532b35"/><file name="right-btn.gif" hash="e7ad3a7f4814791cecf1b90e77e9e139"/><file name="warning.gif" hash="448dc934a7f0dd6092b51f88a1e47b2d"/></dir><dir name="sizer"><file name="e-handle-dark.gif" hash="b86289f41d7ad1a7401dd2b2a9b3c3d8"/><file name="e-handle.gif" hash="510edc95ebaa36306916c50ca10596f7"/><file name="ne-handle-dark.gif" hash="115f71b851c7f0b5f354caa7b8dfff15"/><file name="ne-handle.gif" hash="8e268b962dc909d275997b572ff17a72"/><file name="nw-handle-dark.gif" hash="4a361e6920b2e34a39fd425a515c83b9"/><file name="nw-handle.gif" hash="1120600505249c38c3d1cc2ab120cd13"/><file name="s-handle-dark.gif" hash="4a6bf15d308a4ae580dd03cbd431a95c"/><file name="s-handle.gif" hash="5e3338cb09e9df7f52383d6b1423fc86"/><file name="se-handle-dark.gif" hash="f3d8d8aac23e3e9633072e2366cda847"/><file name="se-handle.gif" hash="71edc3f63f79f447d2c81ee09e1fbbc3"/><file name="square.gif" hash="4431ea1954bfd2a9cea0931f07fc7ffa"/><file name="sw-handle-dark.gif" hash="44b2400d873cf8a23d84424827cde44d"/><file name="sw-handle.gif" hash="c3e0befc4208a51180344765fd7deeda"/></dir><dir name="tabs"><file name="tab-btm-inactive-left-bg.gif" hash="4f141a6abf25d3c9409b6c381333c138"/><file name="tab-btm-inactive-right-bg.gif" hash="eb2423d3b9dd072976ce955ab0c683d6"/><file name="tab-btm-left-bg.gif" hash="a36eb9382ed8b858eff2c5d4e5d7011a"/><file name="tab-btm-right-bg.gif" hash="9e4245776f0f7b6b6c7ddbf40a43103a"/><file name="tab-sprite.gif" hash="6a7d481bf5b74acfbfa0b01a35bd6620"/></dir><dir name="toolbar"><file name="btn-arrow-light.gif" hash="fa49b39a0fd88ef26264da44a2b4edea"/><file name="btn-arrow.gif" hash="12bda29a4c8016cfa047e852c4353f59"/><file name="btn-over-bg.gif" hash="faddf9b24cefa721326ba3f87f3ef31f"/><file name="gray-bg.gif" hash="cf2d9408f320e696e607d8472afa7ff0"/><file name="tb-bg.gif" hash="5309337fd7a22cab9d9467fd9eaa0a0c"/><file name="tb-btn-sprite.gif" hash="3aed28dd646d22e215c8a6a3e983322f"/></dir><dir name="tree"><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-between.gif" hash="edb544a0de58547d4a39c526e06e3c82"/><file name="drop-no.gif" hash="67f83ea04a2eb1c50614a96faf625f25"/><file name="drop-over.gif" hash="d6b303cfa3de8784057d9d7e66cdaa86"/><file name="drop-under.gif" hash="55e5dbc9451cfa91423832260b0753aa"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/><file name="elbow-end-minus-nl.gif" hash="5e5bffba157eceee7989db95b919e4d5"/><file name="elbow-end-minus.gif" hash="a469f6a4394d797c2efeffc70409f6db"/><file name="elbow-end-plus-nl.gif" hash="f0f50c0dd3ee6dd4b11c1f245b36eb01"/><file name="elbow-end-plus.gif" hash="ec1482391363612d9e5f8c7087fddaba"/><file name="elbow-end.gif" hash="345551384aa325189ba28a1c20f3405e"/><file name="elbow-line.gif" hash="90e478158df476dc989a60daaafc87e6"/><file name="elbow-minus-nl.gif" hash="5e5bffba157eceee7989db95b919e4d5"/><file name="elbow-minus.gif" hash="71bb1bd44b1274c60d30dba1de472ed7"/><file name="elbow-plus-nl.gif" hash="f0f50c0dd3ee6dd4b11c1f245b36eb01"/><file name="elbow-plus.gif" hash="945572d06a74b5f952251a86c595f2da"/><file name="elbow.gif" hash="27679f3b1222ba95d9925885d7d82d02"/><file name="folder-open.gif" hash="c569141d6ae7c61d838ed8af26aa9380"/><file name="folder.gif" hash="b7209740bb4a825a06beb8698d92c2b1"/><file name="leaf.gif" hash="23757d6e353f343e3c7edfe28428f198"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/></dir><dir name="window"><file name="corners-sprite.gif" hash="b485d6e69678822a0fb77cc312487874"/><file name="left-right.gif" hash="3fe626d6ca2f71d36fc62c32cb1cc52a"/><file name="top-bottom.gif" hash="8a227016c401438e602c2f770a611d5b"/></dir></dir><dir name="magento"><dir name="basic-dialog"><file name="collapse-on.gif" hash="b60dfdc0d00cfb30a8a622e0c22eed84"/><file name="collapse.gif" hash="8525b9d2e93d31e0b071b1f9bf9550e5"/><file name="expand-on.gif" hash="0dfb4ac6d626cdcaa931c14dbb45848e"/><file name="expand.gif" hash="0eb5c03da8b8415e0568784c959e536a"/><file name="hd-sprite.gif" hash="035bf2296afd70af7020cf06b60bf3f6"/><file name="ns-collapse-on.gif" hash="88ed8b7578c803f68d9f1eb171454e00"/><file name="ns-collapse.gif" hash="44b91376c040f91672aaa98c1fcc062b"/><file name="ns-expand-on.gif" hash="587c2ce90066280e5e6cd731bb9d346c"/><file name="ns-expand.gif" hash="57b479b168f8a54200bd1770b5591630"/><file name="panel_close.gif" hash="686c6dfcf341de25487ab4d8ea5954ce"/><file name="pop_close.gif" hash="dd3605531f9959901eff6f089f084bdc"/><file name="pop_collapse.gif" hash="2b8007242ae1c9ae9f26c60a878a63f7"/></dir><dir name="grid"><file name="grid-body-bg.gif" hash="b5fe585c01f57b2171a2b723abcc4a38"/><file name="grid-split.gif" hash="32e210451e8dc4295b53cf7ca13bb4a6"/></dir><dir name="layout"><file name="checkered-bg.gif" hash="f0a0cd29a6120377c289fd39e2ee7e80"/><file name="icon-catalog.gif" hash="435ff2300ddefb9f8a4bad8ee806fb1a"/><file name="icon-category.gif" hash="ce2a146851bb5ec1e41670b68183b56a"/><file name="icon-my-tasks.gif" hash="0ecb888b160701845e25a7140d038af0"/><file name="icon-product.gif" hash="a0707878c5221052209e5ae6a4de0bd2"/></dir><file name="loading_bg.gif" hash="e202ef7e03d0ef3e9beac7480dae65bf"/><dir name="tabs"><file name="tab-sprite.gif" hash="049fb2f4186b6dc9de747ad96456b1ab"/></dir><dir name="toolbar"><file name="btn-arrow.gif" hash="938cffb6de5cc8b1febfd1851fd983c2"/><file name="header_bg.gif" hash="3696842a32740fa159484cabc3340d13"/><file name="toolbar-bg.gif" hash="8d1b465c2a75963407b536d9081f649f"/></dir><dir name="tree"><file name="elbow-end-minus-nl.gif" hash="6dc08c43109cc6a365bd0270f05e2f1c"/><file name="elbow-end-minus.gif" hash="3dbdb88a9297fe5631e832f046b0350b"/><file name="elbow-end-plus-nl.gif" hash="6dc08c43109cc6a365bd0270f05e2f1c"/><file name="elbow-end-plus.gif" hash="5470e5712a9742ba666c26cb429baaeb"/><file name="elbow-end.gif" hash="63fe879440e2784e0cc0d316ce017745"/><file name="elbow-line.gif" hash="b316a39455304e20e01dbc437f57fd32"/><file name="elbow-minus-nl.gif" hash="0e3129bff70475c8f7f297e0e59d1608"/><file name="elbow-minus.gif" hash="e7b18ff6800e65c6e171bbb2a911762e"/><file name="elbow-plus-nl.gif" hash="78a8f737941fa658f1e770258a3791cd"/><file name="elbow-plus.gif" hash="b02cb264df55aef2105b1b245d075e56"/><file name="elbow.gif" hash="b6bd0e0237e3cd413fa2dac27701c724"/><file name="folder-open.gif" hash="e3cd196406d4857dc0c926807f16c409"/><file name="folder.gif" hash="03eb26c42137ac792609822862ef4d0f"/><file name="leaf.gif" hash="e3cd196406d4857dc0c926807f16c409"/><file name="s.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/></dir></dir></dir></dir></dir></dir><file name="ranking.js" hash="bbdbf7077ae6ffeb65b5f0b50bb3204f"/></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>