Ced_LayBuy - Version 2.0.4

Version Notes

1. Order page modified with installment plans details in payment information section.
2. Customer can view there installment plans of a order from account panel for detail read the user guide
3. Enhance the payment association with order
4. Installment plan can be canceled on order cancellation
5. admin Interfaces are modified.
6. payment method only active at checkout per:
- min. checkout cart total
- allowed categories
- allowed customer groups
- excluded by product ids

Download this release

Release Info

Developer Warrin
Extension Ced_LayBuy
Version 2.0.4
Comparing to
See all releases


Code changes from version 2.0.3 to 2.0.4

app/code/local/Ced/LayBuy/Model/{Resource → Mysql4}/Report.php RENAMED
@@ -29,7 +29,7 @@
29
  * LayBuy Resource Report model
30
  */
31
 
32
- class Ced_LayBuy_Model_Resource_Report extends Mage_Core_Model_Resource_Db_Abstract{
33
  protected function _construct()
34
  {
35
  $this->_init('laybuy/report', 'id');
29
  * LayBuy Resource Report model
30
  */
31
 
32
+ class Ced_LayBuy_Model_Mysql4_Report extends Mage_Core_Model_Mysql4_Abstract{
33
  protected function _construct()
34
  {
35
  $this->_init('laybuy/report', 'id');
app/code/local/Ced/LayBuy/Model/{Resource → Mysql4}/Report/Collection.php RENAMED
@@ -29,7 +29,7 @@
29
  * LayBuy Report Collection model
30
  */
31
 
32
- class Ced_LayBuy_Model_Resource_Report_Collection extends Mage_Core_Model_Resource_Db_Collection_Abstract {
33
  protected function _construct()
34
  {
35
  $this->_init('laybuy/report');
29
  * LayBuy Report Collection model
30
  */
31
 
32
+ class Ced_LayBuy_Model_Mysql4_Report_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract {
33
  protected function _construct()
34
  {
35
  $this->_init('laybuy/report');
app/code/local/Ced/LayBuy/Model/{Resource → Mysql4}/Revise.php RENAMED
@@ -29,7 +29,7 @@
29
  * LayBuy Resource Revise model
30
  */
31
 
32
- class Ced_LayBuy_Model_Resource_Revise extends Mage_Core_Model_Resource_Db_Abstract{
33
  protected function _construct()
34
  {
35
  $this->_init('laybuy/revise', 'id');
29
  * LayBuy Resource Revise model
30
  */
31
 
32
+ class Ced_LayBuy_Model_Mysql4_Revise extends Mage_Core_Model_Mysql4_Abstract{
33
  protected function _construct()
34
  {
35
  $this->_init('laybuy/revise', 'id');
app/code/local/Ced/LayBuy/Model/{Resource → Mysql4}/Revise/Collection.php RENAMED
@@ -29,7 +29,7 @@
29
  * LayBuy Revise Collection model
30
  */
31
 
32
- class Ced_LayBuy_Model_Resource_Revise_Collection extends Mage_Core_Model_Resource_Db_Collection_Abstract {
33
  protected function _construct()
34
  {
35
  $this->_init('laybuy/revise');
29
  * LayBuy Revise Collection model
30
  */
31
 
32
+ class Ced_LayBuy_Model_Mysql4_Revise_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract {
33
  protected function _construct()
34
  {
35
  $this->_init('laybuy/revise');
app/code/local/Ced/LayBuy/Model/{Resource → Mysql4}/Setup.php RENAMED
@@ -29,6 +29,6 @@
29
  * LayBuy Resource Setup model
30
  */
31
 
32
- class Ced_LayBuy_Model_Resource_Setup extends Mage_Core_Model_Resource_Setup
33
  {
34
  }
29
  * LayBuy Resource Setup model
30
  */
31
 
32
+ class Ced_LayBuy_Model_Mysql4_Setup extends Mage_Core_Model_Resource_Setup
33
  {
34
  }
app/code/local/Ced/LayBuy/Model/System/Config/Source/Categories - bkp.php DELETED
@@ -1,124 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category Mage
22
- * @package Mage_Adminhtml
23
- * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
- */
26
-
27
- /**
28
- * Config category source
29
- *
30
- * @category Mage
31
- * @package Mage_Adminhtml
32
- * @author Magento Core Team <core@magentocommerce.com>
33
- */
34
- class Ced_LayBuy_Model_System_Config_Source_Categories
35
- {
36
- // public function toOptionArray($addEmpty = true)
37
- // {
38
- // $tree = Mage::getResourceModel('catalog/category_tree');
39
-
40
- // $collection = Mage::getResourceModel('catalog/category_collection');
41
-
42
- // $collection->addAttributeToSelect('name')
43
- // /* ->addRootLevelFilter() */
44
- // ->load();
45
-
46
- // $options = array();
47
-
48
- // /* if ($addEmpty) {
49
- // $options[] = array(
50
- // 'label' => Mage::helper('adminhtml')->__('-- Please Select a Category --'),
51
- // 'value' => ''
52
- // );
53
- // } */
54
- // foreach ($collection as $category) {
55
- // $options []= array(
56
- // 'label' => $category->getName(),
57
- // 'value' => $category->getId()
58
- // );
59
- // }
60
-
61
- // return $options;
62
- // }
63
-
64
- public function toOptionArray($addEmpty = true)
65
- {
66
- $options = array();
67
- foreach ($this->load_tree() as $category) {
68
- /* $options[$category['value']] = $category['label']; */
69
- $options[] = array(
70
- 'label' => $category['label'],
71
- 'value' => $category['value']
72
- );
73
- }
74
-
75
- return $options;
76
- }
77
-
78
-
79
-
80
- public function buildCategoriesMultiselectValues(Varien_Data_Tree_Node $node, $values, $level = 0)
81
- {
82
- $level++;
83
- if($node->getId() != '1')
84
- {
85
- $values[$node->getId()]['value'] = $node->getId();
86
- if($node->getLevel() < '2'){
87
- $values[$node->getId()]['label'] = $node->getName();
88
- }else{
89
- $values[$node->getId()]['label'] = str_repeat(" - ", (($node->getLevel())-1)) . $node->getName();
90
- }
91
- }
92
-
93
- foreach ($node->getChildren() as $child)
94
- {
95
- $values = $this->buildCategoriesMultiselectValues($child, $values, $level);
96
- }
97
-
98
- return $values;
99
- }
100
-
101
- public function load_tree()
102
- {
103
- $store = Mage::app()->getFrontController()->getRequest()->getParam('store', 0);
104
- $parentId = $store ? Mage::app()->getStore($store)->getRootCategoryId() : 1; // Current store root category
105
-
106
- $tree = Mage::getResourceSingleton('catalog/category_tree')->load();
107
-
108
- $root = $tree->getNodeById($parentId);
109
-
110
- if($root && $root->getId() == 1)
111
- {
112
- $root->setName(Mage::helper('catalog')->__('Root'));
113
- }
114
-
115
- $collection = Mage::getModel('catalog/category')->getCollection()
116
- ->setStoreId($store)
117
- ->addAttributeToSelect('name')
118
- ->addAttributeToSelect('is_active');
119
-
120
- $tree->addCollectionData($collection, true);
121
-
122
- return $this->buildCategoriesMultiselectValues($root, array());
123
- }
124
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/Ced/LayBuy/Model/System/Config/Source/Categories.php CHANGED
@@ -48,7 +48,7 @@ class Ced_LayBuy_Model_System_Config_Source_Categories
48
 
49
  foreach ($collection as $category) {
50
  $options []= array(
51
- 'label' => $category->getName(),
52
  'value' => $category->getId()
53
  );
54
  }
48
 
49
  foreach ($collection as $category) {
50
  $options []= array(
51
+ 'label' => $category->getName()!=''?$category->getName():'Default Category',
52
  'value' => $category->getId()
53
  );
54
  }
app/code/local/Ced/LayBuy/controllers/Adminhtml/ReportController.php CHANGED
@@ -138,7 +138,7 @@ class Ced_LayBuy_Adminhtml_ReportController extends Mage_Adminhtml_Controller_Ac
138
  {
139
  $rowId = $this->getRequest()->getParam('id');
140
  $data = $this->getRequest()->getParams();
141
- print_r($data);die;
142
  $reportModel = Mage::getModel('laybuy/report')->load($rowId);
143
 
144
  $temp = array();
138
  {
139
  $rowId = $this->getRequest()->getParam('id');
140
  $data = $this->getRequest()->getParams();
141
+ /* print_r($data);die; */
142
  $reportModel = Mage::getModel('laybuy/report')->load($rowId);
143
 
144
  $temp = array();
app/code/local/Ced/LayBuy/etc/config.xml CHANGED
@@ -66,10 +66,10 @@
66
  <models>
67
  <laybuy>
68
  <class>Ced_LayBuy_Model</class>
69
- <resourceModel>laybuy_resource</resourceModel>
70
  </laybuy>
71
- <laybuy_resource>
72
- <class>Ced_LayBuy_Model_Resource</class>
73
  <entities>
74
  <report>
75
  <table>laybuy_transaction_report</table>
@@ -78,13 +78,13 @@
78
  <table>laybuy_revise_request_report</table>
79
  </revise>
80
  </entities>
81
- </laybuy_resource>
82
  </models>
83
  <resources>
84
  <laybuy_setup>
85
  <setup>
86
  <module>Ced_LayBuy</module>
87
- <class>Ced_LayBuy_Model_Resource_Setup</class>
88
  </setup>
89
  </laybuy_setup>
90
  </resources>
66
  <models>
67
  <laybuy>
68
  <class>Ced_LayBuy_Model</class>
69
+ <resourceModel>laybuy_mysql4</resourceModel>
70
  </laybuy>
71
+ <laybuy_mysql4>
72
+ <class>Ced_LayBuy_Model_Mysql4</class>
73
  <entities>
74
  <report>
75
  <table>laybuy_transaction_report</table>
78
  <table>laybuy_revise_request_report</table>
79
  </revise>
80
  </entities>
81
+ </laybuy_mysql4>
82
  </models>
83
  <resources>
84
  <laybuy_setup>
85
  <setup>
86
  <module>Ced_LayBuy</module>
87
+ <class>Ced_LayBuy_Model_Mysql4_Setup</class>
88
  </setup>
89
  </laybuy_setup>
90
  </resources>
app/code/local/Ced/LayBuy/etc/system.xml CHANGED
@@ -184,69 +184,60 @@
184
  <show_in_website>1</show_in_website>
185
  <show_in_store>1</show_in_store>
186
  </sort_order>
187
- <settlement_reports type="group" translate="label">
188
- <label>Instalment Report Settings</label>
 
 
 
 
 
 
 
 
 
189
  <frontend_type>text</frontend_type>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
  <show_in_default>1</show_in_default>
191
  <show_in_website>1</show_in_website>
 
 
 
 
 
 
 
 
192
  <sort_order>90</sort_order>
193
- <fields>
194
- <heading_sftp translate="label">
195
- <label>Api Credentials</label>
196
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
197
- <sort_order>10</sort_order>
198
- <show_in_default>1</show_in_default>
199
- <show_in_website>1</show_in_website>
200
- </heading_sftp>
201
- <settlement_reports_ftp_ip translate="label comment">
202
- <label>Api IP-Address</label>
203
- <comment>By default it is "https://lay-buys.com/report/".</comment>
204
- <config_path>laybuy/fetch_reports/ftp_ip</config_path>
205
- <frontend_type>text</frontend_type>
206
- <sort_order>20</sort_order>
207
- <show_in_default>1</show_in_default>
208
- <show_in_website>1</show_in_website>
209
- <shared>1</shared>
210
- </settlement_reports_ftp_ip>
211
- <heading_schedule translate="label">
212
- <label>Scheduled Fetching</label>
213
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
214
- <sort_order>70</sort_order>
215
- <show_in_default>1</show_in_default>
216
- <show_in_website>1</show_in_website>
217
- <shared>1</shared>
218
- </heading_schedule>
219
- <settlement_reports_active translate="label">
220
- <label>Enable Automatic Fetching</label>
221
- <config_path>laybuy/fetch_reports/active</config_path>
222
- <frontend_type>select</frontend_type>
223
- <source_model>adminhtml/system_config_source_yesno</source_model>
224
- <sort_order>80</sort_order>
225
- <show_in_default>1</show_in_default>
226
- <show_in_website>1</show_in_website>
227
- <shared>1</shared>
228
- </settlement_reports_active>
229
- <settlement_reports_schedule translate="label comment">
230
- <label>Schedule</label>
231
- <config_path>laybuy/fetch_reports/schedule</config_path>
232
- <frontend_type>select</frontend_type>
233
- <source_model>laybuy/system_config_source_fetchingSchedule</source_model>
234
- <backend_model>laybuy/system_config_backend_cron</backend_model>
235
- <sort_order>90</sort_order>
236
- <show_in_default>1</show_in_default>
237
- <shared>1</shared>
238
- </settlement_reports_schedule>
239
- <settlement_reports_time translate="label">
240
- <label>Time of Day</label>
241
- <config_path>laybuy/fetch_reports/time</config_path>
242
- <frontend_type>time</frontend_type>
243
- <sort_order>100</sort_order>
244
- <show_in_default>1</show_in_default>
245
- <shared>1</shared>
246
- </settlement_reports_time>
247
- </fields>
248
- </settlement_reports>
249
- <sort_order>100</sort_order>
250
  <show_in_default>1</show_in_default>
251
  <show_in_website>1</show_in_website>
252
  <show_in_store>0</show_in_store>
184
  <show_in_website>1</show_in_website>
185
  <show_in_store>1</show_in_store>
186
  </sort_order>
187
+ <heading_sftp translate="label">
188
+ <label>Api Credentials</label>
189
+ <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
190
+ <sort_order>77</sort_order>
191
+ <show_in_default>1</show_in_default>
192
+ <show_in_website>1</show_in_website>
193
+ </heading_sftp>
194
+ <settlement_reports_ftp_ip translate="label comment">
195
+ <label>Api IP-Address</label>
196
+ <comment>By default it is "https://lay-buys.com/report/".</comment>
197
+ <config_path>laybuy/fetch_reports/ftp_ip</config_path>
198
  <frontend_type>text</frontend_type>
199
+ <sort_order>78</sort_order>
200
+ <show_in_default>1</show_in_default>
201
+ <show_in_website>1</show_in_website>
202
+ <shared>1</shared>
203
+ </settlement_reports_ftp_ip>
204
+ <heading_schedule translate="label">
205
+ <label>Scheduled Fetching</label>
206
+ <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
207
+ <sort_order>79</sort_order>
208
+ <show_in_default>1</show_in_default>
209
+ <show_in_website>1</show_in_website>
210
+ <shared>1</shared>
211
+ </heading_schedule>
212
+ <settlement_reports_active translate="label">
213
+ <label>Enable Automatic Fetching</label>
214
+ <config_path>laybuy/fetch_reports/active</config_path>
215
+ <frontend_type>select</frontend_type>
216
+ <source_model>adminhtml/system_config_source_yesno</source_model>
217
+ <sort_order>80</sort_order>
218
  <show_in_default>1</show_in_default>
219
  <show_in_website>1</show_in_website>
220
+ <shared>1</shared>
221
+ </settlement_reports_active>
222
+ <settlement_reports_schedule translate="label comment">
223
+ <label>Schedule</label>
224
+ <config_path>laybuy/fetch_reports/schedule</config_path>
225
+ <frontend_type>select</frontend_type>
226
+ <source_model>laybuy/system_config_source_fetchingSchedule</source_model>
227
+ <backend_model>laybuy/system_config_backend_cron</backend_model>
228
  <sort_order>90</sort_order>
229
+ <show_in_default>1</show_in_default>
230
+ <shared>1</shared>
231
+ </settlement_reports_schedule>
232
+ <settlement_reports_time translate="label">
233
+ <label>Time of Day</label>
234
+ <config_path>laybuy/fetch_reports/time</config_path>
235
+ <frontend_type>time</frontend_type>
236
+ <sort_order>100</sort_order>
237
+ <show_in_default>1</show_in_default>
238
+ <shared>1</shared>
239
+ </settlement_reports_time>
240
+ <sort_order>101</sort_order>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  <show_in_default>1</show_in_default>
242
  <show_in_website>1</show_in_website>
243
  <show_in_store>0</show_in_store>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ced_LayBuy</name>
4
- <version>2.0.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
@@ -29,9 +29,9 @@ This effectively increases sales and radically improves cash flow where all the
29
  - allowed customer groups&#xD;
30
  - excluded by product ids </notes>
31
  <authors><author><name>Warrin</name><user>Warrin</user><email>warrin@lay-buys.com</email></author><author><name>Asheesh Singh</name><user>asheeshsingh</user><email>asheeshsingh@cedcoss.com</email></author></authors>
32
- <date>2014-01-27</date>
33
- <time>13:16:58</time>
34
- <contents><target name="magelocal"><dir name="Ced"><dir name="LayBuy"><dir name="Block"><dir name="Adminhtml"><dir name="Report"><dir name="Details"><file name="Form.php" hash="80d28e9b0e19ccab233ea9f18041e364"/></dir><file name="Details.php" hash="f701acdd96fc4f02e8eb878a283449b1"/><dir name="Edit"><file name="Form.php" hash="a2611910f2363eec55531dbf552ed37c"/></dir><file name="Edit.php" hash="04d67bf341a8b7619a79605654b7713f"/><file name="Grid.php" hash="6038eda0c8c2bd17a8da71208011e8e0"/><dir name="Renderer"><file name="Email.php" hash="8e6c0938d80f629cd285303018945ea1"/><file name="Order.php" hash="d89e20aa07fd18a39a1cd881ec9f4995"/><file name="Record.php" hash="95eb9f836a50f3f80d254a7cdd8e1d6e"/></dir></dir><file name="Report.php" hash="9275aca45974105321eed5e06de54e88"/></dir><dir name="Customer"><dir name="Account"><file name="Details.php" hash="64434830be63218157c53a860ab7f48e"/><file name="Grid.php" hash="41d9e28477936ca27f5031e920ee7cfb"/></dir></dir><dir name="Form"><file name="Laybuy.php" hash="f48e5db65ff1b62730e642eada837ec7"/></dir><dir name="Info"><file name="Laybuy.php" hash="00dca1578594e6ec2d5f3ee9004d12fe"/></dir><dir name="Revise"><file name="Redirect.php" hash="6f63613d0fe5540a296804c14263a614"/></dir><dir name="Standard"><file name="Redirect.php" hash="306a88ff75d35c18157dc5dceb02c06f"/></dir></dir><dir name="Helper"><file name="Config.php" hash="f0e99e4baff0db77a27938c071dd26fa"/><file name="Data.php" hash="7aa0f518b49ed5cbb64db57f984494a9"/></dir><dir name="Model"><file name="Observer.php" hash="6a077f545a9f16f5702d783205da1935"/><file name="Report.php" hash="d910a81e6b242cba1d4b58c72929f25e"/><dir name="Resource"><dir name="Report"><file name="Collection.php" hash="5b9e116a63230865d17e13c5d26a95c3"/></dir><file name="Report.php" hash="52986dcbc47da5c268440f5c5283c46c"/><dir name="Revise"><file name="Collection.php" hash="50586282559c46d238cca78bcebbc7a9"/></dir><file name="Revise.php" hash="aeecb9f7bef38fe89769379829d570ea"/><file name="Setup.php" hash="4917b74ef754c4e3d5e0326b2f47af62"/></dir><file name="Revise.php" hash="225c67ee5ff3e9646785ee4342822c82"/><file name="Standard.php" hash="039a65018d7bc6e2e2ed5fa70e9f4a50"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Cron.php" hash="8d6e6dc1c3265307eed7a829031dd5f3"/></dir><dir name="Source"><file name="Categories - bkp.php" hash="3f2bdf2c43568883f536654edf85a3da"/><file name="Categories.php" hash="5bea8c2ea19a3dc311aa7b95c4f4d313"/><file name="FetchingSchedule.php" hash="4f3e5aec5a17991d1625d6f17c0f7d32"/><file name="Groups.php" hash="87a205676d93d59a26d1d7bb69266991"/></dir></dir></dir></dir><file name="README.txt" hash="7930d4ac1e8f9957bb2052983eab4340"/><dir name="controllers"><dir name="Adminhtml"><file name="ReportController.php" hash="97dd32cbdb7f34149624e3a154837438"/></dir><file name="ReportController.php" hash="0ae0fee6659f30a811f151c5007abaf8"/><file name="ReviseController.php" hash="e1abafbdeaa5cb13315a3e679487df06"/><file name="StandardController.php" hash="bbcb30a1ed084e31aed1f4c3fabb30e7"/></dir><dir name="etc"><file name="adminhtml.xml" hash="d6be666f723ef84014bdcc0501bf09fb"/><file name="config.xml" hash="382e0f5cea4ed4f0a60adecbb46025ab"/><file name="system.xml" hash="5e62f3481c435548585e292e64c6f3f4"/></dir><dir name="sql"><dir name="laybuy_setup"><file name="mysql4-install-0.1.0.php" hash="68e359cd24b6051d0c2a91daad899d71"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="bec5e37090cb5a6da6c8ba3652a8bd32"/><file name="mysql4-upgrade-0.2.0-0.3.0.php" hash="97aa7a2a8c91e46c896a6d04d9554aeb"/><file name="mysql4-upgrade-0.3.0-0.4.0.php" hash="9b147158166b94d52e0cfff369ce965c"/><file name="mysql4-upgrade-0.4.0-0.5.0.php" hash="7626925b0cac03d0918eb6b1d51e6d19"/><file name="mysql4-upgrade-0.5.0-0.6.0.php" hash="bc96daed76ca1f04b1eb422508bc3a4b"/><file name="mysql4-upgrade-0.6.0-0.7.0.php" hash="6aa013f47e3b78e4d78e2cba9b471cd4"/><file name="mysql4-upgrade-0.7.0-0.8.0.php" hash="c2ea0f16c8f1e0dc7412a6a0fda1c622"/><file name="mysql4-upgrade-0.8.0-0.9.0.php" hash="d98ba6bef5f4f46ca741d5db014686f1"/></dir></dir><file name="README.txt" hash="7930d4ac1e8f9957bb2052983eab4340"/></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="laybuy.xml" hash="06a129b1976e1bffe665b6857a7692f1"/></dir><dir name="template"><dir name="laybuy"><dir name="checkout"><dir name="onepage"><dir name="review"><file name="button.phtml" hash="df735c2e0c07a664717dc4cd3ea62c99"/></dir></dir></dir><dir name="customer"><dir name="account"><file name="details.phtml" hash="b2014625326522e477ffc2e5163bf9d9"/><file name="grid.phtml" hash="a4997c40900f4a927b9bfb564938e202"/></dir></dir><dir name="form"><file name="extra.phtml" hash="457bbd674b69b4866bf834cb67d79dcd"/><file name="laybuy.phtml" hash="250a2e47b647830dde0a1c511cc2d959"/><file name="laybuy.phtml.original" hash="39aacfc3f3f6ada9e20bbaefef843bab"/></dir><dir name="info"><file name="default.phtml" hash="a0b7e9996902ca0bcf0e424366e40c98"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="laybuy.xml" hash="daf3f1e61e17f4d16c64e34c0b6a0e7b"/></dir><dir name="template"><dir name="laybuy"><dir name="info"><file name="default.phtml" hash="0c8d53885be3931bb9af881a8b4f9906"/></dir><file name="notification.phtml" hash="37f0ece7fa9ee89f2d0bcbe3a836c019"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ced_LayBuy.xml" hash="0299a80e1539c73b4edd1fb0df41c28d"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Ced_LayBuy.csv" hash="f79a1a6ca61c5e7a7463c380eb00896d"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="laybuy"><file name="tooltip.css" hash="ece078bf3d8bb27db4a616fdad505671"/></dir></dir><dir name="images"><dir name="laybuy"><file name="closeBtn.png" hash="b0be9d9ef1053c79b0ebdcef83b53f44"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="laybuy"><file name="check_jquery.js" hash="3f463b1398dd1d46ed3b25726dada9b9"/><file name="jquery.atooltip.js" hash="7ef69b27dfeaff3038e5a3fb1f1ed1ea"/><file name="jquery.min.js" hash="d2f9865f4b390d655e9a7d67aa34c477"/></dir></dir></target></contents>
35
  <compatible/>
36
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
37
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ced_LayBuy</name>
4
+ <version>2.0.4</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
29
  - allowed customer groups&#xD;
30
  - excluded by product ids </notes>
31
  <authors><author><name>Warrin</name><user>Warrin</user><email>warrin@lay-buys.com</email></author><author><name>Asheesh Singh</name><user>asheeshsingh</user><email>asheeshsingh@cedcoss.com</email></author></authors>
32
+ <date>2014-01-28</date>
33
+ <time>15:12:05</time>
34
+ <contents><target name="magelocal"><dir name="Ced"><dir name="LayBuy"><dir name="Block"><dir name="Adminhtml"><dir name="Report"><dir name="Details"><file name="Form.php" hash="80d28e9b0e19ccab233ea9f18041e364"/></dir><file name="Details.php" hash="f701acdd96fc4f02e8eb878a283449b1"/><dir name="Edit"><file name="Form.php" hash="a2611910f2363eec55531dbf552ed37c"/></dir><file name="Edit.php" hash="04d67bf341a8b7619a79605654b7713f"/><file name="Grid.php" hash="6038eda0c8c2bd17a8da71208011e8e0"/><dir name="Renderer"><file name="Email.php" hash="8e6c0938d80f629cd285303018945ea1"/><file name="Order.php" hash="d89e20aa07fd18a39a1cd881ec9f4995"/><file name="Record.php" hash="95eb9f836a50f3f80d254a7cdd8e1d6e"/></dir></dir><file name="Report.php" hash="9275aca45974105321eed5e06de54e88"/></dir><dir name="Customer"><dir name="Account"><file name="Details.php" hash="64434830be63218157c53a860ab7f48e"/><file name="Grid.php" hash="41d9e28477936ca27f5031e920ee7cfb"/></dir></dir><dir name="Form"><file name="Laybuy.php" hash="f48e5db65ff1b62730e642eada837ec7"/></dir><dir name="Info"><file name="Laybuy.php" hash="00dca1578594e6ec2d5f3ee9004d12fe"/></dir><dir name="Revise"><file name="Redirect.php" hash="6f63613d0fe5540a296804c14263a614"/></dir><dir name="Standard"><file name="Redirect.php" hash="306a88ff75d35c18157dc5dceb02c06f"/></dir></dir><dir name="Helper"><file name="Config.php" hash="f0e99e4baff0db77a27938c071dd26fa"/><file name="Data.php" hash="7aa0f518b49ed5cbb64db57f984494a9"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Report"><file name="Collection.php" hash="a3e133f1128200662330a5e21a94c809"/></dir><file name="Report.php" hash="25568238c401ab5e5768596fb76f7ef8"/><dir name="Revise"><file name="Collection.php" hash="2a502f75e4634e4f231f93226ef49b8a"/></dir><file name="Revise.php" hash="cd1a424882417e0ec94561a8cca378e8"/><file name="Setup.php" hash="261838defadf805c7ee29768f6ea8cec"/></dir><file name="Observer.php" hash="6a077f545a9f16f5702d783205da1935"/><file name="Report.php" hash="d910a81e6b242cba1d4b58c72929f25e"/><file name="Revise.php" hash="225c67ee5ff3e9646785ee4342822c82"/><file name="Standard.php" hash="039a65018d7bc6e2e2ed5fa70e9f4a50"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Cron.php" hash="8d6e6dc1c3265307eed7a829031dd5f3"/></dir><dir name="Source"><file name="Categories.php" hash="92c61dba3c23e7838cddbaaee8f21d05"/><file name="FetchingSchedule.php" hash="4f3e5aec5a17991d1625d6f17c0f7d32"/><file name="Groups.php" hash="87a205676d93d59a26d1d7bb69266991"/></dir></dir></dir></dir><file name="README.txt" hash="7930d4ac1e8f9957bb2052983eab4340"/><dir name="controllers"><dir name="Adminhtml"><file name="ReportController.php" hash="92ab7dbe14a59a24e6373e5c77978e6d"/></dir><file name="ReportController.php" hash="0ae0fee6659f30a811f151c5007abaf8"/><file name="ReviseController.php" hash="e1abafbdeaa5cb13315a3e679487df06"/><file name="StandardController.php" hash="bbcb30a1ed084e31aed1f4c3fabb30e7"/></dir><dir name="etc"><file name="adminhtml.xml" hash="d6be666f723ef84014bdcc0501bf09fb"/><file name="config.xml" hash="992e51d62b7246c0fe8bceb183372586"/><file name="system.xml" hash="5dbf398d7c13be1f181a0214c45cb43d"/></dir><dir name="sql"><dir name="laybuy_setup"><file name="mysql4-install-0.1.0.php" hash="68e359cd24b6051d0c2a91daad899d71"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="bec5e37090cb5a6da6c8ba3652a8bd32"/><file name="mysql4-upgrade-0.2.0-0.3.0.php" hash="97aa7a2a8c91e46c896a6d04d9554aeb"/><file name="mysql4-upgrade-0.3.0-0.4.0.php" hash="9b147158166b94d52e0cfff369ce965c"/><file name="mysql4-upgrade-0.4.0-0.5.0.php" hash="7626925b0cac03d0918eb6b1d51e6d19"/><file name="mysql4-upgrade-0.5.0-0.6.0.php" hash="bc96daed76ca1f04b1eb422508bc3a4b"/><file name="mysql4-upgrade-0.6.0-0.7.0.php" hash="6aa013f47e3b78e4d78e2cba9b471cd4"/><file name="mysql4-upgrade-0.7.0-0.8.0.php" hash="c2ea0f16c8f1e0dc7412a6a0fda1c622"/><file name="mysql4-upgrade-0.8.0-0.9.0.php" hash="d98ba6bef5f4f46ca741d5db014686f1"/></dir></dir><file name="README.txt" hash="7930d4ac1e8f9957bb2052983eab4340"/></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="laybuy.xml" hash="06a129b1976e1bffe665b6857a7692f1"/></dir><dir name="template"><dir name="laybuy"><dir name="checkout"><dir name="onepage"><dir name="review"><file name="button.phtml" hash="df735c2e0c07a664717dc4cd3ea62c99"/></dir></dir></dir><dir name="customer"><dir name="account"><file name="details.phtml" hash="b2014625326522e477ffc2e5163bf9d9"/><file name="grid.phtml" hash="a4997c40900f4a927b9bfb564938e202"/></dir></dir><dir name="form"><file name="extra.phtml" hash="457bbd674b69b4866bf834cb67d79dcd"/><file name="laybuy.phtml" hash="250a2e47b647830dde0a1c511cc2d959"/><file name="laybuy.phtml.original" hash="39aacfc3f3f6ada9e20bbaefef843bab"/></dir><dir name="info"><file name="default.phtml" hash="a0b7e9996902ca0bcf0e424366e40c98"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="laybuy.xml" hash="daf3f1e61e17f4d16c64e34c0b6a0e7b"/></dir><dir name="template"><dir name="laybuy"><dir name="info"><file name="default.phtml" hash="0c8d53885be3931bb9af881a8b4f9906"/></dir><file name="notification.phtml" hash="37f0ece7fa9ee89f2d0bcbe3a836c019"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ced_LayBuy.xml" hash="0299a80e1539c73b4edd1fb0df41c28d"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Ced_LayBuy.csv" hash="f79a1a6ca61c5e7a7463c380eb00896d"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="laybuy"><file name="tooltip.css" hash="ece078bf3d8bb27db4a616fdad505671"/></dir></dir><dir name="images"><dir name="laybuy"><file name="closeBtn.png" hash="b0be9d9ef1053c79b0ebdcef83b53f44"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="laybuy"><file name="check_jquery.js" hash="3f463b1398dd1d46ed3b25726dada9b9"/><file name="jquery.atooltip.js" hash="7ef69b27dfeaff3038e5a3fb1f1ed1ea"/><file name="jquery.min.js" hash="d2f9865f4b390d655e9a7d67aa34c477"/></dir></dir></target></contents>
35
  <compatible/>
36
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
37
  </package>