Manthan_Multi_Seller_Marketplace - Version 1.1.0

Version Notes

Resolved marketplace shipping per product shipping method not display for admin product,fix PHP version error while installation

Download this release

Release Info

Developer Manthan Soni
Extension Manthan_Multi_Seller_Marketplace
Version 1.1.0
Comparing to
See all releases


Code changes from version 1.0.0 to 1.1.0

app/code/community/Manthan/Marketplace/Block/Adminhtml/Order/Grid.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
-
3
- class Manthan_Marketplace_Block_Adminhtml_Order_Grid extends Mage_Adminhtml_Block_Widget_Grid {
4
-
5
- public function __construct(){
6
  parent::__construct();
7
  $this->setId('orderGrid');
8
  $this->setDefaultSort('entity_id');
1
  <?php
2
+ class Manthan_Marketplace_Block_Adminhtml_Order_Grid extends Mage_Adminhtml_Block_Widget_Grid
3
+ {
4
+ public function __construct()
5
+ {
6
  parent::__construct();
7
  $this->setId('orderGrid');
8
  $this->setDefaultSort('entity_id');
app/code/community/Manthan/Marketplace/Block/Adminhtml/Rating/Grid.php CHANGED
@@ -40,6 +40,23 @@ class Manthan_Marketplace_Block_Adminhtml_Rating_Grid extends Mage_Adminhtml_Blo
40
  ),
41
  ));
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  return parent::_prepareColumns();
44
  }
45
 
40
  ),
41
  ));
42
 
43
+ $this->addColumn('action', array(
44
+ 'header' => Mage::helper('adminhtml')->__('Action'),
45
+ 'width' => '50px',
46
+ 'type' => 'action',
47
+ 'getter' => 'getId',
48
+ 'actions' => array(
49
+ array(
50
+ 'caption' => Mage::helper('adminhtml')->__('Edit'),
51
+ 'url' => array('base' => '*/*/edit'),
52
+ 'field' => 'id'
53
+ )
54
+ ),
55
+ 'filter' => false,
56
+ 'sortable' => false,
57
+ 'is_system' => true,
58
+ ));
59
+
60
  return parent::_prepareColumns();
61
  }
62
 
app/code/community/Manthan/Marketplace/Block/Adminhtml/Review/Grid.php CHANGED
@@ -102,7 +102,22 @@ class Manthan_Marketplace_Block_Adminhtml_Review_Grid extends Mage_Adminhtml_Blo
102
  'options' => array(0=>'Pending',1=>'Approved',2=>'Not Approved'),
103
  ));
104
 
105
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  return parent::_prepareColumns();
107
  }
108
 
102
  'options' => array(0=>'Pending',1=>'Approved',2=>'Not Approved'),
103
  ));
104
 
105
+ $this->addColumn('action', array(
106
+ 'header' => Mage::helper('adminhtml')->__('Action'),
107
+ 'width' => '50px',
108
+ 'type' => 'action',
109
+ 'getter' => 'getId',
110
+ 'actions' => array(
111
+ array(
112
+ 'caption' => Mage::helper('adminhtml')->__('Edit'),
113
+ 'url' => array('base' => '*/*/edit'),
114
+ 'field' => 'id'
115
+ )
116
+ ),
117
+ 'filter' => false,
118
+ 'sortable' => false,
119
+ 'is_system' => true,
120
+ ));
121
  return parent::_prepareColumns();
122
  }
123
 
app/code/community/Manthan/Marketplace/Block/Adminhtml/Seller/Account/Edit/Tab/Form.php CHANGED
@@ -162,7 +162,7 @@ class Manthan_Marketplace_Block_Adminhtml_Seller_Account_Edit_Tab_Form extends M
162
  )
163
  );
164
  $fieldset->addField('admin_total_earn', 'label', array(
165
- 'label' => Mage::helper('adminhtml')->__('Total Admin Earn From Your Sale'),
166
  'value' => Mage::helper('core')->currency($sellerModel->getAdminTotalEarn(), true, false)
167
  ));
168
  $fieldset->addField('total_vendor_earn', 'label', array(
162
  )
163
  );
164
  $fieldset->addField('admin_total_earn', 'label', array(
165
+ 'label' => Mage::helper('adminhtml')->__('Total Admin Earn'),
166
  'value' => Mage::helper('core')->currency($sellerModel->getAdminTotalEarn(), true, false)
167
  ));
168
  $fieldset->addField('total_vendor_earn', 'label', array(
app/code/community/Manthan/Marketplace/Block/Adminhtml/Seller/Account/Grid.php CHANGED
@@ -68,22 +68,26 @@ class Manthan_Marketplace_Block_Adminhtml_Seller_Account_Grid extends Mage_Admin
68
  'width' => '50px',
69
  ));
70
 
 
 
71
  $this->addColumn('admin_commission_by_percentage', array(
72
  'header' => Mage::helper('adminhtml')->__('Admin Commision(%)'),
 
73
  'index' => 'admin_commission_by_percentage',
74
  'width' => '20px',
 
 
75
  ));
76
 
77
- $currencyCode = Mage::app()->getStore()->getCurrentCurrencyCode();
78
- $this->addColumnAfter('admin_total_earn', array(
79
  'header' => Mage::helper('adminhtml')->__('Admin Earn'),
80
  'type' => 'currency',
81
  'currency_code' => $currencyCode,
82
  'index' => 'admin_total_earn',
83
  'filter' => false,
84
  'width' => '100px',
85
-
86
- ), 'admin_commission_by_percentage');
87
 
88
  $this->addColumn('telephone', array(
89
  'header' => Mage::helper('adminhtml')->__('Telephone'),
@@ -99,6 +103,23 @@ class Manthan_Marketplace_Block_Adminhtml_Seller_Account_Grid extends Mage_Admin
99
  'options' => array(0=> 'Inactive',1=>'Active')
100
  ));
101
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  return parent::_prepareColumns();
103
  }
