Manthan_Multi_Seller_Marketplace - Version 1.1.1

Version Notes

Fix bugs.

Download this release

Release Info

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


Code changes from version 1.1.0 to 1.1.1

app/code/community/Manthan/Marketplace/Block/Adminhtml/Seller/Account/Edit/Tab/Form.php CHANGED
@@ -85,7 +85,8 @@ class Manthan_Marketplace_Block_Adminhtml_Seller_Account_Edit_Tab_Form extends M
85
  'value' => $sellerModel->getShopName(),
86
  )
87
  );
88
- if($userModel->getData())
 
89
  {
90
  $fieldset->addField('link', 'link', array(
91
  'label' => Mage::helper('adminhtml')->__('Link'),
85
  'value' => $sellerModel->getShopName(),
86
  )
87
  );
88
+
89
+ if($userModel->getId())
90
  {
91
  $fieldset->addField('link', 'link', array(
92
  'label' => Mage::helper('adminhtml')->__('Link'),
app/code/community/Manthan/Marketplace/Block/Adminhtml/Seller/Dashboard/Info.php CHANGED
@@ -27,6 +27,8 @@ class Manthan_Marketplace_Block_Adminhtml_Seller_Dashboard_Info extends Mage_Adm
27
  ->columns('SUM(admin_amount) as pending_amount')
28
  ->group('seller_id');
29
  $sellerArray = $collection->getData();
 
 
30
  return round($sellerArray[0]['pending_amount'],2);
31
  }
32
  return 0;
@@ -45,4 +47,4 @@ class Manthan_Marketplace_Block_Adminhtml_Seller_Dashboard_Info extends Mage_Adm
45
  return round($monthSale,2);
46
  }
47
  }
48
- ?>
27
  ->columns('SUM(admin_amount) as pending_amount')
28
  ->group('seller_id');
29
  $sellerArray = $collection->getData();
30
+ if(empty($sellerArray))
31
+ return round(0,2);
32
  return round($sellerArray[0]['pending_amount'],2);
33
  }
34
  return 0;
47
  return round($monthSale,2);
48
  }
49
  }
50
+ ?>
app/code/community/Manthan/Marketplace/Model/Observer.php CHANGED
@@ -64,9 +64,12 @@ class Manthan_Marketplace_Model_Observer {
64
 
65
  if($marketplacePerProductShippingMethod == 'marketplaceproductshipping_marketplaceproductshipping')
66
  {
67
- $shippingPrice = $product->getInternationalShippingCost() * $quoteItem->getQty();
68
- if($country == $this->getCurrentShippingObject()->getCountryId())
69
- $shippingPrice = $product->getDomesticShippingCost() * $quoteItem->getQty();
 
 
 
70
  $orderItem->setSellerPerProductShipping($shippingPrice);
71
  }
72
 
@@ -225,11 +228,21 @@ class Manthan_Marketplace_Model_Observer {
225
  $sellerId = $sellerCollection->getFirstItem()->getId();
226
  $orderItemsArray[$seller->getUserId()]['order_id'] = $orderIncrementId;
227
  $orderItemsArray[$seller->getUserId()]['seller_id'] = $sellerId;
228
-
 
 
 
 
 
 
 
 
229
  $orderItemsArray[$seller->getUserId()]['seller_order_total'] += $sellerAmount;
230
  if($order->getShippingMethod() == 'marketplaceproductshipping_marketplaceproductshipping')
231
  { $shippingPrice = Mage::getModel('marketplace/seller')->getSellerShippingPrice($order,$_item->getSellerId());
232
  $orderItemsArray[$seller->getUserId()]['seller_order_total'] +=$shippingPrice;
 
 
233
  }
234
  }
235
  }
