Version Notes
Includes the following reports:
- Worstsellers
- Bestsellers Categories
- Worstsellers Categories
- Signed Up Never Order
- Shopped Once And Never Again
- Lifetime Sales
- Wishlist
- Products With No Upsells
Download this release
Release Info
| Developer | Digital Pianism |
| Extension | DigitalPianism_CustomReports |
| Version | 0.0.13 |
| Comparing to | |
| See all releases | |
Code changes from version 0.0.12 to 0.0.13
- app/code/community/DigitalPianism/CustomReports/Block/Noupsells.php +0 -1
- app/code/community/DigitalPianism/CustomReports/Block/Noupsells/Grid.php +1 -1
- app/code/community/DigitalPianism/CustomReports/Block/Signedupnoorder/Grid.php +1 -1
- app/code/community/DigitalPianism/CustomReports/etc/config.xml +1 -1
- package.xml +3 -3
app/code/community/DigitalPianism/CustomReports/Block/Noupsells.php
CHANGED
|
@@ -6,7 +6,6 @@ class DigitalPianism_CustomReports_Block_Noupsells extends DigitalPianism_Custom
|
|
| 6 |
parent::__construct();
|
| 7 |
$this->setTemplate('digitalpianism/customreports/grid.phtml');
|
| 8 |
$this->setTitle('Custom Products With No Upsells Report');
|
| 9 |
-
$this->setSideNote('N.B.: the grid displays only configurable products. You can use the visibility and status filter to only get the products which are available on the store.');
|
| 10 |
}
|
| 11 |
|
| 12 |
public function _beforeToHtml()
|
| 6 |
parent::__construct();
|
| 7 |
$this->setTemplate('digitalpianism/customreports/grid.phtml');
|
| 8 |
$this->setTitle('Custom Products With No Upsells Report');
|
|
|
|
| 9 |
}
|
| 10 |
|
| 11 |
public function _beforeToHtml()
|
app/code/community/DigitalPianism/CustomReports/Block/Noupsells/Grid.php
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
<?php
|
| 2 |
public function __construct()
|
| 3 |
{
|
| 4 |
parent::__construct();
|
| 5 |
$this->setId('noupsellsReportGrid');
|
| 6 |
$this->setDefaultSort('entity_id');
|
| 7 |
$this->setDefaultDir('desc');
|
| 8 |
}
|
| 9 |
{
|
| 10 |
foreach ($upsellsItemsCollection->getItems() as $item)
|
| 11 |
{
|
| 12 |
$product_with_upsell_id = $item->getProductId();
|
| 13 |
}
|
| 14 |
return $filterArray;
|
| 15 |
}
|
| 16 |
protected function _prepareCollection()
|
| 17 |
{
|
| 18 |
$collection = Mage::getResourceModel('catalog/product_collection')
|
| 19 |
$this->setCollection($collection);
|
| 20 |
parent::_prepareCollection();
|
| 21 |
return $this;
|
| 22 |
}
|
| 23 |
protected function _prepareColumns()
|
| 24 |
{
|
| 25 |
$this->addColumn('entity_id', array(
|
| 26 |
'header' =>Mage::helper('reports')->__('Product ID'),
|
| 27 |
'width' =>'50px',
|
| 28 |
'index' =>'entity_id'
|
| 29 |
));
|
| 30 |
$this->addColumn('name', array(
|
| 31 |
'header' =>Mage::helper('reports')->__('Product Name'),
|
| 32 |
'index' =>'name'
|
| 33 |
));
|
| 34 |
'header' =>Mage::helper('reports')->__('Sku'),
|
| 35 |
'index' =>'sku'
|
| 36 |
));
|
| 37 |
array(
|
| 38 |
'header'=> Mage::helper('catalog')->__('Visibility'),
|
| 39 |
'width' => '70px',
|
| 40 |
'index' => 'visibility',
|
| 41 |
'type' => 'options',
|
| 42 |
'options' => Mage::getModel('catalog/product_visibility')->getOptionArray(),
|
| 43 |
));
|
| 44 |
$this->addColumn('status',
|
| 45 |
array(
|
| 46 |
'header'=> Mage::helper('catalog')->__('Status'),
|
| 47 |
'width' => '70px',
|
| 48 |
'index' => 'status',
|
| 49 |
'type' => 'options',
|
| 50 |
'options' => Mage::getSingleton('catalog/product_status')->getOptionArray(),
|
| 51 |
));
|
| 52 |
array(
|
| 53 |
'header' => Mage::helper('reports')->__('Action'),
|
| 54 |
'width' => '100',
|
| 55 |
'type' => 'action',
|
| 56 |
'getter' => 'getId',
|
| 57 |
'actions' => array(
|
| 58 |
array(
|
| 59 |
'caption' => Mage::helper('reports')->__('Edit Product'),
|
| 60 |
'url' => array('base'=> 'adminhtml/catalog_product/edit'),
|
| 61 |
'field' => 'id'
|
| 62 |
)
|
| 63 |
),
|
| 64 |
'filter' => false,
|
| 65 |
'sortable' => false,
|
| 66 |
'index' => 'stores',
|
| 67 |
'is_system' => true,
|
| 68 |
));
|
| 69 |
$this->addExportType('*/*/exportNoupsellsCsv', Mage::helper('reports')->__('CSV'));
|
| 70 |
$this->addExportType('*/*/exportNoupsellsExcel', Mage::helper('reports')->__('Excel'));
|
| 71 |
return parent::_prepareColumns();
|
| 72 |
}
|
|
|
|
| 73 |
public function __construct()
|
| 74 |
{
|
| 75 |
parent::__construct();
|
| 76 |
$this->setId('noupsellsReportGrid');
|
| 77 |
$this->setDefaultSort('entity_id');
|
| 78 |
$this->setDefaultDir('desc');
|
| 79 |
}
|
| 80 |
{
|
| 81 |
foreach ($upsellsItemsCollection->getItems() as $item)
|
| 82 |
{
|
| 83 |
$product_with_upsell_id = $item->getProductId();
|
| 84 |
}
|
| 85 |
return $filterArray;
|
| 86 |
}
|
| 87 |
protected function _prepareCollection()
|
| 88 |
{
|
| 89 |
$collection = Mage::getResourceModel('catalog/product_collection')
|
| 90 |
$this->setCollection($collection);
|
| 91 |
parent::_prepareCollection();
|
| 92 |
return $this;
|
| 93 |
}
|
| 94 |
protected function _prepareColumns()
|
| 95 |
{
|
| 96 |
$this->addColumn('entity_id', array(
|
| 97 |
'header' =>Mage::helper('reports')->__('Product ID'),
|
| 98 |
'width' =>'50px',
|
| 99 |
'index' =>'entity_id'
|
| 100 |
));
|
| 101 |
$this->addColumn('name', array(
|
| 102 |
'header' =>Mage::helper('reports')->__('Product Name'),
|
| 103 |
'index' =>'name'
|
| 104 |
));
|
| 105 |
'header' =>Mage::helper('reports')->__('Sku'),
|
| 106 |
'index' =>'sku'
|
| 107 |
));
|
| 108 |
array(
|
| 109 |
'header'=> Mage::helper('catalog')->__('Visibility'),
|
| 110 |
'width' => '70px',
|
| 111 |
'index' => 'visibility',
|
| 112 |
'type' => 'options',
|
| 113 |
'options' => Mage::getModel('catalog/product_visibility')->getOptionArray(),
|
| 114 |
));
|
| 115 |
$this->addColumn('status',
|
| 116 |
array(
|
| 117 |
'header'=> Mage::helper('catalog')->__('Status'),
|
| 118 |
'width' => '70px',
|
| 119 |
'index' => 'status',
|
| 120 |
'type' => 'options',
|
| 121 |
'options' => Mage::getSingleton('catalog/product_status')->getOptionArray(),
|
| 122 |
));
|
| 123 |
array(
|
| 124 |
'header' => Mage::helper('reports')->__('Action'),
|
| 125 |
'width' => '100',
|
| 126 |
'type' => 'action',
|
| 127 |
'getter' => 'getId',
|
| 128 |
'actions' => array(
|
| 129 |
array(
|
| 130 |
'caption' => Mage::helper('reports')->__('Edit Product'),
|
| 131 |
'url' => array('base'=> 'adminhtml/catalog_product/edit'),
|
| 132 |
'field' => 'id'
|
| 133 |
)
|
| 134 |
),
|
| 135 |
'filter' => false,
|
| 136 |
'sortable' => false,
|
| 137 |
'index' => 'stores',
|
| 138 |
'is_system' => true,
|
| 139 |
));
|
| 140 |
$this->addExportType('*/*/exportNoupsellsCsv', Mage::helper('reports')->__('CSV'));
|
| 141 |
$this->addExportType('*/*/exportNoupsellsExcel', Mage::helper('reports')->__('Excel'));
|
| 142 |
return parent::_prepareColumns();
|
| 143 |
}
|
|
|
|
| 1 |
public function __construct()
|
| 2 |
{
|
| 3 |
parent::__construct();
|
| 4 |
$this->setId('noupsellsReportGrid');
|
| 5 |
$this->setDefaultSort('entity_id');
|
| 6 |
$this->setDefaultDir('desc');
|
| 7 |
}
|
| 8 |
{
|
| 9 |
foreach ($upsellsItemsCollection->getItems() as $item)
|
| 10 |
{
|
| 11 |
$product_with_upsell_id = $item->getProductId();
|
| 12 |
}
|
| 13 |
return $filterArray;
|
| 14 |
}
|
| 15 |
protected function _prepareCollection()
|
| 16 |
{
|
| 17 |
$collection = Mage::getResourceModel('catalog/product_collection')
|
| 18 |
$this->setCollection($collection);
|
| 19 |
parent::_prepareCollection();
|
| 20 |
return $this;
|
| 21 |
}
|
| 22 |
protected function _prepareColumns()
|
| 23 |
{
|
| 24 |
$this->addColumn('entity_id', array(
|
| 25 |
'header' =>Mage::helper('reports')->__('Product ID'),
|
| 26 |
'width' =>'50px',
|
| 27 |
'index' =>'entity_id'
|
| 28 |
));
|
| 29 |
$this->addColumn('name', array(
|
| 30 |
'header' =>Mage::helper('reports')->__('Product Name'),
|
| 31 |
'index' =>'name'
|
| 32 |
));
|
| 33 |
'header' =>Mage::helper('reports')->__('Sku'),
|
| 34 |
'index' =>'sku'
|
| 35 |
));
|
| 36 |
array(
|
| 37 |
'header'=> Mage::helper('catalog')->__('Visibility'),
|
| 38 |
'width' => '70px',
|
| 39 |
'index' => 'visibility',
|
| 40 |
'type' => 'options',
|
| 41 |
'options' => Mage::getModel('catalog/product_visibility')->getOptionArray(),
|
| 42 |
));
|
| 43 |
$this->addColumn('status',
|
| 44 |
array(
|
| 45 |
'header'=> Mage::helper('catalog')->__('Status'),
|
| 46 |
'width' => '70px',
|
| 47 |
'index' => 'status',
|
| 48 |
'type' => 'options',
|
| 49 |
'options' => Mage::getSingleton('catalog/product_status')->getOptionArray(),
|
| 50 |
));
|
| 51 |
array(
|
| 52 |
'header' => Mage::helper('reports')->__('Action'),
|
| 53 |
'width' => '100',
|
| 54 |
'type' => 'action',
|
| 55 |
'getter' => 'getId',
|
| 56 |
'actions' => array(
|
| 57 |
array(
|
| 58 |
'caption' => Mage::helper('reports')->__('Edit Product'),
|
| 59 |
'url' => array('base'=> 'adminhtml/catalog_product/edit'),
|
| 60 |
'field' => 'id'
|
| 61 |
)
|
| 62 |
),
|
| 63 |
'filter' => false,
|
| 64 |
'sortable' => false,
|
| 65 |
'index' => 'stores',
|
| 66 |
'is_system' => true,
|
| 67 |
));
|
| 68 |
$this->addExportType('*/*/exportNoupsellsCsv', Mage::helper('reports')->__('CSV'));
|
| 69 |
$this->addExportType('*/*/exportNoupsellsExcel', Mage::helper('reports')->__('Excel'));
|
| 70 |
return parent::_prepareColumns();
|
| 71 |
}
|
| 72 |
+
<?php
|
| 73 |
public function __construct()
|
| 74 |
{
|
| 75 |
parent::__construct();
|
| 76 |
$this->setId('noupsellsReportGrid');
|
| 77 |
$this->setDefaultSort('entity_id');
|
| 78 |
$this->setDefaultDir('desc');
|
| 79 |
}
|
| 80 |
{
|
| 81 |
foreach ($upsellsItemsCollection->getItems() as $item)
|
| 82 |
{
|
| 83 |
$product_with_upsell_id = $item->getProductId();
|
| 84 |
}
|
| 85 |
return $filterArray;
|
| 86 |
}
|
| 87 |
protected function _prepareCollection()
|
| 88 |
{
|
| 89 |
$collection = Mage::getResourceModel('catalog/product_collection')
|
| 90 |
$this->setCollection($collection);
|
| 91 |
parent::_prepareCollection();
|
| 92 |
return $this;
|
| 93 |
}
|
| 94 |
protected function _prepareColumns()
|
| 95 |
{
|
| 96 |
$this->addColumn('entity_id', array(
|
| 97 |
'header' =>Mage::helper('reports')->__('Product ID'),
|
| 98 |
'width' =>'50px',
|
| 99 |
'index' =>'entity_id'
|
| 100 |
));
|
| 101 |
$this->addColumn('name', array(
|
| 102 |
'header' =>Mage::helper('reports')->__('Product Name'),
|
| 103 |
'index' =>'name'
|
| 104 |
));
|
| 105 |
'header' =>Mage::helper('reports')->__('Sku'),
|
| 106 |
'index' =>'sku'
|
| 107 |
));
|
| 108 |
array(
|
| 109 |
'header'=> Mage::helper('catalog')->__('Visibility'),
|
| 110 |
'width' => '70px',
|
| 111 |
'index' => 'visibility',
|
| 112 |
'type' => 'options',
|
| 113 |
'options' => Mage::getModel('catalog/product_visibility')->getOptionArray(),
|
| 114 |
));
|
| 115 |
$this->addColumn('status',
|
| 116 |
array(
|
| 117 |
'header'=> Mage::helper('catalog')->__('Status'),
|
| 118 |
'width' => '70px',
|
| 119 |
'index' => 'status',
|
| 120 |
'type' => 'options',
|
| 121 |
'options' => Mage::getSingleton('catalog/product_status')->getOptionArray(),
|
| 122 |
));
|
| 123 |
array(
|
| 124 |
'header' => Mage::helper('reports')->__('Action'),
|
| 125 |
'width' => '100',
|
| 126 |
'type' => 'action',
|
| 127 |
'getter' => 'getId',
|
| 128 |
'actions' => array(
|
| 129 |
array(
|
| 130 |
'caption' => Mage::helper('reports')->__('Edit Product'),
|
| 131 |
'url' => array('base'=> 'adminhtml/catalog_product/edit'),
|
| 132 |
'field' => 'id'
|
| 133 |
)
|
| 134 |
),
|
| 135 |
'filter' => false,
|
| 136 |
'sortable' => false,
|
| 137 |
'index' => 'stores',
|
| 138 |
'is_system' => true,
|
| 139 |
));
|
| 140 |
$this->addExportType('*/*/exportNoupsellsCsv', Mage::helper('reports')->__('CSV'));
|
| 141 |
$this->addExportType('*/*/exportNoupsellsExcel', Mage::helper('reports')->__('Excel'));
|
| 142 |
return parent::_prepareColumns();
|
| 143 |
}
|
app/code/community/DigitalPianism/CustomReports/Block/Signedupnoorder/Grid.php
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
<?php
|
| 2 |
public function __construct()
|
| 3 |
{
|
| 4 |
parent::__construct();
|
| 5 |
$this->setId('signedupnoorderReportGrid');
|
| 6 |
$this->setDefaultSort('subscriber_subscriptiondate');
|
| 7 |
$this->setDefaultDir('desc');
|
| 8 |
}
|
| 9 |
protected function _prepareCollection()
|
| 10 |
{
|
| 11 |
$collection = Mage::getModel('newsletter/subscriber')->getCollection()
|
| 12 |
$this->setCollection($collection);
|
| 13 |
parent::_prepareCollection();
|
| 14 |
return $this;
|
| 15 |
}
|
| 16 |
protected function _prepareColumns()
|
| 17 |
{
|
| 18 |
$this->addColumn('subscriber_id', array(
|
| 19 |
'header' => Mage::helper('reports')->__('Subscriber ID'),
|
| 20 |
'index' => 'subscriber_id'
|
| 21 |
));
|
| 22 |
$this->addColumn('subscriber_email', array(
|
| 23 |
'header' => Mage::helper('reports')->__('Subscriber Email'),
|
| 24 |
'width' => '300',
|
| 25 |
'index' => 'subscriber_email'
|
| 26 |
));
|
| 27 |
$this->addColumn('subscriber_firstname', array(
|
| 28 |
'header' => Mage::helper('reports')->__('First Name'),
|
| 29 |
'width' => '300',
|
| 30 |
'index' => 'subscriber_firstname',
|
| 31 |
));
|
| 32 |
$this->addColumn('subscriber_lastname', array(
|
| 33 |
'header' => Mage::helper('reports')->__('Last Name'),
|
| 34 |
'width' => '300',
|
| 35 |
'index' => 'subscriber_lastname',
|
| 36 |
));
|
| 37 |
'header' =>Mage::helper('reports')->__('Subscription Date'),
|
| 38 |
'align' =>'right',
|
| 39 |
'index' =>'subscriber_subscriptiondate'
|
| 40 |
));
|
| 41 |
$this->addExportType('*/*/exportSignedupnoorderCsv', Mage::helper('reports')->__('CSV'));
|
| 42 |
$this->addExportType('*/*/exportSignedupnoorderExcel', Mage::helper('reports')->__('Excel'));
|
| 43 |
return parent::_prepareColumns();
|
| 44 |
}
|
|
|
|
| 45 |
public function __construct()
|
| 46 |
{
|
| 47 |
parent::__construct();
|
| 48 |
$this->setId('signedupnoorderReportGrid');
|
| 49 |
$this->setDefaultSort('subscriber_subscriptiondate');
|
| 50 |
$this->setDefaultDir('desc');
|
| 51 |
}
|
| 52 |
protected function _prepareCollection()
|
| 53 |
{
|
| 54 |
$collection = Mage::getModel('newsletter/subscriber')->getCollection()
|
| 55 |
$this->setCollection($collection);
|
| 56 |
parent::_prepareCollection();
|
| 57 |
return $this;
|
| 58 |
}
|
| 59 |
protected function _prepareColumns()
|
| 60 |
{
|
| 61 |
$this->addColumn('subscriber_id', array(
|
| 62 |
'header' => Mage::helper('reports')->__('Subscriber ID'),
|
| 63 |
'index' => 'subscriber_id'
|
| 64 |
));
|
| 65 |
$this->addColumn('subscriber_email', array(
|
| 66 |
'header' => Mage::helper('reports')->__('Subscriber Email'),
|
| 67 |
'width' => '300',
|
| 68 |
'index' => 'subscriber_email'
|
| 69 |
));
|
| 70 |
$this->addColumn('subscriber_status', array(
|
| 71 |
'header' => Mage::helper('reports')->__('Status'),
|
| 72 |
'width' => '300',
|
| 73 |
'index' => 'subscriber_status',
|
| 74 |
));
|
| 75 |
$this->addExportType('*/*/exportSignedupnoorderCsv', Mage::helper('reports')->__('CSV'));
|
| 76 |
$this->addExportType('*/*/exportSignedupnoorderExcel', Mage::helper('reports')->__('Excel'));
|
| 77 |
return parent::_prepareColumns();
|
| 78 |
}
|
|
|
|
| 1 |
public function __construct()
|
| 2 |
{
|
| 3 |
parent::__construct();
|
| 4 |
$this->setId('signedupnoorderReportGrid');
|
| 5 |
$this->setDefaultSort('subscriber_subscriptiondate');
|
| 6 |
$this->setDefaultDir('desc');
|
| 7 |
}
|
| 8 |
protected function _prepareCollection()
|
| 9 |
{
|
| 10 |
$collection = Mage::getModel('newsletter/subscriber')->getCollection()
|
| 11 |
$this->setCollection($collection);
|
| 12 |
parent::_prepareCollection();
|
| 13 |
return $this;
|
| 14 |
}
|
| 15 |
protected function _prepareColumns()
|
| 16 |
{
|
| 17 |
$this->addColumn('subscriber_id', array(
|
| 18 |
'header' => Mage::helper('reports')->__('Subscriber ID'),
|
| 19 |
'index' => 'subscriber_id'
|
| 20 |
));
|
| 21 |
$this->addColumn('subscriber_email', array(
|
| 22 |
'header' => Mage::helper('reports')->__('Subscriber Email'),
|
| 23 |
'width' => '300',
|
| 24 |
'index' => 'subscriber_email'
|
| 25 |
));
|
| 26 |
$this->addColumn('subscriber_firstname', array(
|
| 27 |
'header' => Mage::helper('reports')->__('First Name'),
|
| 28 |
'width' => '300',
|
| 29 |
'index' => 'subscriber_firstname',
|
| 30 |
));
|
| 31 |
$this->addColumn('subscriber_lastname', array(
|
| 32 |
'header' => Mage::helper('reports')->__('Last Name'),
|
| 33 |
'width' => '300',
|
| 34 |
'index' => 'subscriber_lastname',
|
| 35 |
));
|
| 36 |
'header' =>Mage::helper('reports')->__('Subscription Date'),
|
| 37 |
'align' =>'right',
|
| 38 |
'index' =>'subscriber_subscriptiondate'
|
| 39 |
));
|
| 40 |
$this->addExportType('*/*/exportSignedupnoorderCsv', Mage::helper('reports')->__('CSV'));
|
| 41 |
$this->addExportType('*/*/exportSignedupnoorderExcel', Mage::helper('reports')->__('Excel'));
|
| 42 |
return parent::_prepareColumns();
|
| 43 |
}
|
| 44 |
+
<?php
|
| 45 |
public function __construct()
|
| 46 |
{
|
| 47 |
parent::__construct();
|
| 48 |
$this->setId('signedupnoorderReportGrid');
|
| 49 |
$this->setDefaultSort('subscriber_subscriptiondate');
|
| 50 |
$this->setDefaultDir('desc');
|
| 51 |
}
|
| 52 |
protected function _prepareCollection()
|
| 53 |
{
|
| 54 |
$collection = Mage::getModel('newsletter/subscriber')->getCollection()
|
| 55 |
$this->setCollection($collection);
|
| 56 |
parent::_prepareCollection();
|
| 57 |
return $this;
|
| 58 |
}
|
| 59 |
protected function _prepareColumns()
|
| 60 |
{
|
| 61 |
$this->addColumn('subscriber_id', array(
|
| 62 |
'header' => Mage::helper('reports')->__('Subscriber ID'),
|
| 63 |
'index' => 'subscriber_id'
|
| 64 |
));
|
| 65 |
$this->addColumn('subscriber_email', array(
|
| 66 |
'header' => Mage::helper('reports')->__('Subscriber Email'),
|
| 67 |
'width' => '300',
|
| 68 |
'index' => 'subscriber_email'
|
| 69 |
));
|
| 70 |
$this->addColumn('subscriber_status', array(
|
| 71 |
'header' => Mage::helper('reports')->__('Status'),
|
| 72 |
'width' => '300',
|
| 73 |
'index' => 'subscriber_status',
|
| 74 |
));
|
| 75 |
$this->addExportType('*/*/exportSignedupnoorderCsv', Mage::helper('reports')->__('CSV'));
|
| 76 |
$this->addExportType('*/*/exportSignedupnoorderExcel', Mage::helper('reports')->__('Excel'));
|
| 77 |
return parent::_prepareColumns();
|
| 78 |
}
|
app/code/community/DigitalPianism/CustomReports/etc/config.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<FactoryX_CustomReports>
|
| 5 |
-
<version>0.0.
|
| 6 |
</FactoryX_CustomReports>
|
| 7 |
</modules>
|
| 8 |
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<FactoryX_CustomReports>
|
| 5 |
+
<version>0.0.13</version>
|
| 6 |
</FactoryX_CustomReports>
|
| 7 |
</modules>
|
| 8 |
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>DigitalPianism_CustomReports</name>
|
| 4 |
-
<version>0.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -60,8 +60,8 @@ This module includes the following reports to Magento:
|
|
| 60 |
</notes>
|
| 61 |
<authors><author><name>Digital Pianism</name><user>digitalpianism</user><email>contact@digital-pianism.com</email></author></authors>
|
| 62 |
<date>2014-08-08</date>
|
| 63 |
-
<time>10:
|
| 64 |
-
<contents><target name="magecommunity"><dir name="DigitalPianism"><dir name="CustomReports"><dir name="Block"><dir name="Bestsellersbycategory"><file name="Grid.php" hash="525a1ae5e21decffd3fcb899362be083"/></dir><file name="Bestsellersbycategory.php" hash="60483ad3e57dc461f5943c805d149c01"/><file name="Customreport.php" hash="e6bbb8a7baf7acc47f39b02e64ccbc94"/><dir name="Lifetimesales"><file name="Grid.php" hash="b36706d8594b934d1d13b236537b39cd"/></dir><file name="Lifetimesales.php" hash="94d685421ecb611a871d99c1c593ac46"/><dir name="Noupsells"><file name="Grid.php" hash="
|
| 65 |
<compatible/>
|
| 66 |
<dependencies><required><php><min>4.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 67 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>DigitalPianism_CustomReports</name>
|
| 4 |
+
<version>0.0.13</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 60 |
</notes>
|
| 61 |
<authors><author><name>Digital Pianism</name><user>digitalpianism</user><email>contact@digital-pianism.com</email></author></authors>
|
| 62 |
<date>2014-08-08</date>
|
| 63 |
+
<time>10:54:11</time>
|
| 64 |
+
<contents><target name="magecommunity"><dir name="DigitalPianism"><dir name="CustomReports"><dir name="Block"><dir name="Bestsellersbycategory"><file name="Grid.php" hash="525a1ae5e21decffd3fcb899362be083"/></dir><file name="Bestsellersbycategory.php" hash="60483ad3e57dc461f5943c805d149c01"/><file name="Customreport.php" hash="e6bbb8a7baf7acc47f39b02e64ccbc94"/><dir name="Lifetimesales"><file name="Grid.php" hash="b36706d8594b934d1d13b236537b39cd"/></dir><file name="Lifetimesales.php" hash="94d685421ecb611a871d99c1c593ac46"/><dir name="Noupsells"><file name="Grid.php" hash="4dd16b05ccd8b703486fa0064759c91e"/></dir><file name="Noupsells.php" hash="bbc28aa60bd78b8c3ccf2fb94f470751"/><dir name="Shoppedonce"><file name="Grid.php" hash="28401d7c968100aec911545a8074dd70"/></dir><file name="Shoppedonce.php" hash="bc3b20a05d2859a710850cde353599d5"/><dir name="Signedupnoorder"><file name="Grid.php" hash="100be20b5957142f6983bd05fa8453cc"/></dir><file name="Signedupnoorder.php" hash="30d952fcc1fa6e913c98134f195342eb"/><dir name="Wishlist"><file name="Grid.php" hash="94cd0ac0dd2b46e759510ba6f120c93e"/></dir><file name="Wishlist.php" hash="ee711134bdecd35b26fd9ae0f933195a"/><dir name="Worstsellers"><file name="Grid.php" hash="90f13fa28b33da82da46c3bb3b63f300"/></dir><file name="Worstsellers.php" hash="f31350020ae1d4207a49270a226a6df4"/><dir name="Worstsellersbycategory"><file name="Grid.php" hash="3c0a3bc72f687a56046436d121ce7d5e"/></dir><file name="Worstsellersbycategory.php" hash="4b94e31f8297c38904a073240b7af85e"/></dir><dir name="Model"><dir name="Reports"><dir name="Resource"><dir name="Product"><file name="Collection.php" hash="0c08ef3656ba7948aad06b9dfe2df704"/></dir></dir></dir></dir><dir name="controllers"><file name="BestsellersbycategoryController.php" hash="bcb8ba02dbfbb37880830c24c88c4791"/><file name="LifetimesalesController.php" hash="36c23ba7464e5b23d7803babdc092097"/><file name="NoupsellsController.php" hash="ccdf273757694494daec860361c0ec52"/><file name="ShoppedonceController.php" hash="0c599676dbb5722feb9bc437cfb985f1"/><file name="SignedupnoorderController.php" hash="0d996537ef4affe736b1aa3437152bc6"/><file name="WishlistController.php" hash="1ee8c24d7ce1ffc28493aedba17505a5"/><file name="WorstsellersController.php" hash="20e935b7f822abd346f76e6a934234da"/><file name="WorstsellersbycategoryController.php" hash="bc37e6b7a41c4ed918018ecdf2042259"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2233874893d9dcc82540d61aa0668328"/><file name="config.xml" hash="50f7a10b7afe97bab64e519c7dcdc999"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="DigitalPianism_CustomReports.xml" hash="2244af82c076ed3abf5064672036ef0b"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="digitalpianism"><dir name="customreports"><file name="advancedgrid.phtml" hash="21e1ea8ed294994613c8db99cda35515"/><file name="grid.phtml" hash="a8d2cbad8327390e2b9cd3b7717c384d"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="DigitalPianism_CustomReports.csv" hash="0fcee0228d1044be8c0b76f02079bf55"/></dir></target></contents>
|
| 65 |
<compatible/>
|
| 66 |
<dependencies><required><php><min>4.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 67 |
</package>
|