104
 
68
  'width' => '50px',
69
  ));
70
 
71
+ $currencyCode = Mage::app()->getStore()->getCurrentCurrencyCode();
72
+
73
  $this->addColumn('admin_commission_by_percentage', array(
74
  'header' => Mage::helper('adminhtml')->__('Admin Commision(%)'),
75
+ 'type' => 'currency',
76
  'index' => 'admin_commission_by_percentage',
77
  'width' => '20px',
78
+ 'currency_code' => $currencyCode,
79
+ 'filter' => false,
80
  ));
81
 
82
+
83
+ $this->addColumn('admin_total_earn', array(
84
  'header' => Mage::helper('adminhtml')->__('Admin Earn'),
85
  'type' => 'currency',
86
  'currency_code' => $currencyCode,
87
  'index' => 'admin_total_earn',
88
  'filter' => false,
89
  'width' => '100px',
90
+ ));
 
91
 
92
  $this->addColumn('telephone', array(
93
  'header' => Mage::helper('adminhtml')->__('Telephone'),
103
  'options' => array(0=> 'Inactive',1=>'Active')
104
  ));
105
 
106
+ $this->addColumn('action', array(
107
+ 'header' => Mage::helper('adminhtml')->__('Action'),
108
+ 'width' => '50px',
109
+ 'type' => 'action',
110
+ 'getter' => 'getId',
111
+ 'actions' => array(
112
+ array(
113
+ 'caption' => Mage::helper('adminhtml')->__('Edit'),
114
+ 'url' => array('base' => '*/*/edit'),
115
+ 'field' => 'id'
116
+ )
117
+ ),
118
+ 'filter' => false,
119
+ 'sortable' => false,
120
+ 'is_system' => true,
121
+ 'totals_label' => ''
122
+ ));
123
  return parent::_prepareColumns();
124
  }
125
 
app/code/community/Manthan/Marketplace/Block/Adminhtml/System/Account/Edit/Form.php CHANGED
@@ -141,28 +141,16 @@ class Manthan_Marketplace_Block_Adminhtml_System_Account_Edit_Form extends Mage_
141
  'value' =>$sellerModel->getFirstItem()->getImage()
142
  ));
143
 
144
- $fieldset->addField('admin_commission_by_percentage', 'text', array(
145
- 'name' => 'admin_commission_by_percentage',
146
  'label' => Mage::helper('adminhtml')->__('Commission (in %)'),
147
- 'title' => Mage::helper('adminhtml')->__('Commission (in %)'),
148
- 'required' => true,
149
- 'style' => 'display:none',
150
- 'value' => $sellerModel->getFirstItem()->getAdminCommissionByPercentage(),
151
- 'after_element_html' => '<b>' . $sellerModel->getFirstItem()->getAdminCommissionByPercentage() . '</b>',
152
- )
153
- );
154
-
155
- $fieldset->addField('admin_total_earn', 'text', array(
156
- 'name' => 'admin_total_earn',
157
- 'label' => Mage::helper('adminhtml')->__('Total Admin Earn From Your Sale '),
158
- 'title' => Mage::helper('adminhtml')->__('Total Admin Earn From Your Sale'),
159
- 'disabled' => true,
160
- 'style' => 'display:none',
161
- 'value' => $sellerModel->getFirstItem()->getAdminTotalEarn(),
162
- 'after_element_html' => '<b>' . $sellerModel->getFirstItem()->getAdminTotalEarn() . '</b>',
163
-
164
- )
165
- );
166
  }
167
  /* END SHOP INFORMATION */
168
 
141
  'value' =>$sellerModel->getFirstItem()->getImage()
142
  ));
143
 
144
+ $fieldset->addField('admin_commission_by_percentage', 'label', array(
 
145
  'label' => Mage::helper('adminhtml')->__('Commission (in %)'),
146
+ 'value' => Mage::helper('core')->currency($sellerModel->getFirstItem()->getAdminCommissionByPercentage(), true, false),
147
+ ));
148
+
149
+ $fieldset->addField('admin_total_earn', 'label', array(
150
+ 'label' => Mage::helper('adminhtml')->__('Total Admin Earn'),
151
+ 'value' => Mage::helper('core')->currency($sellerModel->getFirstItem()->getAdminTotalEarn(), true, false),
152
+ ));
153
+
 
 
 
 
 
 
 
 
 
 
 
154
  }
155
  /* END SHOP INFORMATION */
156
 
app/code/community/Manthan/Marketplace/Model/Mysql4/Pricecomparison.php DELETED
@@ -1,9 +0,0 @@
1
- <?php
2
-
3
- class Manthan_Marketplace_Model_Mysql4_Pricecomparison extends Mage_Core_Model_Resource_Db_Abstract {
4
- protected function _construct() {
5
- $this->_init('marketplace/pricecomparison', 'entity_id');
6
- }
7
- }
8
-
9
- ?>
 
 
 
 
 
 
 
 
 
app/code/community/Manthan/Marketplace/Model/Mysql4/Pricecomparison/Collection.php DELETED
@@ -1,10 +0,0 @@
1
- <?php
2
-
3
- class Manthan_Marketplace_Model_Mysql4_Pricecomparison_Collection extends Mage_Core_Model_Resource_Db_Collection_Abstract {
4
-
5
- public function _construct() {
6
- $this->_init('marketplace/pricecomparison');
7
- }
8
- }
9
-
10
- ?>
 
 
 
 
 
 
 
 
 
 
app/code/community/Manthan/Marketplace/etc/config.xml CHANGED
@@ -1,7 +1,7 @@
1
  <config>
2
  <modules>
3
  <Manthan_Marketplace>
4
- <version>1.0.0</version>
5
  </Manthan_Marketplace>
6
  </modules>
7
  <global>
1
  <config>
2
  <modules>
3
  <Manthan_Marketplace>
4
+ <version>1.0.1</version>
5
  </Manthan_Marketplace>
6
  </modules>