@@ -245,7 +258,13 @@ class Manthan_Marketplace_Model_Observer {
245
  $seller_order = '<table cellspacing="0" cellpadding="0" border="0" width="700" style="border: 1px solid #EAEAEA;">';
246
  $seller_order .= $head;
247
  $seller_order .= $value['order_items'];
248
- $seller_order .= $value['seller_order_total'];
 
 
 
 
 
 
249
  $seller_order .= '</table>';
250
  $vars['seller_order_items'] = $seller_order;
251
  $vars['seller_name'] = $value['seller_name'];
64
 
65
  if($marketplacePerProductShippingMethod == 'marketplaceproductshipping_marketplaceproductshipping')
66
  {
67
+ $shippingPrice = Mage::getStoreConfig('carriers/marketplaceproductshipping/price') * $quoteItem->getQty();
68
+ if($country == $this->getCurrentShippingObject()->getCountryId() && $product->getDomesticShippingCost()){
69
+ $shippingPrice = $product->getDomesticShippingCost() * $quoteItem->getQty();
70
+ }else if($country != $this->getCurrentShippingObject()->getCountryId() && $product->getInternationalShippingCost()){
71
+ $shippingPrice = $product->getInternationalShippingCost() * $quoteItem->getQty();
72
+ }
73
  $orderItem->setSellerPerProductShipping($shippingPrice);
74
  }
75
 
228
  $sellerId = $sellerCollection->getFirstItem()->getId();
229
  $orderItemsArray[$seller->getUserId()]['order_id'] = $orderIncrementId;
230
  $orderItemsArray[$seller->getUserId()]['seller_id'] = $sellerId;
231
+ if(!isset($orderItemsArray[$seller->getUserId()]['order_total']))
232
+ {
233
+ $orderItemsArray[$seller->getUserId()]['order_total'] = 0;
234
+ }
235
+ if(!isset($orderItemsArray[$seller->getUserId()]['marketplace_shipping']))
236
+ {
237
+ $orderItemsArray[$seller->getUserId()]['marketplace_shipping'] = 0;
238
+ }
239
+ $orderItemsArray[$seller->getUserId()]['order_total'] += $_item->getRowTotalInclTax();
240
  $orderItemsArray[$seller->getUserId()]['seller_order_total'] += $sellerAmount;
241
  if($order->getShippingMethod() == 'marketplaceproductshipping_marketplaceproductshipping')
242
  { $shippingPrice = Mage::getModel('marketplace/seller')->getSellerShippingPrice($order,$_item->getSellerId());
243
  $orderItemsArray[$seller->getUserId()]['seller_order_total'] +=$shippingPrice;
244
+ $orderItemsArray[$seller->getUserId()]['order_total'] +=$shippingPrice;
245
+ $orderItemsArray[$seller->getUserId()]['marketplace_shipping'] +=$shippingPrice;
246
  }
247
  }
248
  }
258
  $seller_order = '<table cellspacing="0" cellpadding="0" border="0" width="700" style="border: 1px solid #EAEAEA;">';
259
  $seller_order .= $head;
260
  $seller_order .= $value['order_items'];
261
+ $seller_order .= '<tfoot>';
262
+ if($order->getShippingMethod() == 'marketplaceproductshipping_marketplaceproductshipping')
263
+ {
264
+ $seller_order .= '<tr><td colspan="3"></td><td align="left" style="font-size: 12px; padding: 3px 9px;">Shipping and Handling charges: </td><td align="left" valign="top" style="font-size: 11px; padding: 3px 9px; border-bottom: 1px dotted #CCCCCC;">'.$order->formatPrice($value['marketplace_shipping']).'</td></tr>';
265
+ }
266
+ $seller_order .= '<tr><td colspan="3"></td><td align="left" style="font-size: 12px; padding: 3px 9px;">Grand Total: </td><td align="left" valign="top" style="font-size: 11px; padding: 3px 9px; border-bottom: 1px dotted #CCCCCC;">'.$order->formatPrice($value['order_total']).'</td></tr>';
267
+ $seller_order .="</tr></tfoot>";
268
  $seller_order .= '</table>';
269
  $vars['seller_order_items'] = $seller_order;
270
  $vars['seller_name'] = $value['seller_name'];
