Version Notes
Added
sales functionality
Download this release
Release Info
| Developer | Magento Core Team |
| Extension | Wisepricer_Syncer |
| Version | 1.1.4.0 |
| Comparing to | |
| See all releases | |
Code changes from version 1.1.3.9 to 1.1.4.0
app/code/local/Wisepricer/Syncer/controllers/Adminhtml/SyncerController.php
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
<?php
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
class Wisepricer_Syncer_Adminhtml_SyncerController extends Mage_Adminhtml_Controller_Action
|
| 7 |
{
|
| 8 |
public function registrateAction()
|
|
@@ -11,12 +11,12 @@ class Wisepricer_Syncer_Adminhtml_SyncerController extends Mage_Adminhtml_Contro
|
|
| 11 |
$lisenceData=$model->load(1);
|
| 12 |
if(count($lisenceData->getData())>0){
|
| 13 |
if($lisenceData->getis_confirmed()==0){
|
| 14 |
-
|
| 15 |
}
|
| 16 |
}else{
|
| 17 |
-
|
| 18 |
}
|
| 19 |
-
|
| 20 |
$this->loadLayout()->_setActiveMenu('wisepricer');
|
| 21 |
$this->renderLayout();
|
| 22 |
}
|
|
@@ -26,12 +26,12 @@ class Wisepricer_Syncer_Adminhtml_SyncerController extends Mage_Adminhtml_Contro
|
|
| 26 |
$lisenceData=$model->load(1);
|
| 27 |
if(count($lisenceData->getData())>0){
|
| 28 |
if($lisenceData->getis_confirmed()==0){
|
| 29 |
-
|
| 30 |
}
|
| 31 |
}else{
|
| 32 |
-
|
| 33 |
}
|
| 34 |
-
|
| 35 |
$this->loadLayout()->_setActiveMenu('wisepricer');
|
| 36 |
$this->renderLayout();
|
| 37 |
}
|
|
@@ -41,13 +41,18 @@ class Wisepricer_Syncer_Adminhtml_SyncerController extends Mage_Adminhtml_Contro
|
|
| 41 |
$lisensekey = $post['licensekey'];
|
| 42 |
$website = $post['website'];
|
| 43 |
$type = $post['product_type'];
|
| 44 |
-
$
|
| 45 |
-
|
| 46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
}else{
|
| 48 |
-
$reprConf=
|
| 49 |
}
|
| 50 |
|
|
|
|
| 51 |
try {
|
| 52 |
if (empty($lisensekey)) {
|
| 53 |
Mage::throwException($this->__('Invalid form data. The license key is missing!'));
|
|
@@ -55,13 +60,13 @@ class Wisepricer_Syncer_Adminhtml_SyncerController extends Mage_Adminhtml_Contro
|
|
| 55 |
$model = Mage::getModel('wisepricer_syncer/config');
|
| 56 |
$lisenceData=$model->load(1);
|
| 57 |
if(count($lisenceData->getData())>0){
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
}else{
|
| 64 |
-
|
| 65 |
}
|
| 66 |
|
| 67 |
}
|
|
@@ -71,49 +76,49 @@ class Wisepricer_Syncer_Adminhtml_SyncerController extends Mage_Adminhtml_Contro
|
|
| 71 |
}
|
| 72 |
protected function _validateMapping($post){
|
| 73 |
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
}
|
| 83 |
if($post['sku']==''||$post['title']==''||$post['price']==''){
|
| 84 |
-
$isValid=false;
|
| 85 |
}
|
| 86 |
-
|
| 87 |
if(($post['cost']==''||$post['minprice_man']=='')&&$post['minprice']==''){
|
| 88 |
-
|
| 89 |
}
|
| 90 |
-
|
| 91 |
-
|
| 92 |
}
|
| 93 |
public function savemappingAction(){
|
| 94 |
$post= $this->getRequest()->getPost('mapping_form');
|
| 95 |
$this->_savekey();
|
| 96 |
-
|
| 97 |
$isValid=$this->_validateMapping($post);
|
| 98 |
if(!$post||!$isValid){
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
}
|
| 103 |
$data=array();
|
| 104 |
$model = Mage::getModel('wisepricer_syncer/mapping');
|
| 105 |
$allEntered=true;
|
| 106 |
-
|
| 107 |
foreach($post as $name=>$value){
|
| 108 |
|
| 109 |
if(!$value||$name=='type'||$name=='rule'){
|
| 110 |
continue;
|
| 111 |
}
|
| 112 |
-
|
| 113 |
-
$fieldName=$name;
|
| 114 |
-
|
| 115 |
if($name=='shipping_man'){
|
| 116 |
-
|
| 117 |
}
|
| 118 |
|
| 119 |
|
|
@@ -126,23 +131,23 @@ class Wisepricer_Syncer_Adminhtml_SyncerController extends Mage_Adminhtml_Contro
|
|
| 126 |
}
|
| 127 |
|
| 128 |
$mappingId=$model->loadIdByWsfield($fieldName);
|
| 129 |
-
|
| 130 |
if($mappingId){
|
| 131 |
-
|
| 132 |
$mapping=$model->load($mappingId);
|
| 133 |
$mapping->setmagento_field($value);
|
| 134 |
-
|
| 135 |
if($name=='minprice_man'){
|
| 136 |
-
|
| 137 |
}
|
| 138 |
-
|
| 139 |
try {
|
| 140 |
$mapping->save()->getId();
|
| 141 |
} catch (Exception $e){
|
| 142 |
Mage::getSingleton('adminhtml/session')->addError('Insert of the field "'.$fieldName.'" failed with a following message: '.$e->getMessage());
|
| 143 |
$allEntered=false;
|
| 144 |
-
}
|
| 145 |
-
|
| 146 |
}else{
|
| 147 |
$model->setData($data);
|
| 148 |
try {
|
|
@@ -150,45 +155,45 @@ class Wisepricer_Syncer_Adminhtml_SyncerController extends Mage_Adminhtml_Contro
|
|
| 150 |
} catch (Exception $e){
|
| 151 |
Mage::getSingleton('adminhtml/session')->addError('Insert of the field "'.$fieldName.'" failed with a following message: '.$e->getMessage());
|
| 152 |
$allEntered=false;
|
| 153 |
-
}
|
| 154 |
}
|
| 155 |
|
| 156 |
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
$lisenceModel=Mage::getModel('wisepricer_syncer/config')->load(1);
|
| 163 |
if($lisenceModel->getData()){
|
| 164 |
if($lisenceModel->getis_confirmed()==0){
|
| 165 |
$this->_createKeys($lisenceModel);
|
| 166 |
$lisenceModel->setis_confirmed(1)->save();
|
| 167 |
-
Mage::getSingleton('adminhtml/session')->addSuccess('Your integration with Wisepricer now is complete!');
|
| 168 |
-
}
|
| 169 |
}else{
|
| 170 |
-
|
| 171 |
}
|
| 172 |
-
|
| 173 |
-
|
| 174 |
}
|
| 175 |
-
|
| 176 |
public function checkcompatAction(){
|
| 177 |
|
| 178 |
}
|
| 179 |
-
|
| 180 |
protected function _createKeys($lisenceModel){
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
|
| 191 |
}
|
| 192 |
-
|
| 193 |
}
|
| 194 |
?>
|
| 1 |
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Performs integration between Wisepricer and Magento
|
| 4 |
+
*
|
| 5 |
+
*/
|
| 6 |
class Wisepricer_Syncer_Adminhtml_SyncerController extends Mage_Adminhtml_Controller_Action
|
| 7 |
{
|
| 8 |
public function registrateAction()
|
| 11 |
$lisenceData=$model->load(1);
|
| 12 |
if(count($lisenceData->getData())>0){
|
| 13 |
if($lisenceData->getis_confirmed()==0){
|
| 14 |
+
Mage::getSingleton('adminhtml/session')->addError('Integration not complete.');
|
| 15 |
}
|
| 16 |
}else{
|
| 17 |
+
Mage::getSingleton('adminhtml/session')->addError('Integration not complete.');
|
| 18 |
}
|
| 19 |
+
|
| 20 |
$this->loadLayout()->_setActiveMenu('wisepricer');
|
| 21 |
$this->renderLayout();
|
| 22 |
}
|
| 26 |
$lisenceData=$model->load(1);
|
| 27 |
if(count($lisenceData->getData())>0){
|
| 28 |
if($lisenceData->getis_confirmed()==0){
|
| 29 |
+
Mage::getSingleton('adminhtml/session')->addError('Integration not complete.');
|
| 30 |
}
|
| 31 |
}else{
|
| 32 |
+
Mage::getSingleton('adminhtml/session')->addError('Integration not complete.');
|
| 33 |
}
|
| 34 |
+
|
| 35 |
$this->loadLayout()->_setActiveMenu('wisepricer');
|
| 36 |
$this->renderLayout();
|
| 37 |
}
|
| 41 |
$lisensekey = $post['licensekey'];
|
| 42 |
$website = $post['website'];
|
| 43 |
$type = $post['product_type'];
|
| 44 |
+
if(isset($post['reprice_configurable'])){
|
| 45 |
+
$reprConf = $post['reprice_configurable'];
|
| 46 |
+
if(!$reprConf){
|
| 47 |
+
$reprConf=0;
|
| 48 |
+
}else{
|
| 49 |
+
$reprConf=1;
|
| 50 |
+
}
|
| 51 |
}else{
|
| 52 |
+
$reprConf=0;
|
| 53 |
}
|
| 54 |
|
| 55 |
+
|
| 56 |
try {
|
| 57 |
if (empty($lisensekey)) {
|
| 58 |
Mage::throwException($this->__('Invalid form data. The license key is missing!'));
|
| 60 |
$model = Mage::getModel('wisepricer_syncer/config');
|
| 61 |
$lisenceData=$model->load(1);
|
| 62 |
if(count($lisenceData->getData())>0){
|
| 63 |
+
$lisenceData->setLicensekey($lisensekey);
|
| 64 |
+
$lisenceData->setWebsite($website);
|
| 65 |
+
$lisenceData->setProduct_type($type);
|
| 66 |
+
$lisenceData->setReprice_configurable($reprConf);
|
| 67 |
+
$lisenceData->save();
|
| 68 |
}else{
|
| 69 |
+
$model->setLicensekey($lisensekey)->save();
|
| 70 |
}
|
| 71 |
|
| 72 |
}
|
| 76 |
}
|
| 77 |
protected function _validateMapping($post){
|
| 78 |
|
| 79 |
+
$isValid=false;
|
| 80 |
+
if(
|
| 81 |
+
$post['upc']||
|
| 82 |
+
$post['asin']||
|
| 83 |
+
($post['brand']&&$post['model'])||
|
| 84 |
+
($post['brand']&&$post['mpn'])
|
| 85 |
+
){
|
| 86 |
+
$isValid=true;
|
| 87 |
}
|
| 88 |
if($post['sku']==''||$post['title']==''||$post['price']==''){
|
| 89 |
+
$isValid=false;
|
| 90 |
}
|
| 91 |
+
|
| 92 |
if(($post['cost']==''||$post['minprice_man']=='')&&$post['minprice']==''){
|
| 93 |
+
$isValid=false;
|
| 94 |
}
|
| 95 |
+
|
| 96 |
+
return $isValid;
|
| 97 |
}
|
| 98 |
public function savemappingAction(){
|
| 99 |
$post= $this->getRequest()->getPost('mapping_form');
|
| 100 |
$this->_savekey();
|
| 101 |
+
|
| 102 |
$isValid=$this->_validateMapping($post);
|
| 103 |
if(!$post||!$isValid){
|
| 104 |
+
Mage::getSingleton('adminhtml/session')->addError('Your mapping is not valid.Please fill the data according to the instruction below.');
|
| 105 |
+
$this->_redirect('*/*/mapping');
|
| 106 |
+
return;
|
| 107 |
}
|
| 108 |
$data=array();
|
| 109 |
$model = Mage::getModel('wisepricer_syncer/mapping');
|
| 110 |
$allEntered=true;
|
| 111 |
+
|
| 112 |
foreach($post as $name=>$value){
|
| 113 |
|
| 114 |
if(!$value||$name=='type'||$name=='rule'){
|
| 115 |
continue;
|
| 116 |
}
|
| 117 |
+
|
| 118 |
+
$fieldName=$name;
|
| 119 |
+
|
| 120 |
if($name=='shipping_man'){
|
| 121 |
+
$fieldName='shipping';
|
| 122 |
}
|
| 123 |
|
| 124 |
|
| 131 |
}
|
| 132 |
|
| 133 |
$mappingId=$model->loadIdByWsfield($fieldName);
|
| 134 |
+
|
| 135 |
if($mappingId){
|
| 136 |
+
|
| 137 |
$mapping=$model->load($mappingId);
|
| 138 |
$mapping->setmagento_field($value);
|
| 139 |
+
|
| 140 |
if($name=='minprice_man'){
|
| 141 |
+
$mapping->setExtra($function);
|
| 142 |
}
|
| 143 |
+
|
| 144 |
try {
|
| 145 |
$mapping->save()->getId();
|
| 146 |
} catch (Exception $e){
|
| 147 |
Mage::getSingleton('adminhtml/session')->addError('Insert of the field "'.$fieldName.'" failed with a following message: '.$e->getMessage());
|
| 148 |
$allEntered=false;
|
| 149 |
+
}
|
| 150 |
+
|
| 151 |
}else{
|
| 152 |
$model->setData($data);
|
| 153 |
try {
|
| 155 |
} catch (Exception $e){
|
| 156 |
Mage::getSingleton('adminhtml/session')->addError('Insert of the field "'.$fieldName.'" failed with a following message: '.$e->getMessage());
|
| 157 |
$allEntered=false;
|
| 158 |
+
}
|
| 159 |
}
|
| 160 |
|
| 161 |
|
| 162 |
+
|
| 163 |
+
}
|
| 164 |
+
|
| 165 |
+
$this->_redirect('*/*/mapping');
|
| 166 |
+
if($allEntered){
|
| 167 |
$lisenceModel=Mage::getModel('wisepricer_syncer/config')->load(1);
|
| 168 |
if($lisenceModel->getData()){
|
| 169 |
if($lisenceModel->getis_confirmed()==0){
|
| 170 |
$this->_createKeys($lisenceModel);
|
| 171 |
$lisenceModel->setis_confirmed(1)->save();
|
| 172 |
+
Mage::getSingleton('adminhtml/session')->addSuccess('Your integration with Wisepricer now is complete!');
|
| 173 |
+
}
|
| 174 |
}else{
|
| 175 |
+
Mage::throwException($this->__('Invalid form data. The license key is missing!'));
|
| 176 |
}
|
| 177 |
+
}
|
| 178 |
+
|
| 179 |
}
|
| 180 |
+
|
| 181 |
public function checkcompatAction(){
|
| 182 |
|
| 183 |
}
|
| 184 |
+
|
| 185 |
protected function _createKeys($lisenceModel){
|
| 186 |
+
|
| 187 |
+
set_include_path(get_include_path().PS .BP.DS . 'lib'.DS.'phpseclib' . PS.BP.DS.'app'.DS.'code'.DS.'local'.DS.'Wisepricer'.DS.'Syncer'.DS.'lib'.DS.'phpseclib' );
|
| 188 |
+
include('Crypt'.DS.'RSA.php');
|
| 189 |
+
|
| 190 |
+
$rsa = new Crypt_RSA();
|
| 191 |
+
|
| 192 |
+
// Create the keypair
|
| 193 |
+
$keyArr = $rsa->createKey();
|
| 194 |
+
$lisenceModel->setpublickey($keyArr['publickey']);
|
| 195 |
+
$lisenceModel->setprivatekey($keyArr['privatekey']);
|
| 196 |
}
|
| 197 |
+
|
| 198 |
}
|
| 199 |
?>
|
app/code/local/Wisepricer/Syncer/etc/config.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<Wisepricer_Syncer>
|
| 5 |
-
<version>1.1.
|
| 6 |
<url>http://www.wisepricer.com/index.php</url>
|
| 7 |
<modulename>Wisepricer Syncer</modulename>
|
| 8 |
</Wisepricer_Syncer>
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<Wisepricer_Syncer>
|
| 5 |
+
<version>1.1.4.0</version>
|
| 6 |
<url>http://www.wisepricer.com/index.php</url>
|
| 7 |
<modulename>Wisepricer Syncer</modulename>
|
| 8 |
</Wisepricer_Syncer>
|
app/design/adminhtml/default/default/template/wisepricer/mapping.phtml
CHANGED
|
@@ -49,10 +49,15 @@
|
|
| 49 |
<div class="label-block"><label><?php echo $this->__('Import:')?></label></div>
|
| 50 |
<?php echo $this->renderWebsitesSelect($licenseData->getWebsite())?>
|
| 51 |
</div>
|
| 52 |
-
<div class="values-block-sub">
|
| 53 |
<div class="label-block"><label><?php echo $this->__('Product types:')?></label></div>
|
| 54 |
<?php echo $this->renderTypesSelect($licenseData->getProduct_type())?>
|
| 55 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
</div>
|
| 57 |
</div>
|
| 58 |
<p><?php echo $this->__('Please make sure the following fields are assigned correctly:');?></p>
|
| 49 |
<div class="label-block"><label><?php echo $this->__('Import:')?></label></div>
|
| 50 |
<?php echo $this->renderWebsitesSelect($licenseData->getWebsite())?>
|
| 51 |
</div>
|
| 52 |
+
<div class="values-block-sub b10">
|
| 53 |
<div class="label-block"><label><?php echo $this->__('Product types:')?></label></div>
|
| 54 |
<?php echo $this->renderTypesSelect($licenseData->getProduct_type())?>
|
| 55 |
</div>
|
| 56 |
+
<div class="values-block-sub">
|
| 57 |
+
<div class="label-block b0"><label><?php echo $this->__('Reprice Configurable')?></label></div>
|
| 58 |
+
<input type="checkbox" name="register_form[reprice_configurable]" <?php if($licenseData->getReprice_configurable()){ echo 'checked';}?>/>
|
| 59 |
+
<p class="wptip"><?php echo $this->__('The Configurable product will be assigned to the price of his cheapest child')?></p>
|
| 60 |
+
</div>
|
| 61 |
</div>
|
| 62 |
</div>
|
| 63 |
<p><?php echo $this->__('Please make sure the following fields are assigned correctly:');?></p>
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Wisepricer_Syncer</name>
|
| 4 |
-
<version>1.1.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -12,8 +12,8 @@
|
|
| 12 |
sales functionality</notes>
|
| 13 |
<authors><author><name>Moshe</name><user>auto-converted</user><email>moshe@wisepricer.com</email></author></authors>
|
| 14 |
<date>2013-01-22</date>
|
| 15 |
-
<time>
|
| 16 |
-
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="wisepricer"><file name="bullet-green.png" hash="78d917a9d9aea11366bada6e0ae53931"/><file name="validation_advice_bg.gif" hash="ffdad80de989e3b04a977be3778c4347"/><file name="wp-alert-icon.png" hash="0dbbadfbbe2329098d03f8351aa2eaf2"/><file name="wp-logo.png" hash="48db98cdfc570336c942271352f31094"/><file name="wp-save-btn.png" hash="6d8e02c7f5e54dcc705e6436f126c66d"/></dir></dir><dir name="wisepricer"><file name="chosen-sprite.png" hash="8e70d120437ffc6a1bf7cebeca292d5c"/><file name="chosen.css" hash="bcd3f3e697219898e26631ccf29d97ba"/><file name="chosen.proto.js" hash="8259b22f4f337ba9ab63506b5ee4a52f"/><file name="myprototype.js" hash="2325b8b147c5dfaa8531c9d8bafd3648"/><file name="prototype17.js" hash="2325b8b147c5dfaa8531c9d8bafd3648"/><file name="wisepricer.css" hash="
|
| 17 |
<compatible/>
|
| 18 |
<dependencies/>
|
| 19 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Wisepricer_Syncer</name>
|
| 4 |
+
<version>1.1.4.0</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL</license>
|
| 7 |
<channel>community</channel>
|
| 12 |
sales functionality</notes>
|
| 13 |
<authors><author><name>Moshe</name><user>auto-converted</user><email>moshe@wisepricer.com</email></author></authors>
|
| 14 |
<date>2013-01-22</date>
|
| 15 |
+
<time>14:20:12</time>
|
| 16 |
+
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="wisepricer"><file name="bullet-green.png" hash="78d917a9d9aea11366bada6e0ae53931"/><file name="validation_advice_bg.gif" hash="ffdad80de989e3b04a977be3778c4347"/><file name="wp-alert-icon.png" hash="0dbbadfbbe2329098d03f8351aa2eaf2"/><file name="wp-logo.png" hash="48db98cdfc570336c942271352f31094"/><file name="wp-save-btn.png" hash="6d8e02c7f5e54dcc705e6436f126c66d"/></dir></dir><dir name="wisepricer"><file name="chosen-sprite.png" hash="8e70d120437ffc6a1bf7cebeca292d5c"/><file name="chosen.css" hash="bcd3f3e697219898e26631ccf29d97ba"/><file name="chosen.proto.js" hash="8259b22f4f337ba9ab63506b5ee4a52f"/><file name="myprototype.js" hash="2325b8b147c5dfaa8531c9d8bafd3648"/><file name="prototype17.js" hash="2325b8b147c5dfaa8531c9d8bafd3648"/><file name="wisepricer.css" hash="397bfa0a6e896e076afc9dacd2497f07"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="syncer.xml" hash="a9d0f0b5af6b7bc28fb3c3b897c1773c"/></dir><dir name="template"><dir name="wisepricer"><file name="mapping.phtml" hash="04d44eae9ce309a1d5b0f8d32ad0c2d9"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Wisepricer_Syncer.xml" hash="838dc229469d27db4c96a49591b12f55"/></dir></target><target name="magelocal"><dir name="Wisepricer"><dir name="Syncer"><dir name="Block"><dir name="Adminhtml"><file name="Mapping.php" hash="2486297835319b16932b76cc7d80fdad"/><file name="Register.php" hash="ed2ffde3237ecba2dbdd6002b5077af3"/></dir></dir><dir name="controllers"><file name="BaseController.php" hash="def65eee1964d7c0667e8cb32375e74c"/><file name="ProductsController.php" hash="19ac2632b4f3400705242b299e9c9058"/><file name="SalesController.php" hash="5e9d9af3b9a0bcb33e7a9f3638416c3a"/><dir name="Adminhtml"><file name="SyncerController.php" hash="13efb7213186c9ab7061a82b2ba6af17"/></dir></dir><dir name="etc"><file name="config.xml" hash="0a994cec3cb4e9c29457f257b5a46cec"/></dir><dir name="Helper"><file name="Data.php" hash="025b73c04ab0ca01d2e7c75aaad7fea6"/></dir><dir name="lib"><dir name="phpseclib"><dir name="Crypt"><file name="AES.php" hash="dd67dd1dbc7706e6c740e8430054d5e0"/><file name="DES.php" hash="47ac443f1edd2833cdc2f4eb80aa9a71"/><file name="Hash.php" hash="9be22f6426f2176caebb34a6cd2cb579"/><file name="Random.php" hash="5befc55c3423792c0cd50bc6d4f527b1"/><file name="RC4.php" hash="c6ec724c3a5d807d5ea4645518c37d29"/><file name="Rijndael.php" hash="7a92c95c750dd9ec1b8ce92915b4aa35"/><file name="RSA.php" hash="9bd5734f28d149d183c603643f6dbbb4"/><file name="TripleDES.php" hash="07c384b505d52802803313126e9e3836"/></dir><dir name="Math"><file name="BigInteger.php" hash="61aa9373ea606c928187d168159ac3f8"/></dir><dir name="Net"><file name="SFTP.php" hash="029f797c16ddd23b1d65636a72141115"/><file name="SSH1.php" hash="818d83815fe9bb5741594226bbdad975"/><file name="SSH2.php" hash="db5145effae044c7a1f6e7d778b566f5"/></dir><dir name="PHP"><dir name="Compat"><dir name="Function"><file name="array_fill.php" hash="840a674cac272c5588fa59f9421ed9a3"/><file name="bcpowmod.php" hash="4cb8fab0ee419f4b5a626980bbf04938"/><file name="str_split.php" hash="85cb5961afa62dde933190ee851a6d9a"/></dir></dir></dir></dir></dir><dir name="Model"><file name="Config.php" hash="d669c3dc977ddf71a58c90fa8df3180c"/><file name="Mapping.php" hash="d924ae8bcf54a3ca1224e8680d847fee"/><file name="Observer.php" hash="e21af75f05e45c298c2edb6f004aacb2"/><file name="Reprice.php" hash="dbc1e153e39869abf2113c087834cfed"/><dir name="Adminhtml"><file name="Attributes.php" hash="081833a6ee1263008d1dd4a956adb5a9"/></dir><dir name="Mysql4"><file name="Config.php" hash="61b7eb73489844aa0ee041c216bab2db"/><file name="Mapping.php" hash="d97574adda931ce798964c67041f6af5"/><dir name="Config"><file name="Collection.php" hash="c7c7b6844e3ff8893163c392f4132f30"/></dir><dir name="Mapping"><file name="Collection.php" hash="c0f15143db582e070cfb83de92c57d09"/></dir></dir></dir><dir name="sql"><dir name="syncer_setup"><file name="mysql4-install-1.1.3.8.php" hash="f149922af5a6e5be8a474b4cc68d415f"/><file name="mysql4-upgrade-1.1.3.8-1.1.3.9.php" hash="8d7bcdc6fb908a4906f3af7dfcb28ab8"/></dir></dir></dir></dir></target></contents>
|
| 17 |
<compatible/>
|
| 18 |
<dependencies/>
|
| 19 |
</package>
|
skin/adminhtml/default/default/wisepricer/wisepricer.css
CHANGED
|
@@ -49,16 +49,24 @@
|
|
| 49 |
margin-bottom: 10px;
|
| 50 |
padding-left: 15px;
|
| 51 |
}
|
| 52 |
-
.mapping-guidelines{margin-top:
|
| 53 |
.import-guidelines{margin-top: 70px;}
|
| 54 |
.import-settings .label-block{float:left}
|
| 55 |
.import-settings .chzn-container{float:right}
|
| 56 |
-
.import-settings{height:
|
| 57 |
.values-block-sub{
|
| 58 |
float: left;
|
| 59 |
width: 410px;
|
| 60 |
}
|
| 61 |
-
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
.ship-price-cont{
|
| 63 |
background: none repeat scroll 0 0 #F1F1F1;
|
| 64 |
float: left;
|
| 49 |
margin-bottom: 10px;
|
| 50 |
padding-left: 15px;
|
| 51 |
}
|
| 52 |
+
.mapping-guidelines{margin-top: 125px; }
|
| 53 |
.import-guidelines{margin-top: 70px;}
|
| 54 |
.import-settings .label-block{float:left}
|
| 55 |
.import-settings .chzn-container{float:right}
|
| 56 |
+
.import-settings{height:100px}
|
| 57 |
.values-block-sub{
|
| 58 |
float: left;
|
| 59 |
width: 410px;
|
| 60 |
}
|
| 61 |
+
.wptip{
|
| 62 |
+
color: #8C8C8C;
|
| 63 |
+
float: left;
|
| 64 |
+
font-size: 11px;
|
| 65 |
+
margin-bottom: 0;
|
| 66 |
+
text-align: left;
|
| 67 |
+
}
|
| 68 |
+
.b10{margin-bottom:10px !important}
|
| 69 |
+
.b0{margin-bottom: 0 !important}
|
| 70 |
.ship-price-cont{
|
| 71 |
background: none repeat scroll 0 0 #F1F1F1;
|
| 72 |
float: left;
|