7
  <global>
app/code/community/Manthan/Marketplaceproductshipping/Model/Carrier/Marketplaceproductshipping.php CHANGED
@@ -30,19 +30,19 @@ class Manthan_Marketplaceproductshipping_Model_Carrier_Marketplaceproductshippin
30
  ->addFieldToFilter('user_id',$userId);
31
  $sellerCountryCode = $sellerCollection->getFirstItem()->getCountry();
32
 
33
- if($sellerCountryCode == $destinationCountryCode)
34
  {
35
- $shippingPrice += $product->getDomesticShippingCost() * $item->getQty();
36
  }
37
- else if(empty(trim($product->getDomesticShippingCost()))&& empty(trim($product->getInternationalShippingCost())))
38
  {
39
  $shippingPrice += ($item->getQty() * $this->getConfigData('price'));
40
  }
41
- else if(empty(trim($product->getInternationalShippingCost()))&& ($product->getDomesticShippingCost() || $product->getDomesticShippingCost() == 0 ))
42
  {
43
  $shippingPrice += $product->getDomesticShippingCost() * $item->getQty();
44
  }
45
- else if(empty(trim($product->getDomesticShippingCost()))&& ($product->getInternationalShippingCost() || $product->getInternationalShippingCost() == 0 ))
46
  {
47
  $shippingPrice += $product->getInternationalShippingCost() * $item->getQty();
48
  }
@@ -57,15 +57,15 @@ class Manthan_Marketplaceproductshipping_Model_Carrier_Marketplaceproductshippin
57
  {
58
  $shippingPrice += $product->getDomesticShippingCost() * $item->getQty();
59
  }
60
- else if(empty(trim($product->getDomesticShippingCost()))&& empty(trim($product->getInternationalShippingCost())))
61
  {
62
  $shippingPrice += ($item->getQty() * $this->getConfigData('price'));
63
  }
64
- else if(empty(trim($product->getInternationalShippingCost()))&& ($product->getDomesticShippingCost() || $product->getDomesticShippingCost() == 0 ))
65
  {
66
  $shippingPrice += $product->getDomesticShippingCost() * $item->getQty();
67
  }
68
- else if(empty(trim($product->getDomesticShippingCost()))&& ($product->getInternationalShippingCost() || $product->getInternationalShippingCost() == 0 ))
69
  {
70
  $shippingPrice += $product->getInternationalShippingCost() * $item->getQty();
71
  }
@@ -94,11 +94,4 @@ class Manthan_Marketplaceproductshipping_Model_Carrier_Marketplaceproductshippin
94
  return array('marketplaceproductshipping'=>$this->getConfigData('name'));
95
  }
96
 
97
- }
98
-
99
-
100
-
101
-
102
-
103
-
104
-
30
  ->addFieldToFilter('user_id',$userId);
31
  $sellerCountryCode = $sellerCollection->getFirstItem()->getCountry();
32
 
33
+ if($sellerCountryCode == $destinationCountryCode && $product->getDomesticShippingCost() != '' )
34
  {
35
+ $shippingPrice += ($product->getDomesticShippingCost() * $item->getQty());
36
  }
37
+ else if($product->getDomesticShippingCost() == '' && $product->getInternationalShippingCost()=='')
38
  {
39
  $shippingPrice += ($item->getQty() * $this->getConfigData('price'));
40
  }
41
+ else if($product->getInternationalShippingCost()=='' && ($product->getDomesticShippingCost() || $product->getDomesticShippingCost() == 0 ))
42
  {
43
  $shippingPrice += $product->getDomesticShippingCost() * $item->getQty();
44
  }
45
+ else if($product->getDomesticShippingCost()=='' && ($product->getInternationalShippingCost() || $product->getInternationalShippingCost() == 0 ))
46
  {
47
  $shippingPrice += $product->getInternationalShippingCost() * $item->getQty();
48
  }
57
  {
58
  $shippingPrice += $product->getDomesticShippingCost() * $item->getQty();
59
  }
60
+ else if($product->getDomesticShippingCost()=='' && $product->getInternationalShippingCost()=='')
61
  {
62
  $shippingPrice += ($item->getQty() * $this->getConfigData('price'));
63
  }
64
+ else if($product->getInternationalShippingCost()=='' && ($product->getDomesticShippingCost() || $product->getDomesticShippingCost() == 0 ))
65
  {
66
  $shippingPrice += $product->getDomesticShippingCost() * $item->getQty();
67
  }
68
+ else if($product->getDomesticShippingCost()=='' && ($product->getInternationalShippingCost() || $product->getInternationalShippingCost() == 0 ))
69
  {
70
  $shippingPrice += $product->getInternationalShippingCost() * $item->getQty();
71
  }
94
  return array('marketplaceproductshipping'=>$this->getConfigData('name'));
95
  }
96
 
97
+ }
 
 
 
 
 
 
 
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Manthan_Multi_Seller_Marketplace</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
- <license>OSL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Manthan Marketplace will convert your Magento Store into multi seller marketplace.</summary>
10
  <description>Manthan Multi seller Marketplace will convert your Magento store into multi seller website.Multiple seller can register and sell own products in a website.Seller can add all types of products.Individual Seller shop profile page at frontend.Individual dashboard of seller.Seller can see its payment status and sales details.Customer can make reviews of sellers.Seller can generate print of invoice and packing slip.Seller can add international and domestic shipping cost per product.</description>
11
- <notes>This is first release.</notes>
12
  <authors><author><name>Manthan Soni</name><user>Manthan</user><email>sonimanthan0@gmail.com</email></author></authors>