app/code/community/Manthan/Marketplace/Model/Pdf/Invoice.php CHANGED
@@ -311,7 +311,7 @@ class Manthan_Marketplace_Model_Pdf_Invoice extends Mage_Core_Model_Abstract {
311
 
312
  protected function _getProductOptions($page,$options,$y,$font)
313
  {
314
- if($options['attributes_info']){
315
  $page->setFont($font, 8);
316
  foreach($options['attributes_info'] as $attribute)
317
  $page->drawText( $attribute['label'] . ":" . $attribute['value'] , 35, $y-15, 'UTF-8');
311
 
312
  protected function _getProductOptions($page,$options,$y,$font)
313
  {
314
+ if(isset($options['attributes_info'])){
315
  $page->setFont($font, 8);
316
  foreach($options['attributes_info'] as $attribute)
317
  $page->drawText( $attribute['label'] . ":" . $attribute['value'] , 35, $y-15, 'UTF-8');
app/code/community/Manthan/Marketplace/Model/Pdf/Shipment/Packing.php CHANGED
@@ -211,8 +211,6 @@ class Manthan_Marketplace_Model_Pdf_Shipment_Packing extends Mage_Core_Model_Abs
211
  $topMargin = 0;
212
  $methodStartY = $this->y;
213
  $this->y -= 15;
214
-
215
-
216
  if (!$order->getIsVirtual()) {
217
  /* Shipping Address */
218
  $shippingAddress = $this->_formatAddress($order->getShippingAddress()->format('pdf'));
@@ -295,7 +293,7 @@ class Manthan_Marketplace_Model_Pdf_Shipment_Packing extends Mage_Core_Model_Abs
295
  }
296
  protected function _getProductOptions($page,$options,$y,$font)
297
  {
298
- if($options['attributes_info']){
299
  $page->setFont($font, 8);
300
  foreach($options['attributes_info'] as $attribute)
301
  $page->drawText( $attribute['label'] . ":" . $attribute['value'] , 35, $y-15, 'UTF-8');
211
  $topMargin = 0;
212
  $methodStartY = $this->y;
213
  $this->y -= 15;
 
 
214
  if (!$order->getIsVirtual()) {
215
  /* Shipping Address */
216
  $shippingAddress = $this->_formatAddress($order->getShippingAddress()->format('pdf'));
293
  }
294
  protected function _getProductOptions($page,$options,$y,$font)
295
  {
296
+ if(isset($options['attributes_info'])){
297
  $page->setFont($font, 8);
298
  foreach($options['attributes_info'] as $attribute)
299
  $page->drawText( $attribute['label'] . ":" . $attribute['value'] , 35, $y-15, 'UTF-8');
app/code/community/Manthan/Marketplace/controllers/Adminhtml/AccountController.php CHANGED
@@ -18,7 +18,7 @@ class Manthan_Marketplace_Adminhtml_AccountController extends Mage_Adminhtml_Con
18
  Mage::app()->getLayout()->createBlock('marketplace/adminhtml_seller_account_product_grid')->toHtml()
19
  );
20
  }
21
- public function editAction()
22
  {
23
  $id = $this->getRequest()->getParam('id');
24
  $sellerObject = Mage::getModel('marketplace/seller')->load($id);
18
  Mage::app()->getLayout()->createBlock('marketplace/adminhtml_seller_account_product_grid')->toHtml()
19
  );
20
  }
21
+ public function editAction()
22
  {
23
  $id = $this->getRequest()->getParam('id');
24
  $sellerObject = Mage::getModel('marketplace/seller')->load($id);
app/code/community/Manthan/Marketplace/controllers/SellerController.php CHANGED
@@ -7,8 +7,31 @@ class Manthan_Marketplace_SellerController extends Mage_Core_Controller_Front_Ac
7
  $this->getLayout()->getBlock('head')->setTitle($this->__('Seller Registration'));
8
  $this->renderLayout();
9
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  public function saveAction()
11
- {
12
  $data = $this->getRequest()->getPost();
13
  $seller = Mage::getModel('marketplace/seller');
14
  $userModel = Mage::getModel('admin/user');
7
  $this->getLayout()->getBlock('head')->setTitle($this->__('Seller Registration'));
8
  $this->renderLayout();
9
  }
10
+ public function categoryAction()
11
+ {
12
+
13
+ // Usually, you can get category tree from category helper
14
+ $helper = Mage::helper('catalog/category');
15
+ $nodes = $helper->getStoreCategories();
16
+ // return Varien_Data_Tree_Node_Collection
17
+ // via Mage_Catalog_Model_Resource_Category
18
+ // However, this get method return active category only.
19
+ // Most of the samples are for collection of the category.
20
+ // This is for a tree node not a normal collection.
21
+ // We can get all category tree using the code below:
22
+ $parent = Mage::app()->getStore()->getRootCategoryId();
23
+ $tree = Mage::getResourceModel('catalog/category_tree');
24
+ $nodes = $tree->loadNode($parent)
25
+ ->loadChildren($recursionLevel)
26
+ ->getChildren();
27
+ $tree->addCollectionData(null, false, $parent, true, false);
28
+ // Now, you can use $nodes as category tree
29
+ foreach($nodes as $category){
30
+ echo $category->getName()."<br>";
31
+ }
32
+ }
33
  public function saveAction()
34
+ {
35
  $data = $this->getRequest()->getPost();
36
  $seller = Mage::getModel('marketplace/seller');
37
  $userModel = Mage::getModel('admin/user');
app/code/community/Manthan/Marketplace/etc/config.xml CHANGED
@@ -1,7 +1,7 @@
1
  <config>
2
  <modules>
3
  <Manthan_Marketplace>
4
- <version>1.0.1</version>
5
  </Manthan_Marketplace>
6
  </modules>
7
  <global>
@@ -200,7 +200,7 @@
200
  </adminhtml>
201
  </routers>
202
  </admin>
203
- <adminhtml>
204
  <layout>
205
  <updates>
206
  <marketplace>
1
  <config>
2
  <modules>
3
  <Manthan_Marketplace>
4
+ <version>1.1.1</version>
5
  </Manthan_Marketplace>
6
  </modules>
7
  <global>
200
  </adminhtml>
201
  </routers>
202
  </admin>
203
+ <adminhtml>
204
  <layout>
205
  <updates>
206
  <marketplace>
app/code/community/Manthan/Marketplace/sql/marketplace_setup/mysql4-install-1.0.0.php CHANGED
@@ -232,14 +232,7 @@ $installer->getConnection()
232
  'nullable' => false,
233
  'default' => 0,
234
  'comment' => 'Commission of Order Item by Admin'
235
- ));
236
- /*$installer->getConnection()
237
- ->addColumn($installer->getTable('sales/order_item'),'seller_payment_status',array(
238
- 'type' => Varien_Db_Ddl_Table::TYPE_INTEGER,
239
- 'nullable' => false,
240
- 'default' => 0,
241
- 'comment' => 'Seller Payment Status'
242
- ));*/
243
  $tableName = $installer->getTable('marketplace/payment');
244
  if ($installer->getConnection()->isTableExists($tableName) != true)
245
  {
232
  'nullable' => false,
233
  'default' => 0,
234
  'comment' => 'Commission of Order Item by Admin'
235
+ ));
 
 
 
 
 
 
 
236
  $tableName = $installer->getTable('marketplace/payment');
237
  if ($installer->getConnection()->isTableExists($tableName) != true)
238
  {
app/design/adminhtml/default/default/template/marketplace/catalog/product/edit.phtml CHANGED
@@ -1,4 +1,3 @@
1
-
2
  <?php
3
  /**
4
  * Template for Mage_Adminhtml_Block_Catalog_Product_Edit
@@ -28,13 +27,13 @@
28
  <?php $seller = Mage::getModel('marketplace/seller')->isSeller(); ?>
29
  <?php $type = Mage::app()->getRequest()->getParam('type'); ?>
30
  <?php $product_state = Mage::app()->getRequest()->getActionName(); ?>
31
- <?php $product_status = intval(Mage::getStoreConfig('marketplace/seller/product_status')) - 1; ?>
 
32
  <?php if($seller) :?>
33
  if($('product_status') != null)
34
- {
35
  <?php if( $product_state == 'new'): ?>
36
- var options = $$('select#product_status option');
37
- options[<?php echo $product_status ; ?>].selected = true;
38
  <?php endif; ?>
39
  $('product_status').up().up().hide();
40
  }
@@ -120,4 +119,4 @@ Validation.addAllThese([
120
  return (v != "no-attributes");
121
  }]]);
122
  //]]>
123
- </script>
 
1
  <?php
2
  /**
3
  * Template for Mage_Adminhtml_Block_Catalog_Product_Edit
27
  <?php $seller = Mage::getModel('marketplace/seller')->isSeller(); ?>
28
  <?php $type = Mage::app()->getRequest()->getParam('type'); ?>
29
  <?php $product_state = Mage::app()->getRequest()->getActionName(); ?>
30
+ <?php $product_status = intval(Mage::getStoreConfig('marketplace/seller/product_status')); ?>
31
+
32
  <?php if($seller) :?>
33
  if($('product_status') != null)
34
+ {
35
  <?php if( $product_state == 'new'): ?>
36
+ document.getElementById("product_status").value= <?php echo $product_status ?>;
 
37
  <?php endif; ?>
38
  $('product_status').up().up().hide();
39
  }
119
  return (v != "no-attributes");
120
  }]]);
121
  //]]>
122
+ </script>
package.xml CHANGED
@@ -1,18 +1,18 @@
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>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Manthan_Multi_Seller_Marketplace</name>
4
+ <version>1.1.1</version>
5
  <stability>stable</stability>
6
+ <license uri="http://opensource.org/licenses/osl-3.0.php">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>Fix bugs.</notes>
12
  <authors><author><name>Manthan Soni</name><user>Manthan</user><email>sonimanthan0@gmail.com</email></author></authors>
13
+ <date>2016-02-12</date>
14
+ <time>14:15:12</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="d06a76fcca6989b3cc95d45aca71e4d8"/></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="bc61d9222f9115a3360cc726860c36ce"/></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="eccffec1555b94838e61f1a28cbe45af"/><file name="Payment.php" hash="727dcb8be0295fdeb92886e866a6f717"/><dir name="Pdf"><file name="Invoice.php" hash="44bd66db18b57dc2ec9c758da299fee5"/><dir name="Shipment"><file name="Packing.php" hash="923fa3e94fd0e8640a7fbad81842c9d5"/></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="e4e3e2d325862587a3c23dfbcdd52458"/><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="e6cdf8cb9d1ba491a7419adbbddd3f25"/></dir><dir name="etc"><file name="config.xml" hash="0041ebd2311171fa120451d5e4a9d642"/><file name="system.xml" hash="2401317c7f8b846d9ea7e0ad2093deec"/></dir><dir name="sql"><dir name="marketplace_setup"><file name="mysql4-install-1.0.0.php" hash="628905272cbab742d8e905f9ec3c2488"/></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="183963b7b9e6dc3411cf24685cef843b"/></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></required></dependencies>
18
  </package>