Version Notes
Added
don't import out of stock checkbox
Download this release
Release Info
Developer | Magento Core Team |
Extension | Wisepricer_Syncer |
Version | 1.1.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.4.0 to 1.1.4.1
- app/code/local/Wisepricer/Syncer/Block/Adminhtml/Mapping.php +12 -3
- app/code/local/Wisepricer/Syncer/controllers/Adminhtml/SyncerController.php +17 -5
- app/code/local/Wisepricer/Syncer/controllers/ProductsController.php +8 -7
- app/code/local/Wisepricer/Syncer/etc/config.xml +1 -1
- app/code/local/Wisepricer/Syncer/sql/syncer_setup/mysql4-upgrade-1.1.3.9-1.1.4.1.php +12 -0
- app/design/adminhtml/default/default/template/wisepricer/mapping.phtml +6 -10
- package.xml +5 -5
- skin/adminhtml/default/default/wisepricer/wisepricer.css +6 -2
app/code/local/Wisepricer/Syncer/Block/Adminhtml/Mapping.php
CHANGED
@@ -7,8 +7,7 @@
|
|
7 |
class Wisepricer_Syncer_Block_Adminhtml_Mapping extends Mage_Adminhtml_Block_Widget_Form_Container
|
8 |
{
|
9 |
|
10 |
-
public function getHeader()
|
11 |
-
{
|
12 |
$header = "Wisepricer Mapping";
|
13 |
return $header;
|
14 |
}
|
@@ -196,6 +195,16 @@ class Wisepricer_Syncer_Block_Adminhtml_Mapping extends Mage_Adminhtml_Block_Wid
|
|
196 |
}
|
197 |
|
198 |
return false;
|
199 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
}
|
201 |
?>
|
7 |
class Wisepricer_Syncer_Block_Adminhtml_Mapping extends Mage_Adminhtml_Block_Widget_Form_Container
|
8 |
{
|
9 |
|
10 |
+
public function getHeader(){
|
|
|
11 |
$header = "Wisepricer Mapping";
|
12 |
return $header;
|
13 |
}
|
195 |
}
|
196 |
|
197 |
return false;
|
198 |
+
}
|
199 |
+
|
200 |
+
public function getImportOutStockSet(){
|
201 |
+
$model = Mage::getModel('wisepricer_syncer/config');
|
202 |
+
$lisenceData=$model->load(1);
|
203 |
+
if($lisenceData->getImport_outofstock()!='0'){
|
204 |
+
return 'checked';
|
205 |
+
}else{
|
206 |
+
return '';
|
207 |
+
}
|
208 |
+
}
|
209 |
}
|
210 |
?>
|
app/code/local/Wisepricer/Syncer/controllers/Adminhtml/SyncerController.php
CHANGED
@@ -37,10 +37,11 @@ class Wisepricer_Syncer_Adminhtml_SyncerController extends Mage_Adminhtml_Contro
|
|
37 |
}
|
38 |
public function _savekey()
|
39 |
{
|
40 |
-
$post
|
41 |
-
$lisensekey
|
42 |
-
$website
|
43 |
-
$type
|
|
|
44 |
if(isset($post['reprice_configurable'])){
|
45 |
$reprConf = $post['reprice_configurable'];
|
46 |
if(!$reprConf){
|
@@ -52,6 +53,16 @@ class Wisepricer_Syncer_Adminhtml_SyncerController extends Mage_Adminhtml_Contro
|
|
52 |
$reprConf=0;
|
53 |
}
|
54 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
|
56 |
try {
|
57 |
if (empty($lisensekey)) {
|
@@ -64,6 +75,7 @@ class Wisepricer_Syncer_Adminhtml_SyncerController extends Mage_Adminhtml_Contro
|
|
64 |
$lisenceData->setWebsite($website);
|
65 |
$lisenceData->setProduct_type($type);
|
66 |
$lisenceData->setReprice_configurable($reprConf);
|
|
|
67 |
$lisenceData->save();
|
68 |
}else{
|
69 |
$model->setLicensekey($lisensekey)->save();
|
@@ -169,7 +181,7 @@ class Wisepricer_Syncer_Adminhtml_SyncerController extends Mage_Adminhtml_Contro
|
|
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
|
173 |
}
|
174 |
}else{
|
175 |
Mage::throwException($this->__('Invalid form data. The license key is missing!'));
|
37 |
}
|
38 |
public function _savekey()
|
39 |
{
|
40 |
+
$post = $this->getRequest()->getPost('register_form');
|
41 |
+
$lisensekey = $post['licensekey'];
|
42 |
+
$website = $post['website'];
|
43 |
+
$type = $post['product_type'];
|
44 |
+
|
45 |
if(isset($post['reprice_configurable'])){
|
46 |
$reprConf = $post['reprice_configurable'];
|
47 |
if(!$reprConf){
|
53 |
$reprConf=0;
|
54 |
}
|
55 |
|
56 |
+
if(isset($post['import_outofstock'])){
|
57 |
+
$import_outofstock = $post['import_outofstock'];
|
58 |
+
if(!$import_outofstock){
|
59 |
+
$import_outofstock=0;
|
60 |
+
}else{
|
61 |
+
$import_outofstock=1;
|
62 |
+
}
|
63 |
+
}else{
|
64 |
+
$import_outofstock=0;
|
65 |
+
}
|
66 |
|
67 |
try {
|
68 |
if (empty($lisensekey)) {
|
75 |
$lisenceData->setWebsite($website);
|
76 |
$lisenceData->setProduct_type($type);
|
77 |
$lisenceData->setReprice_configurable($reprConf);
|
78 |
+
$lisenceData->setImport_outofstock($import_outofstock);
|
79 |
$lisenceData->save();
|
80 |
}else{
|
81 |
$model->setLicensekey($lisensekey)->save();
|
181 |
if($lisenceModel->getis_confirmed()==0){
|
182 |
$this->_createKeys($lisenceModel);
|
183 |
$lisenceModel->setis_confirmed(1)->save();
|
184 |
+
Mage::getSingleton('adminhtml/session')->addSuccess('Your integration with Wisepricer is now complete!');
|
185 |
}
|
186 |
}else{
|
187 |
Mage::throwException($this->__('Invalid form data. The license key is missing!'));
|
app/code/local/Wisepricer/Syncer/controllers/ProductsController.php
CHANGED
@@ -30,7 +30,7 @@ class Wisepricer_Syncer_ProductsController extends Wisepricer_Syncer_BaseControl
|
|
30 |
|
31 |
$magentoSessionId=Mage::getModel('core/cookie')->get('wpsession');
|
32 |
|
33 |
-
if($magentoSessionId!=$post['sesssionid']){
|
34 |
|
35 |
$returnArr=array(
|
36 |
'status'=>'failure',
|
@@ -80,9 +80,10 @@ class Wisepricer_Syncer_ProductsController extends Wisepricer_Syncer_BaseControl
|
|
80 |
$collection->addStoreFilter($licenseData->getWebsite());
|
81 |
}
|
82 |
|
|
|
|
|
|
|
83 |
|
84 |
-
//TODO add user control here - dont bring not saleble products
|
85 |
-
Mage::getSingleton('cataloginventory/stock')->addInStockFilterToCollection($collection);
|
86 |
$collection->setPage($pageNum, $count)->load();
|
87 |
// echo '<pre>'.print_r($collection->getData(),true).'</pre>'; die;
|
88 |
|
@@ -107,6 +108,7 @@ class Wisepricer_Syncer_ProductsController extends Wisepricer_Syncer_BaseControl
|
|
107 |
}elseif($field['wsp_field']=='productimage'){
|
108 |
|
109 |
if($field['magento_field']=='image'||$field['magento_field']=='small_image'){
|
|
|
110 |
$siteUrl=substr_replace(Mage::getUrl('media/catalog/product') ,"",-1);
|
111 |
$productData['productimage']=$siteUrl.$this->productOrigData['image'];
|
112 |
}else{
|
@@ -247,8 +249,7 @@ class Wisepricer_Syncer_ProductsController extends Wisepricer_Syncer_BaseControl
|
|
247 |
|
248 |
$magentoSessionId=Mage::getModel('core/cookie')->get('wpsession');
|
249 |
|
250 |
-
if($magentoSessionId!=$post['sesssionid']){
|
251 |
-
|
252 |
$returnArr=array(
|
253 |
'status'=>'failure',
|
254 |
'error_code'=>'771',
|
@@ -299,7 +300,7 @@ class Wisepricer_Syncer_ProductsController extends Wisepricer_Syncer_BaseControl
|
|
299 |
|
300 |
$magentoSessionId=Mage::getModel('core/cookie')->get('wpsession');
|
301 |
|
302 |
-
if($magentoSessionId!=$post['sesssionid']){
|
303 |
|
304 |
$returnArr=array(
|
305 |
'status'=>'failure',
|
@@ -420,7 +421,7 @@ class Wisepricer_Syncer_ProductsController extends Wisepricer_Syncer_BaseControl
|
|
420 |
|
421 |
$magentoSessionId=Mage::getModel('core/cookie')->get('wpsession');
|
422 |
|
423 |
-
if($magentoSessionId!=$post['sesssionid']){
|
424 |
|
425 |
$returnArr=array(
|
426 |
'status'=>'failure',
|
30 |
|
31 |
$magentoSessionId=Mage::getModel('core/cookie')->get('wpsession');
|
32 |
|
33 |
+
if((!$magentoSessionId)||($magentoSessionId!=$post['sesssionid'])){
|
34 |
|
35 |
$returnArr=array(
|
36 |
'status'=>'failure',
|
80 |
$collection->addStoreFilter($licenseData->getWebsite());
|
81 |
}
|
82 |
|
83 |
+
if($licenseData->getImport_outofstock()){
|
84 |
+
Mage::getSingleton('cataloginventory/stock')->addInStockFilterToCollection($collection);
|
85 |
+
}
|
86 |
|
|
|
|
|
87 |
$collection->setPage($pageNum, $count)->load();
|
88 |
// echo '<pre>'.print_r($collection->getData(),true).'</pre>'; die;
|
89 |
|
108 |
}elseif($field['wsp_field']=='productimage'){
|
109 |
|
110 |
if($field['magento_field']=='image'||$field['magento_field']=='small_image'){
|
111 |
+
//TODO add valid media url in case that website uses store code in url check this Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);
|
112 |
$siteUrl=substr_replace(Mage::getUrl('media/catalog/product') ,"",-1);
|
113 |
$productData['productimage']=$siteUrl.$this->productOrigData['image'];
|
114 |
}else{
|
249 |
|
250 |
$magentoSessionId=Mage::getModel('core/cookie')->get('wpsession');
|
251 |
|
252 |
+
if((!$magentoSessionId)||($magentoSessionId!=$post['sesssionid'])){
|
|
|
253 |
$returnArr=array(
|
254 |
'status'=>'failure',
|
255 |
'error_code'=>'771',
|
300 |
|
301 |
$magentoSessionId=Mage::getModel('core/cookie')->get('wpsession');
|
302 |
|
303 |
+
if((!$magentoSessionId)||($magentoSessionId!=$post['sesssionid'])){
|
304 |
|
305 |
$returnArr=array(
|
306 |
'status'=>'failure',
|
421 |
|
422 |
$magentoSessionId=Mage::getModel('core/cookie')->get('wpsession');
|
423 |
|
424 |
+
if((!$magentoSessionId)||($magentoSessionId!=$post['sesssionid'])){
|
425 |
|
426 |
$returnArr=array(
|
427 |
'status'=>'failure',
|
app/code/local/Wisepricer/Syncer/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Wisepricer_Syncer>
|
5 |
-
<version>1.1.4.
|
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.1</version>
|
6 |
<url>http://www.wisepricer.com/index.php</url>
|
7 |
<modulename>Wisepricer Syncer</modulename>
|
8 |
</Wisepricer_Syncer>
|
app/code/local/Wisepricer/Syncer/sql/syncer_setup/mysql4-upgrade-1.1.3.9-1.1.4.1.php
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
$installer = $this;
|
4 |
+
|
5 |
+
$installer->startSetup();
|
6 |
+
|
7 |
+
$installer->run("
|
8 |
+
|
9 |
+
ALTER TABLE {$this->getTable('wisepricer_syncer_config')} ADD `import_outofstock` INT( 255 ) NULL default '1';
|
10 |
+
");
|
11 |
+
|
12 |
+
$installer->endSetup();
|
app/design/adminhtml/default/default/template/wisepricer/mapping.phtml
CHANGED
@@ -5,6 +5,7 @@
|
|
5 |
?>
|
6 |
<form id="mapping_form" name="mapping_form" method="post" action="<?php echo $this->getUrl('*/*/savemapping')?>">
|
7 |
<input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
|
|
|
8 |
<div class="top_block">
|
9 |
<div class="top_block_left">
|
10 |
<div class="inner-cont">
|
@@ -53,7 +54,11 @@
|
|
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>
|
@@ -116,15 +121,6 @@
|
|
116 |
<td class="label firstcol"><span><?php echo $this->__('Cost')?></span></td>
|
117 |
<td class="input-ele"><?php echo $this->renderAttributesSelect('mapping_form[cost]','cost','0','chzn-select')?></td>
|
118 |
<td></td>
|
119 |
-
</tr>
|
120 |
-
<tr>
|
121 |
-
<td class="label firstcol"><span><?php echo $this->__('Stock')?></span></td>
|
122 |
-
<td class="input-ele">
|
123 |
-
<?php echo $this->renderAttributesSelect('mapping_form[stock]','stock','qty','chzn-select')?>
|
124 |
-
</td>
|
125 |
-
<td class="desc">
|
126 |
-
<p><span><?php echo $this->__('Product quantity')?></span></p>
|
127 |
-
</td>
|
128 |
</tr>
|
129 |
<tr>
|
130 |
<td class="label firstcol"><span><?php echo $this->__('Product image')?></span></td>
|
5 |
?>
|
6 |
<form id="mapping_form" name="mapping_form" method="post" action="<?php echo $this->getUrl('*/*/savemapping')?>">
|
7 |
<input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
|
8 |
+
<input name="mapping_form[stock]" type="hidden" value="qty" />
|
9 |
<div class="top_block">
|
10 |
<div class="top_block_left">
|
11 |
<div class="inner-cont">
|
54 |
<div class="label-block"><label><?php echo $this->__('Product types:')?></label></div>
|
55 |
<?php echo $this->renderTypesSelect($licenseData->getProduct_type())?>
|
56 |
</div>
|
57 |
+
<div class="values-block-sub b10 check-block">
|
58 |
+
<div class="label-block b0"><label><?php echo $this->__('Do not import out of stock items')?></label></div>
|
59 |
+
<input type="checkbox" name="register_form[import_outofstock]" <?php echo $this->getImportOutStockSet();?>/>
|
60 |
+
</div>
|
61 |
+
<div class="values-block-sub check-block">
|
62 |
<div class="label-block b0"><label><?php echo $this->__('Reprice Configurable')?></label></div>
|
63 |
<input type="checkbox" name="register_form[reprice_configurable]" <?php if($licenseData->getReprice_configurable()){ echo 'checked';}?>/>
|
64 |
<p class="wptip"><?php echo $this->__('The Configurable product will be assigned to the price of his cheapest child')?></p>
|
121 |
<td class="label firstcol"><span><?php echo $this->__('Cost')?></span></td>
|
122 |
<td class="input-ele"><?php echo $this->renderAttributesSelect('mapping_form[cost]','cost','0','chzn-select')?></td>
|
123 |
<td></td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
</tr>
|
125 |
<tr>
|
126 |
<td class="label firstcol"><span><?php echo $this->__('Product image')?></span></td>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Wisepricer_Syncer</name>
|
4 |
-
<version>1.1.4.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
@@ -9,11 +9,11 @@
|
|
9 |
<summary>WisePricer- Beat your competition</summary>
|
10 |
<description>WisePricer is a new tool that allows you to Track & monitor successful online retailers and update your store prices in real-time. With WisePricer you’ll never get left behind the competition.</description>
|
11 |
<notes>Added
|
12 |
-
|
13 |
<authors><author><name>Moshe</name><user>auto-converted</user><email>moshe@wisepricer.com</email></author></authors>
|
14 |
-
<date>2013-
|
15 |
-
<time>14:
|
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.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
9 |
<summary>WisePricer- Beat your competition</summary>
|
10 |
<description>WisePricer is a new tool that allows you to Track & monitor successful online retailers and update your store prices in real-time. With WisePricer you’ll never get left behind the competition.</description>
|
11 |
<notes>Added
|
12 |
+
don't import out of stock checkbox</notes>
|
13 |
<authors><author><name>Moshe</name><user>auto-converted</user><email>moshe@wisepricer.com</email></author></authors>
|
14 |
+
<date>2013-02-17</date>
|
15 |
+
<time>14:12:09</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="bd4dc50e10de4b41ae1c0ab18b2045ad"/></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="7bf8c5d09c4304a4d8d6d74980cc64fa"/></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="9c96a6e10821ab940b851ce890d00c2d"/><file name="Register.php" hash="ed2ffde3237ecba2dbdd6002b5077af3"/></dir></dir><dir name="controllers"><file name="BaseController.php" hash="def65eee1964d7c0667e8cb32375e74c"/><file name="ProductsController.php" hash="58c98ef75ef6676ba1f33ad55f03f51b"/><file name="SalesController.php" hash="5e9d9af3b9a0bcb33e7a9f3638416c3a"/><dir name="Adminhtml"><file name="SyncerController.php" hash="22cb1bbb7498960cd518b4b860b185d9"/></dir></dir><dir name="etc"><file name="config.xml" hash="2d42c8bd60f5d4585d0ef4be4aab26d0"/></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"/><file name="mysql4-upgrade-1.1.3.9-1.1.4.1.php" hash="99396eeee161d50822de7be3aa76cbec"/></dir></dir></dir></dir></target></contents>
|
17 |
<compatible/>
|
18 |
<dependencies/>
|
19 |
</package>
|
skin/adminhtml/default/default/wisepricer/wisepricer.css
CHANGED
@@ -31,7 +31,11 @@
|
|
31 |
.guidelines{width: 420px;float:right;padding-top: 20px}
|
32 |
.values-block{width: 580px;position: relative}
|
33 |
.license-block{ background: none repeat scroll 0 0 #F1F1F1; padding: 20px; width: 410px;margin-bottom: 20px;}
|
34 |
-
.license-block label{}
|
|
|
|
|
|
|
|
|
35 |
.license-block .label-block{margin-bottom: 10px;}
|
36 |
.license-block input{width: 220px;}
|
37 |
.mid_block .t-header td{ padding-bottom: 10px;}
|
@@ -53,7 +57,7 @@
|
|
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;
|
31 |
.guidelines{width: 420px;float:right;padding-top: 20px}
|
32 |
.values-block{width: 580px;position: relative}
|
33 |
.license-block{ background: none repeat scroll 0 0 #F1F1F1; padding: 20px; width: 410px;margin-bottom: 20px;}
|
34 |
+
.license-block label{}
|
35 |
+
.check-block .label-block label{
|
36 |
+
display: inline-block;
|
37 |
+
width: 190px;
|
38 |
+
}
|
39 |
.license-block .label-block{margin-bottom: 10px;}
|
40 |
.license-block input{width: 220px;}
|
41 |
.mid_block .t-header td{ padding-bottom: 10px;}
|
57 |
.import-guidelines{margin-top: 70px;}
|
58 |
.import-settings .label-block{float:left}
|
59 |
.import-settings .chzn-container{float:right}
|
60 |
+
.import-settings{height:130px}
|
61 |
.values-block-sub{
|
62 |
float: left;
|
63 |
width: 410px;
|