13
- <date>2016-01-28</date>
14
- <time>20:41:03</time>
15
- <contents><target name="magecommunity"><dir name="Manthan"><dir name="Marketplace"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><file name="Grid.php" hash="16cd6668035b5bf955e3208eb944c69a"/><dir name="Renderer"><file name="Seller.php" hash="f8a62f61d4aeab8f54f118e498c54d29"/><file name="Status.php" hash="eadce8c0586f184fa0fde590d75bc20a"/></dir></dir></dir><file name="Login.php" hash="4a4498e3d6d1f7305a0876e21fde06f6"/><dir name="Order"><dir name="Edit"><file name="Form.php" hash="e815ae17e213b55b3d4a6d6277e4f913"/><file name="Info.php" hash="2ae9e743623bb849917072e05898c40b"/><dir name="Items"><dir name="Renderer"><file name="Default.php" hash="7df73c2aba7035b0b73f7043e0010e77"/></dir></dir><file name="Items.php" hash="5201a735a43c1619b3b6eaab0eabc3e9"/></dir><file name="Edit.php" hash="b4599ad07d0d30bb9b191d8541eb4de7"/><file name="Grid.php" hash="620da82768ba892e0cfa93ea34a01093"/></dir><file name="Order.php" hash="5ae6d6a610e39afe9082335dd753d61f"/><dir name="Payment"><dir name="Edit"><file name="Form.php" hash="f65eeccdcdf3111da9cd904a4a2adb4d"/></dir><file name="Edit.php" hash="19bd7b056709bc37429711596e071d9a"/><file name="Grid.php" hash="663369eff8fdb3ab717bf64053902b7a"/><dir name="Renderer"><file name="Adminamount.php" hash="b7efd2c0e6178811b6261689580b8a6c"/><file name="Seller.php" hash="1d470953110cac4e268b9d86d8d29b49"/><file name="Sellerpaidamount.php" hash="3bb18f8fd7d61bc358f507878bafed98"/></dir></dir><file name="Payment.php" hash="8bcda1200b1c71ca32b9b7d254115476"/><dir name="Rating"><dir name="Edit"><file name="Form.php" hash="2917f1d27d2bae6c1fbd63956c62ae94"/></dir><file name="Edit.php" hash="895ba8eec87a1af79345af849c81de77"/><file name="Grid.php" hash="7694d74c8d0caa9fcfd2705983cdde60"/></dir><file name="Rating.php" hash="b378d38f73938c3293bf97de36ff98fd"/><dir name="Review"><dir name="Edit"><file name="Form.php" hash="15b882dbe32df04b49eef4ae5ac181fb"/></dir><file name="Edit.php" hash="39b17eec900465eb4a3ea95a5d07958d"/><file name="Grid.php" hash="1eaf8ed4f2234099b307de02598e75d5"/><dir name="Rating"><file name="Detailed.php" hash="1fd2694845307aae59defc34c8bd9e74"/></dir><dir name="Renderer"><dir name="Product"><file name="Detail.php" hash="340a0169b73cd0834237cb8b02960bb0"/></dir><dir name="Seller"><file name="Detail.php" hash="073402752c1bcc3ed7816213f942e94c"/></dir></dir></dir><file name="Review.php" hash="4ccff2a526e529c968e58503677775fe"/><dir name="Seller"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="3de50399ffcc7e326a66a84a18dbbeb9"/><dir name="Tab"><file name="Form.php" hash="47818d7c4aa2fc71b9351ff22e48e4bf"/></dir><file name="Tabs.php" hash="e2aeb7d269193e4750689798167eb1db"/></dir><file name="Edit.php" hash="05c9791b35db53f4491f8df77097fe76"/><file name="Grid.php" hash="758762023fd25a0453718837b0d08f6a"/><dir name="Product"><file name="Grid.php" hash="a642537c904e5ee5ba1477755de44ada"/></dir></dir><file name="Account.php" hash="ccbae34c1bbf9189f77e9a76e1f03edf"/><dir name="Dashboard"><file name="Info.php" hash="0a9f750694fd0b3e9949659e37992167"/></dir></dir><dir name="System"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="b247dacc3ee5506f4827f331b19b9284"/></dir></dir></dir></dir><file name="Rating.php" hash="ddde0cf4374eff80c21dd31424fc2010"/><file name="Register.php" hash="76c7fd2948571294c33d304440ae65ae"/><file name="Review.php" hash="db577fc5c4453267cdc32fefebc42fbd"/><dir name="Sales"><dir name="Order"><dir name="Item"><dir name="Renderer"><file name="Default.php" hash="a5bf1848e95648d26cf677790d147324"/><file name="Grouped.php" hash="0e81fb944f47ba3c6400f13b8ba164ee"/></dir></dir></dir></dir><dir name="Seller"><dir name="Catalog"><dir name="Product"><file name="List.php" hash="7107bb48a70e1e10c93683a7eb736661"/></dir></dir><dir name="Profile"><file name="Review.php" hash="1853267313ff94d779d02cb609d429c8"/><file name="Toolbar.php" hash="ad00c7841f9a9b1c8cf1233662940606"/></dir><file name="Profile.php" hash="89c3b0c19c40d33b4ee8c7a5d46a2556"/></dir></dir><dir name="Controller"><file name="Router.php" hash="99f7860a41e545f3fee1a068cd644a82"/></dir><dir name="Helper"><file name="Data.php" hash="7f5f3e9850059c9cb5bb33a4cbd1734c"/></dir><dir name="Model"><dir name="Catalog"><dir name="Product"><dir name="Attribute"><file name="Status.php" hash="59bf9bdd30d21b23b3dc7c269be75a5c"/></dir></dir></dir><dir name="Mysql4"><dir name="Payment"><file name="Collection.php" hash="b63e0eae3c17a1e2176a73f3e894b683"/></dir><file name="Payment.php" hash="451e378721b51a8a780802bfb5a628b8"/><dir name="Pricecomparison"><file name="Collection.php" hash="8ec0dc581344a521351c0938ae8b08d2"/></dir><file name="Pricecomparison.php" hash="9579f1047ec3520c0c93a57eb0e79dd4"/><dir name="Rating"><file name="Collection.php" hash="11d2b712d07582a89fa02f3d3e6196bc"/></dir><file name="Rating.php" hash="757355dfe8267ab89537cce222f88f19"/><dir name="Review"><file name="Collection.php" hash="884fd3f5d90f8e3200f9d1c63d4eaa68"/></dir><file name="Review.php" hash="9c3c07ee0423e3d1e1406935b21b3e08"/><dir name="Seller"><file name="Collection.php" hash="972576b7d2d1029b2b96240ce0400be7"/></dir><file name="Seller.php" hash="9805d365588f0213c91c1ae70f2bb68f"/><dir name="Sellerrate"><file name="Collection.php" hash="b8b666adf97532eae04b8bbe392453f7"/></dir><file name="Sellerrate.php" hash="7ea738747b8be85d94254a003d8012ab"/><dir name="Vendorproduct"><file name="Collection.php" hash="194a2d7aaf3c4468433f0009ed7b06e5"/></dir><file name="Vendorproduct.php" hash="825fc9f4d39c21a4e398c1758d32085a"/></dir><file name="Observer.php" hash="7acf13e98fe2378d71b0704173bc80df"/><file name="Payment.php" hash="727dcb8be0295fdeb92886e866a6f717"/><dir name="Pdf"><file name="Invoice.php" hash="b61d7968aaf7ba49ed3f2cf25b262242"/><dir name="Shipment"><file name="Packing.php" hash="68f1fcf570ccdbe3a4cceb2c12b05b12"/></dir></dir><file name="Rating.php" hash="90a7ba052b73c950986edaaae237f993"/><file name="Review.php" hash="46a6396e106ccd970cf07d0f552fca50"/><file name="Seller.php" hash="84cf130abbdc6256162812eb6fa710f9"/><file name="Sellerrate.php" hash="632ceb143ecf26b3db976b1cd70cc627"/><dir name="System"><dir name="Config"><file name="Role.php" hash="131d3d846811f0a190b39c9541d5a95e"/></dir></dir><file name="Vendorproduct.php" hash="de2b26453ca01e878698941a944099f7"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AccountController.php" hash="954238fcce5b5c61d6bfd4961b83b980"/><dir name="Admin"><file name="IndexController.php" hash="c50136d9a452ef00068cd4bbcbce25bb"/><dir name="System"><file name="AccountController.php" hash="27e133827229e28582a9b5b5fec65a58"/></dir></dir><file name="DashboardController.php" hash="1bcb729877ab135e54c5448c2b70d1fe"/><file name="OrderController.php" hash="5529da83ba8148b3f4ce7c0c34f4ec20"/><file name="PaymentController.php" hash="daa938576a343f7aca7cd8724705077f"/><file name="RatingController.php" hash="c7483e081fde3da4620d8175c8c074de"/><file name="ReviewController.php" hash="fd952916eeeb7633bfe5bad762209c95"/></dir><file name="ReviewController.php" hash="fe2927aeaddd933bc5cf62c4aad609f2"/><file name="SellerController.php" hash="4094f75c259cb92651c678eadab97038"/></dir><dir name="etc"><file name="config.xml" hash="42b21ba97680bdbaeec5a5b0698cdd67"/><file name="system.xml" hash="2401317c7f8b846d9ea7e0ad2093deec"/></dir><dir name="sql"><dir name="marketplace_setup"><file name="mysql4-install-1.0.0.php" hash="bc3a3581e91c670094f80491f79c78ba"/></dir></dir></dir><dir name="Marketplaceproductshipping"><dir name="Helper"><file name="Data.php" hash="e8f79106f2933fbc4b9fe98be8f4f432"/></dir><dir name="Model"><dir name="Carrier"><file name="Marketplaceproductshipping.php" hash="2e555f3ce3fba5cb95313a4cf7db09ce"/></dir></dir><dir name="etc"><file name="config.xml" hash="2d938a9765fd37ecf24aec5e4bb2f2b1"/><file name="system.xml" hash="b3f215092bf0ebcf356ad2f7173283a3"/></dir><dir name="sql"><dir name="marketplaceproductshipping_setup"><file name="mysql4-install-1.0.0.php" hash="31da71b2ac86a41cfe321a69c89acf48"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="marketplace"><file name="register.phtml" hash="15e4f0bbde98c9ac9ab421dd774e0c3a"/><dir name="sales"><dir name="order"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="76bfa2fe5c1666b67bd9b2887a9f48a6"/></dir></dir></dir></dir><dir name="seller"><dir name="catalog"><dir name="product"><file name="view.phtml" hash="e0900f10e8e91f8251cff27bfad6acfb"/></dir></dir><dir name="profile"><file name="review.phtml" hash="47f549428f1662c5cd315ec562cbc6c8"/></dir><file name="profile.phtml" hash="50205d1ae6dad8be87ec6ca436e3844c"/><file name="rating.phtml" hash="7162bb9b6185a8b09f23f10d35586afa"/><file name="review.phtml" hash="f461a680ff08789ce5b568c2d1e932a8"/></dir></dir></dir><dir name="layout"><file name="marketplace.xml" hash="671333e8de34ce6080a21a7649d1d5ab"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="marketplace"><dir name="catalog"><dir name="product"><file name="edit.phtml" hash="08832349f6d48a502c99e762a1db3a06"/></dir></dir><dir name="page"><file name="header.phtml" hash="db0ca276b2bd73777297bbfcf53086a6"/></dir><dir name="rating"><file name="detailed.phtml" hash="7f5bf25fafb994e58ac2a3f75dbbd2a6"/></dir><dir name="sales"><dir name="order"><file name="form.phtml" hash="aae135cab4a543856a4f2256582e1ba5"/><dir name="view"><file name="info.phtml" hash="636814f490fd35dbdf69f1c2273eec0c"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="1f30d982602a3370f676ca17f1271dd3"/></dir></dir><file name="items.phtml" hash="2beae8ef5c1e05ac26c5f7f66fd2ed7f"/><file name="totals.phtml" hash="0b2d740f99a55cf1248c98e86f253413"/></dir></dir></dir><dir name="seller"><dir name="dashboard"><file name="info.phtml" hash="4b8097f25c6937687ab09113fea2ee01"/></dir><dir name="order"><dir name="tab"><file name="invoice.phtml" hash="3fa049af82b9719abec73f49828aad3d"/></dir></dir></dir></dir></dir><dir name="layout"><file name="marketplace.xml" hash="42393779a22fc8dd9c8114fe26141d0f"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Manthan_Marketplace.csv" hash="b119955e91ff694a0ad02018b8ab34c6"/><dir name="template"><dir name="email"><dir name="marketplace"><file name="seller_activation_email.html" hash="604386f6502f11f0cd1d806e766149ac"/><file name="seller_confirmation_email.html" hash="0bcd6b11cbb8679bd2e3e1e506ddf083"/><file name="seller_new_registration_email.html" hash="029625cc6886d6c602476fa5b1bb3edd"/></dir><dir name="sales"><file name="seller_new_order.html" hash="ce7dd59941ca6ec9e5b481280be2ebe9"/></dir></dir></dir></dir></target><target name="magemedia"><dir name="marketplace"><dir name="seller"><dir name="images"><file name="default.jpg" hash="ab63eeb237243d90f8bd18c8bea5a220"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="marketplace"><dir name="css"><dir name="images"><file name="blank_stars.png" hash="59d979f7be39455e99e205627c0bbb24"/><file name="blank_stars_copy.png" hash="15bd16d374523a80ef819fb72d9960c8"/><file name="fill_stars.png" hash="2d13b5e144a9a3dbaf0bb8ce09c6f8da"/></dir><file name="style.css" hash="19c4da08fe99a6a0602878693893c821"/></dir><dir name="js"><file name="marketplace.js" hash="9a9207a0de454edb1b381d761f20d199"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="marketplace"><dir name="css"><file name="style.css" hash="fb3919ff90bbab57287b02fc16710f0a"/></dir><dir name="images"><file name="vendor-logo.png" hash="2da029a2b50d822d57632ed6a04422f3"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Manthan_Marketplace.xml" hash="137310844b4c03e0808f24549038e2d1"/><file name="Manthan_Marketplaceproductshipping.xml" hash="44d3ee8c261003e2e50e8e5b8ad5970d"/></dir></target></contents>
16
  <compatible/>
17
- <dependencies><required><php><min>5.4.0</min><max>5.5.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Manthan_Multi_Seller_Marketplace</name>
4
+ <version>1.1.0</version>
5
  <stability>stable</stability>
6
+ <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Manthan Marketplace will convert your Magento Store into multi seller marketplace.</summary>
10
  <description>Manthan Multi seller Marketplace will convert your Magento store into multi seller website.Multiple seller can register and sell own products in a website.Seller can add all types of products.Individual Seller shop profile page at frontend.Individual dashboard of seller.Seller can see its payment status and sales details.Customer can make reviews of sellers.Seller can generate print of invoice and packing slip.Seller can add international and domestic shipping cost per product.</description>
11
+ <notes>Resolved marketplace shipping per product shipping method not display for admin product,fix PHP version error while installation</notes>
12
  <authors><author><name>Manthan Soni</name><user>Manthan</user><email>sonimanthan0@gmail.com</email></author></authors>
13
+ <date>2016-02-06</date>
14
+ <time>18:06:54</time>
15
+ <contents><target name="magecommunity"><dir name="Manthan"><dir name="Marketplace"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><file name="Grid.php" hash="16cd6668035b5bf955e3208eb944c69a"/><dir name="Renderer"><file name="Seller.php" hash="f8a62f61d4aeab8f54f118e498c54d29"/><file name="Status.php" hash="eadce8c0586f184fa0fde590d75bc20a"/></dir></dir></dir><file name="Login.php" hash="4a4498e3d6d1f7305a0876e21fde06f6"/><dir name="Order"><dir name="Edit"><file name="Form.php" hash="e815ae17e213b55b3d4a6d6277e4f913"/><file name="Info.php" hash="2ae9e743623bb849917072e05898c40b"/><dir name="Items"><dir name="Renderer"><file name="Default.php" hash="7df73c2aba7035b0b73f7043e0010e77"/></dir></dir><file name="Items.php" hash="5201a735a43c1619b3b6eaab0eabc3e9"/></dir><file name="Edit.php" hash="b4599ad07d0d30bb9b191d8541eb4de7"/><file name="Grid.php" hash="5e4e312b9241141e030fc6cd5e0cc9ec"/></dir><file name="Order.php" hash="5ae6d6a610e39afe9082335dd753d61f"/><dir name="Payment"><dir name="Edit"><file name="Form.php" hash="f65eeccdcdf3111da9cd904a4a2adb4d"/></dir><file name="Edit.php" hash="19bd7b056709bc37429711596e071d9a"/><file name="Grid.php" hash="663369eff8fdb3ab717bf64053902b7a"/><dir name="Renderer"><file name="Adminamount.php" hash="b7efd2c0e6178811b6261689580b8a6c"/><file name="Seller.php" hash="1d470953110cac4e268b9d86d8d29b49"/><file name="Sellerpaidamount.php" hash="3bb18f8fd7d61bc358f507878bafed98"/></dir></dir><file name="Payment.php" hash="8bcda1200b1c71ca32b9b7d254115476"/><dir name="Rating"><dir name="Edit"><file name="Form.php" hash="2917f1d27d2bae6c1fbd63956c62ae94"/></dir><file name="Edit.php" hash="895ba8eec87a1af79345af849c81de77"/><file name="Grid.php" hash="ab648fc1910e5015af200435a4ef2a28"/></dir><file name="Rating.php" hash="b378d38f73938c3293bf97de36ff98fd"/><dir name="Review"><dir name="Edit"><file name="Form.php" hash="15b882dbe32df04b49eef4ae5ac181fb"/></dir><file name="Edit.php" hash="39b17eec900465eb4a3ea95a5d07958d"/><file name="Grid.php" hash="79c8207a3c725ca8d2c5b03d9591ea9e"/><dir name="Rating"><file name="Detailed.php" hash="1fd2694845307aae59defc34c8bd9e74"/></dir><dir name="Renderer"><dir name="Product"><file name="Detail.php" hash="340a0169b73cd0834237cb8b02960bb0"/></dir><dir name="Seller"><file name="Detail.php" hash="073402752c1bcc3ed7816213f942e94c"/></dir></dir></dir><file name="Review.php" hash="4ccff2a526e529c968e58503677775fe"/><dir name="Seller"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="3de50399ffcc7e326a66a84a18dbbeb9"/><dir name="Tab"><file name="Form.php" hash="1bab03360e9d28a983cecacecbae84bc"/></dir><file name="Tabs.php" hash="e2aeb7d269193e4750689798167eb1db"/></dir><file name="Edit.php" hash="05c9791b35db53f4491f8df77097fe76"/><file name="Grid.php" hash="78e49b03b07549f8e8a0e19657ee2c65"/><dir name="Product"><file name="Grid.php" hash="a642537c904e5ee5ba1477755de44ada"/></dir></dir><file name="Account.php" hash="ccbae34c1bbf9189f77e9a76e1f03edf"/><dir name="Dashboard"><file name="Info.php" hash="0a9f750694fd0b3e9949659e37992167"/></dir></dir><dir name="System"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="3c1088ea608d9f8cbfea546f68ce831f"/></dir></dir></dir></dir><file name="Rating.php" hash="ddde0cf4374eff80c21dd31424fc2010"/><file name="Register.php" hash="76c7fd2948571294c33d304440ae65ae"/><file name="Review.php" hash="db577fc5c4453267cdc32fefebc42fbd"/><dir name="Sales"><dir name="Order"><dir name="Item"><dir name="Renderer"><file name="Default.php" hash="a5bf1848e95648d26cf677790d147324"/><file name="Grouped.php" hash="0e81fb944f47ba3c6400f13b8ba164ee"/></dir></dir></dir></dir><dir name="Seller"><dir name="Catalog"><dir name="Product"><file name="List.php" hash="7107bb48a70e1e10c93683a7eb736661"/></dir></dir><dir name="Profile"><file name="Review.php" hash="1853267313ff94d779d02cb609d429c8"/><file name="Toolbar.php" hash="ad00c7841f9a9b1c8cf1233662940606"/></dir><file name="Profile.php" hash="89c3b0c19c40d33b4ee8c7a5d46a2556"/></dir></dir><dir name="Controller"><file name="Router.php" hash="99f7860a41e545f3fee1a068cd644a82"/></dir><dir name="Helper"><file name="Data.php" hash="7f5f3e9850059c9cb5bb33a4cbd1734c"/></dir><dir name="Model"><dir name="Catalog"><dir name="Product"><dir name="Attribute"><file name="Status.php" hash="59bf9bdd30d21b23b3dc7c269be75a5c"/></dir></dir></dir><dir name="Mysql4"><dir name="Payment"><file name="Collection.php" hash="b63e0eae3c17a1e2176a73f3e894b683"/></dir><file name="Payment.php" hash="451e378721b51a8a780802bfb5a628b8"/><dir name="Rating"><file name="Collection.php" hash="11d2b712d07582a89fa02f3d3e6196bc"/></dir><file name="Rating.php" hash="757355dfe8267ab89537cce222f88f19"/><dir name="Review"><file name="Collection.php" hash="884fd3f5d90f8e3200f9d1c63d4eaa68"/></dir><file name="Review.php" hash="9c3c07ee0423e3d1e1406935b21b3e08"/><dir name="Seller"><file name="Collection.php" hash="972576b7d2d1029b2b96240ce0400be7"/></dir><file name="Seller.php" hash="9805d365588f0213c91c1ae70f2bb68f"/><dir name="Sellerrate"><file name="Collection.php" hash="b8b666adf97532eae04b8bbe392453f7"/></dir><file name="Sellerrate.php" hash="7ea738747b8be85d94254a003d8012ab"/><dir name="Vendorproduct"><file name="Collection.php" hash="194a2d7aaf3c4468433f0009ed7b06e5"/></dir><file name="Vendorproduct.php" hash="825fc9f4d39c21a4e398c1758d32085a"/></dir><file name="Observer.php" hash="7acf13e98fe2378d71b0704173bc80df"/><file name="Payment.php" hash="727dcb8be0295fdeb92886e866a6f717"/><dir name="Pdf"><file name="Invoice.php" hash="b61d7968aaf7ba49ed3f2cf25b262242"/><dir name="Shipment"><file name="Packing.php" hash="68f1fcf570ccdbe3a4cceb2c12b05b12"/></dir></dir><file name="Rating.php" hash="90a7ba052b73c950986edaaae237f993"/><file name="Review.php" hash="46a6396e106ccd970cf07d0f552fca50"/><file name="Seller.php" hash="84cf130abbdc6256162812eb6fa710f9"/><file name="Sellerrate.php" hash="632ceb143ecf26b3db976b1cd70cc627"/><dir name="System"><dir name="Config"><file name="Role.php" hash="131d3d846811f0a190b39c9541d5a95e"/></dir></dir><file name="Vendorproduct.php" hash="de2b26453ca01e878698941a944099f7"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AccountController.php" hash="954238fcce5b5c61d6bfd4961b83b980"/><dir name="Admin"><file name="IndexController.php" hash="c50136d9a452ef00068cd4bbcbce25bb"/><dir name="System"><file name="AccountController.php" hash="27e133827229e28582a9b5b5fec65a58"/></dir></dir><file name="DashboardController.php" hash="1bcb729877ab135e54c5448c2b70d1fe"/><file name="OrderController.php" hash="5529da83ba8148b3f4ce7c0c34f4ec20"/><file name="PaymentController.php" hash="daa938576a343f7aca7cd8724705077f"/><file name="RatingController.php" hash="c7483e081fde3da4620d8175c8c074de"/><file name="ReviewController.php" hash="fd952916eeeb7633bfe5bad762209c95"/></dir><file name="ReviewController.php" hash="fe2927aeaddd933bc5cf62c4aad609f2"/><file name="SellerController.php" hash="4094f75c259cb92651c678eadab97038"/></dir><dir name="etc"><file name="config.xml" hash="486c44df9660fcb1605260d3cc9b7012"/><file name="system.xml" hash="2401317c7f8b846d9ea7e0ad2093deec"/></dir><dir name="sql"><dir name="marketplace_setup"><file name="mysql4-install-1.0.0.php" hash="bc3a3581e91c670094f80491f79c78ba"/></dir></dir></dir><dir name="Marketplaceproductshipping"><dir name="Helper"><file name="Data.php" hash="e8f79106f2933fbc4b9fe98be8f4f432"/></dir><dir name="Model"><dir name="Carrier"><file name="Marketplaceproductshipping.php" hash="efd2e872efeb5a876b581d4a6a27e355"/></dir></dir><dir name="etc"><file name="config.xml" hash="2d938a9765fd37ecf24aec5e4bb2f2b1"/><file name="system.xml" hash="b3f215092bf0ebcf356ad2f7173283a3"/></dir><dir name="sql"><dir name="marketplaceproductshipping_setup"><file name="mysql4-install-1.0.0.php" hash="31da71b2ac86a41cfe321a69c89acf48"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Manthan_Marketplace.xml" hash="137310844b4c03e0808f24549038e2d1"/><file name="Manthan_Marketplaceproductshipping.xml" hash="44d3ee8c261003e2e50e8e5b8ad5970d"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Manthan_Marketplace.csv" hash="b119955e91ff694a0ad02018b8ab34c6"/><dir name="template"><dir name="email"><dir name="marketplace"><file name="seller_activation_email.html" hash="604386f6502f11f0cd1d806e766149ac"/><file name="seller_confirmation_email.html" hash="0bcd6b11cbb8679bd2e3e1e506ddf083"/><file name="seller_new_registration_email.html" hash="029625cc6886d6c602476fa5b1bb3edd"/></dir><dir name="sales"><file name="seller_new_order.html" hash="ce7dd59941ca6ec9e5b481280be2ebe9"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="marketplace.xml" hash="42393779a22fc8dd9c8114fe26141d0f"/></dir><dir name="template"><dir name="marketplace"><dir name="catalog"><dir name="product"><file name="edit.phtml" hash="08832349f6d48a502c99e762a1db3a06"/></dir></dir><dir name="page"><file name="header.phtml" hash="db0ca276b2bd73777297bbfcf53086a6"/></dir><dir name="rating"><file name="detailed.phtml" hash="7f5bf25fafb994e58ac2a3f75dbbd2a6"/></dir><dir name="sales"><dir name="order"><file name="form.phtml" hash="aae135cab4a543856a4f2256582e1ba5"/><dir name="view"><file name="info.phtml" hash="636814f490fd35dbdf69f1c2273eec0c"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="1f30d982602a3370f676ca17f1271dd3"/></dir></dir><file name="items.phtml" hash="2beae8ef5c1e05ac26c5f7f66fd2ed7f"/><file name="totals.phtml" hash="0b2d740f99a55cf1248c98e86f253413"/></dir></dir></dir><dir name="seller"><dir name="dashboard"><file name="info.phtml" hash="4b8097f25c6937687ab09113fea2ee01"/></dir><dir name="order"><dir name="tab"><file name="invoice.phtml" hash="3fa049af82b9719abec73f49828aad3d"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="marketplace.xml" hash="671333e8de34ce6080a21a7649d1d5ab"/></dir><dir name="template"><dir name="marketplace"><file name="register.phtml" hash="15e4f0bbde98c9ac9ab421dd774e0c3a"/><dir name="sales"><dir name="order"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="76bfa2fe5c1666b67bd9b2887a9f48a6"/></dir></dir></dir></dir><dir name="seller"><dir name="catalog"><dir name="product"><file name="view.phtml" hash="e0900f10e8e91f8251cff27bfad6acfb"/></dir></dir><dir name="profile"><file name="review.phtml" hash="47f549428f1662c5cd315ec562cbc6c8"/></dir><file name="profile.phtml" hash="50205d1ae6dad8be87ec6ca436e3844c"/><file name="rating.phtml" hash="7162bb9b6185a8b09f23f10d35586afa"/><file name="review.phtml" hash="f461a680ff08789ce5b568c2d1e932a8"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="marketplace"><dir name="css"><file name="style.css" hash="fb3919ff90bbab57287b02fc16710f0a"/></dir><dir name="images"><file name="vendor-logo.png" hash="2da029a2b50d822d57632ed6a04422f3"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="marketplace"><dir name="css"><dir name="images"><file name="blank_stars.png" hash="59d979f7be39455e99e205627c0bbb24"/><file name="blank_stars_copy.png" hash="15bd16d374523a80ef819fb72d9960c8"/><file name="fill_stars.png" hash="2d13b5e144a9a3dbaf0bb8ce09c6f8da"/></dir><file name="style.css" hash="19c4da08fe99a6a0602878693893c821"/></dir><dir name="js"><file name="marketplace.js" hash="9a9207a0de454edb1b381d761f20d199"/></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="marketplace"><dir name="seller"><dir name="images"><file name="default.jpg" hash="ab63eeb237243d90f8bd18c8bea5a220"/></dir></dir></dir></target></contents>
16
  <compatible/>
17
+ <dependencies><required><php><min>5.4.0</min><max>5.6.0</max></php><package><name/><channel>connect.magentocommerce.com/core</channel><min/><max/></package></required></dependencies>
18
  </package>