Kartparadigm_StoreCredit - Version 1.0.0.6

Version Notes

Kartparadigm Store Credit

Download this release

Release Info

Developer Kartparadigm
Extension Kartparadigm_StoreCredit
Version 1.0.0.6
Comparing to
See all releases


Code changes from version 1.0.0.5 to 1.0.0.6

app/code/community/Kartparadigm/StoreCredit/Model/Observer.php CHANGED
@@ -15,7 +15,7 @@ class Kartparadigm_StoreCredit_Model_Observer
15
  {
16
  $array2 = Mage::helper('kartparadigm_storecredit')->getCreditRates();
17
  //Mage::log(Mage::helper('kartparadigm_storecredit')->getRefundDeductConfig() . " configuration settings ");
18
- Mage::log($array2);
19
  $session = Mage::getSingleton('checkout/session');
20
  if(Mage::helper('customer')->isLoggedIn()) {
21
  $customer = Mage::getSingleton('customer/session')->getCustomer();
@@ -44,7 +44,7 @@ $amt = Mage::getSingleton('checkout/session')->getCredits()['discountCredits'];
44
  $total=$quote->getGrandTotal();
45
 
46
  $subTotal = $quote->getSubtotal();
47
- //Mage::log($quote->getGrandTotal()."this is grand total");
48
  //Mage::log($quote->getSubtotal()."this is sub total");
49
 
50
  if (!Mage::helper('kartparadigm_storecredit')->getTaxEnabled()){
@@ -114,8 +114,10 @@ $baseDiscount = $discountAmount/$rates[$currentCurrencyCode];
114
  }
115
  else{
116
  $baseDiscount = $discountAmount;
117
- }
118
  $total = $quote->getBaseSubtotal();
 
 
119
  $quote->setSubtotal(0);
120
  $quote->setBaseSubtotal(0);
121
  $quote->setSubtotalWithDiscount(0);
@@ -124,6 +126,7 @@ else{
124
  $quote->setBaseGrandTotal(0);
125
  $canAddItems = $quote->isVirtual() ? ('billing') : ('shipping');
126
  foreach($quote->getAllAddresses() as $address) {
 
127
  $address->setSubtotal(0);
128
  $address->setBaseSubtotal(0);
129
  $address->setGrandTotal(0);
@@ -135,25 +138,24 @@ else{
135
  $quote->setBaseSubtotalWithDiscount((float)$quote->getBaseSubtotalWithDiscount() + $address->getBaseSubtotalWithDiscount());
136
  $quote->setGrandTotal((float)$quote->getGrandTotal() + $address->getGrandTotal());
137
  $quote->setBaseGrandTotal((float)$quote->getBaseGrandTotal() + $address->getBaseGrandTotal());
138
- $quote->save();
139
- $quote->setSubtotalWithDiscount($quote->getSubtotal() - $discountAmount)->setBaseSubtotalWithDiscount($quote->getBaseSubtotal() - $baseDiscount)->save();
140
  if ($address->getAddressType() == $canAddItems) {
141
- $address->setSubtotalWithDiscount((float)$address->getSubtotalWithDiscount() - $discountAmount);
142
- $address->setGrandTotal((float)$address->getGrandTotal() - $discountAmount);
143
- $address->setBaseSubtotalWithDiscount((float)$address->getBaseSubtotalWithDiscount() - $baseDiscount);
144
- $address->setBaseGrandTotal((float)$address->getBaseGrandTotal() - $baseDiscount);
145
- if ($address->getDiscountDescription()) {
146
- $address->setDiscountAmount(-($address->getDiscountAmount() - $discountAmount));
147
- $address->setDiscountDescription($address->getDiscountDescription() . ', Store Credits');
148
-
149
- $address->setBaseDiscountAmount(-($address->getBaseDiscountAmount() - $baseDiscount));
150
  }
151
  else {
152
  $address->setDiscountAmount(-($discountAmount));
153
  $address->setDiscountDescription('Store Credits');
154
  $address->setBaseDiscountAmount(-($baseDiscount));
155
  }
156
- $address->save();
157
  }
158
  }
159
  foreach($quote->getAllItems() as $item) {
@@ -164,6 +166,9 @@ else{
164
  $ratdisc = $discountAmount * $rat;
165
  $ratdisc1 = $baseDiscount * $rat1;
166
  //Mage::log($item->getDiscountAmount()."include tax".$item->getBaseDiscountAmount());
 
 
 
167
  $item->setDiscountAmount(($item->getDiscountAmount() + $ratdisc) * $item->getQty());
168
  $item->setBaseDiscountAmount(($item->getBaseDiscountAmount() + $ratdisc1) * $item->getQty())->save();
169
  }
15
  {
16
  $array2 = Mage::helper('kartparadigm_storecredit')->getCreditRates();
17
  //Mage::log(Mage::helper('kartparadigm_storecredit')->getRefundDeductConfig() . " configuration settings ");
18
+ //Mage::log($array2);
19
  $session = Mage::getSingleton('checkout/session');
20
  if(Mage::helper('customer')->isLoggedIn()) {
21
  $customer = Mage::getSingleton('customer/session')->getCustomer();
44
  $total=$quote->getGrandTotal();
45
 
46
  $subTotal = $quote->getSubtotal();
47
+ //Mage::log($quote->getGrandTotal()."this is grand total store credit");
48
  //Mage::log($quote->getSubtotal()."this is sub total");
49
 
50
  if (!Mage::helper('kartparadigm_storecredit')->getTaxEnabled()){
114
  }
115
  else{
116
  $baseDiscount = $discountAmount;
117
+ }
118
  $total = $quote->getBaseSubtotal();
119
+ $data1 = $quote->getData();
120
+ // Mage::log($data1['entity_id']."quote id");
121
  $quote->setSubtotal(0);
122
  $quote->setBaseSubtotal(0);
123
  $quote->setSubtotalWithDiscount(0);
126
  $quote->setBaseGrandTotal(0);
127
  $canAddItems = $quote->isVirtual() ? ('billing') : ('shipping');
128
  foreach($quote->getAllAddresses() as $address) {
129
+ $data = $address->getData();
130
  $address->setSubtotal(0);
131
  $address->setBaseSubtotal(0);
132
  $address->setGrandTotal(0);
138
  $quote->setBaseSubtotalWithDiscount((float)$quote->getBaseSubtotalWithDiscount() + $address->getBaseSubtotalWithDiscount());
139
  $quote->setGrandTotal((float)$quote->getGrandTotal() + $address->getGrandTotal());
140
  $quote->setBaseGrandTotal((float)$quote->getBaseGrandTotal() + $address->getBaseGrandTotal());
141
+ $quote->setEntityId($data1['entity_id'])->save();
142
+ $quote->setSubtotalWithDiscount($quote->getSubtotal() - $discountAmount)->setBaseSubtotalWithDiscount($quote->getBaseSubtotal() - $baseDiscount)->setEntityId($data1['entity_id'])->save();
143
  if ($address->getAddressType() == $canAddItems) {
144
+ $address->setSubtotalWithDiscount((float)$data['subtotal_with_discount'] - $discountAmount);
145
+ $address->setGrandTotal((float)$data['grand_total'] - $discountAmount);
146
+ $address->setBaseSubtotalWithDiscount((float)$data['base_subtotal_with_discount'] - $baseDiscount);
147
+ $address->setBaseGrandTotal((float)$data['base_grand_total'] - $baseDiscount);
148
+ if ($data['discount_description']) {
149
+ $address->setDiscountAmount(($data['discount_amount'] - $discountAmount));
150
+ $address->setDiscountDescription($data['discount_description'] . ', Store Credits');
151
+ $address->setBaseDiscountAmount(($data['base_discount_amount'] - $baseDiscount));
 
152
  }
153
  else {
154
  $address->setDiscountAmount(-($discountAmount));
155
  $address->setDiscountDescription('Store Credits');
156
  $address->setBaseDiscountAmount(-($baseDiscount));
157
  }
158
+ $address->setAddressId($data['address_id'])->save();
159
  }
160
  }
161
  foreach($quote->getAllItems() as $item) {
166
  $ratdisc = $discountAmount * $rat;
167
  $ratdisc1 = $baseDiscount * $rat1;
168
  //Mage::log($item->getDiscountAmount()."include tax".$item->getBaseDiscountAmount());
169
+ // Mage::log($item->getDiscountAmount()."discount storecredit");
170
+ $idata = $item->getData();
171
+ Mage::log($item->getDiscountAmount()."discount amount credit");
172
  $item->setDiscountAmount(($item->getDiscountAmount() + $ratdisc) * $item->getQty());
173
  $item->setBaseDiscountAmount(($item->getBaseDiscountAmount() + $ratdisc1) * $item->getQty())->save();
174
  }
app/design/frontend/base/default/template/kartparadigm/rma/return-requestform.phtml ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <?php echo $this->getRequest()->getParam('order_id')."this is order id"; ?>
3
+ <form action="<?php echo $this->getBaseUrl()?>rma/index/sendrequest" method="post" id="form-validate" autocomplete="off">
4
+ <div class="fieldset">
5
+ <h2 class="legend">Receiver Information</h2>
6
+ <ul class="form-list">
7
+ <li class="fields">
8
+ <div class="customer-name">
9
+ <div class="field name-name">
10
+ <label for="name" class="required"><em>*</em>Name</label>
11
+ <div class="input-box">
12
+ <input id="name" name="name" value="" title="Name" maxlength="255" class="input-text required-entry" type="text">
13
+ </div>
14
+ </div>
15
+ </div>
16
+ </li>
17
+ <li>
18
+ <label for="email" class="required"><em>*</em>Email Address</label>
19
+ <div class="input-box">
20
+ <input name="email" id="email" value="" title="Email Address" class="input-text required-entry validate-email" type="text">
21
+ </div>
22
+ </li>
23
+ <li>
24
+ <label for="credits" class="required"><em>*</em>Enter Credits</label>
25
+ <div class="input-box">
26
+ <input name="credits" id="credits" value="" title="Email Address" class="input-text required-entry" type="number">
27
+ </div>
28
+ </li>
29
+ <li>
30
+ <label for="message" class="required"><em>*</em>Write Message</label>
31
+ <div class="input-box">
32
+ <textarea name="message" id="message" value="" title="Message" class="input-text required-entry"></textarea>
33
+ </div>
34
+ </li>
35
+ </ul>
36
+ </div>
37
+ <?php
38
+ if(Mage::getSingleton('customer/session')->isLoggedIn()) {
39
+ $customerData = Mage::getSingleton('customer/session')->getCustomer();
40
+ $id = $customerData->getId();
41
+ $name = $customerData->getName();
42
+ ?>
43
+ <input type="hidden" value="<?php echo $id ?>" name="id" id="id" />
44
+ <input type="hidden" value="<?php echo $name ?>" name="sname" id="sname" />
45
+ <?php } ?>
46
+ <div class="buttons-set">
47
+ <p class="required">* Required Fields</p>
48
+ <button type="submit" title="Send" class="button"><span><span>Send</span></span></button>
49
+ </div>
50
+
51
+ </form>
52
+
53
+
54
+ <script type="text/javascript">
55
+ //<![CDATA[
56
+ var dataForm = new VarienForm('form-validate', true);
57
+ //]]>
58
+ </script></div>
app/design/frontend/base/default/template/kartparadigm/rma/return-requestform.phtml~ ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <?php echo $this->getRequest()->getParam('order_id')."this is order id"; ?>
3
+ <form action="<?php echo $this->getBaseUrl()?>rma/index/sendrequest" method="post" id="form-validate" autocomplete="off">
4
+ <div class="fieldset">
5
+ <h2 class="legend">Receiver Information</h2>
6
+ <ul class="form-list">
7
+ <li class="fields">
8
+ <div class="customer-name">
9
+ <div class="field name-name">
10
+ <label for="name" class="required"><em>*</em>Name</label>
11
+ <div class="input-box">
12
+ <input id="name" name="name" value="" title="Name" maxlength="255" class="input-text required-entry" type="text">
13
+ </div>
14
+ </div>
15
+ </div>
16
+ </li>
17
+ <li>
18
+ <label for="email" class="required"><em>*</em>Email Address</label>
19
+ <div class="input-box">
20
+ <input name="email" id="email" value="" title="Email Address" class="input-text required-entry validate-email" type="text">
21
+ </div>
22
+ </li>
23
+ <li>
24
+ <label for="credits" class="required"><em>*</em>Enter Credits</label>
25
+ <div class="input-box">
26
+ <input name="credits" id="credits" value="" title="Email Address" class="input-text required-entry" type="number">
27
+ </div>
28
+ </li>
29
+ <li>
30
+ <label for="message" class="required"><em>*</em>Write Message</label>
31
+ <div class="input-box">
32
+ <textarea name="message" id="message" value="" title="Message" class="input-text required-entry"></textarea>
33
+ </div>
34
+ </li>
35
+ </ul>
36
+ </div>
37
+ <?php
38
+ if(Mage::getSingleton('customer/session')->isLoggedIn()) {
39
+ $customerData = Mage::getSingleton('customer/session')->getCustomer();
40
+ $id = $customerData->getId();
41
+ $name = $customerData->getName();
42
+ ?>
43
+ <input type="hidden" value="<?php echo $id ?>" name="id" id="id" />
44
+ <input type="hidden" value="<?php echo $name ?>" name="sname" id="sname" />
45
+ <?php } ?>
46
+ <div class="buttons-set">
47
+ <p class="required">* Required Fields</p>
48
+ <button type="submit" title="Send" class="button"><span><span>Send</span></span></button>
49
+ </div>
50
+
51
+ </form>
52
+
53
+
54
+ <script type="text/javascript">
55
+ //<![CDATA[
56
+ var dataForm = new VarienForm('form-validate', true);
57
+ //]]>
58
+ </script></div>
app/design/frontend/base/default/template/kartparadigm/rma/returnlink.phtml ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <span class="separator">|</span>
2
+ <a href="<?php echo $this->getPrintUrl($_order) ?>" class="link-print" onclick="this.target='_blank';"><?php echo $this->__('Return') ?></a>
3
+
app/design/frontend/base/default/template/kartparadigm/rma/returnlink.phtml~ ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <span class="separator">|</span>
2
+ <a href="<?php echo $this->getPrintUrl($_order) ?>" class="link-print" onclick="this.target='_blank';"><?php echo $this->__('Return') ?></a>
3
+
app/locale/en_US/template/email/caritor_email_template.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Caritor custom email module @-->
2
+
3
+ <div>
4
+
5
+ <h1>Dear {{var var1}}</h1>
6
+
7
+ <p style="font-family:Verdana,Arial;font-weight:normal">We have updated your account on <a href= {{var var8}} style="color:#3696c2" target="_blank"> {{var var8}} </a> and you have credit which you can use for future purchase.</p>
8
+
9
+ <div style="font-family:Verdana,Arial;font-weight:normal"> Your Store Credit balance is : {{var var4}} </div>
10
+
11
+ <div style="font-family:Verdana,Arial;font-weight:normal"> We appreciate your business. </div>
12
+
13
+ </div>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Kartparadigm_StoreCredit</name>
4
- <version>1.0.0.5</version>
5
  <stability>stable</stability>
6
  <license>OSL</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>Efficiently maintain customer credits in all store views.</description>
11
  <notes>Kartparadigm Store Credit</notes>
12
  <authors><author><name>Kartparadigm</name><user>kartparadigm</user><email>kartparadigm@gmail.com</email></author></authors>
13
- <date>2015-03-24</date>
14
- <time>05:14:19</time>
15
- <contents><target name="magecommunity"><dir name="Kartparadigm"><dir name="StoreCredit"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><dir name="Edit"><dir name="Tab"><dir name="Credits"><file name="List.php" hash="243615c727cebfe59d273da8b85b5db0"/><file name="List1.php" hash="44228eee4508701546e2e4f794431b14"/></dir><file name="Credits.php" hash="8af8e7e7ae5634de6b7dc6dda9349269"/></dir></dir><file name="Grid.php" hash="335c1bee870644f106315be703e4c0d0"/></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><dir name="Tab"><file name="Actions.php" hash="36fe787ce9fd4c5d6283c35c741add92"/></dir></dir></dir></dir><dir name="Registries"><dir name="Edit"><file name="Form.php" hash="a2a4f87d29506b1bfd7adf9e420a3e8d"/></dir><file name="Edit.php" hash="2328aeadf074d5e7740947b8bfc54a84"/><file name="Grid.php" hash="99fd3e2d4528bd98aeda18783c2653c0"/></dir><file name="Registries.php" hash="77e441d9f86462eea31cd1ab3abbc24e"/><dir name="Registries1"><dir name="Edit"><file name="Form.php" hash="78c893545865890297ac7f4d406d9afd"/></dir><file name="Edit.php" hash="b38d2e821374c9babdbe4c8de1dd71f0"/><file name="Grid.php" hash="74af81c3af7fe14a52fc03b9d06c5c38"/></dir><file name="Registries1.php" hash="5f821c5722e3e2ec2c635f13efae5270"/></dir><file name="Collection.php" hash="06203b41373cbb51433aaff716e54a45"/><file name="Credit.php" hash="c207b8719fa5aba99fe0f49110b71e12"/></dir><dir name="Helper"><file name="Data.php" hash="d25b537a7ba596762dfd7a5475684ea9"/></dir><dir name="Model"><file name="Creditinfo.php" hash="a96ee7fd6d660ff6de22dbbdbc90a7ae"/><dir name="Mysql4"><dir name="Creditinfo"><file name="Collection.php" hash="6f62213e7f4f62d0f90ffaeb6ff61f03"/></dir><file name="Creditinfo.php" hash="85e01354a1e6973e74dd8fdf11af4eb8"/><dir name="Sendcreditstofriend"><file name="Collection.php" hash="93b7db3ec026d02fc205c8fc5e23630e"/></dir><file name="Sendcreditstofriend.php" hash="32be8731fb112f18d70e06e2b388ebd3"/></dir><file name="Observer.php" hash="101c9544d255c95fb6952c8bb6ab6cd1"/><dir name="Resource"><file name="Rule.php" hash="b6471332cf41e96cc6e60e57505bd0f5"/><file name="Setup.php" hash="7f5ed91bf4d6ab4bc2dd3496fdf37d1c"/><file name="Transaction.php" hash="95cf90e2ab034c722109f741ca446d0e"/></dir><file name="Sendcreditstofriend.php" hash="711f4fbee2493698486fbc162e1fda6e"/><file name="Source.php" hash="8f51c351a0c8d70ac2308f5b7f39a1aa"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CreditsController.php" hash="9d545f6cce030f7353de9b44d1ae35c8"/><file name="CustomerController.php" hash="61e052319e374c395d521d58bb67442c"/><dir name="Promo"><file name="CatalogController.php" hash="aac0c07d33396bc86c5adcfc234838d7"/></dir><dir name="Sales"><dir name="Order"><file name="CreditmemoController.php" hash="4e971e6c64d0763a570e315ccd0d980c"/></dir></dir></dir><dir name="Checkout"><file name="OnepageController.php" hash="2a9734b2099905ba8f0fd1ac79b614c6"/></dir><file name="IndexController.php" hash="d70f263cc210ed21eee8d1564aead14d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1a78218db0c18efcf81ed04ba8b655c2"/><file name="config.xml" hash="39065261bc245ba54799940bea51d5e0"/><file name="system.xml" hash="4b4ef37096e12405ea23e9a7de8efa10"/></dir><dir name="sql"><dir name="kartparadigm_storecredit_setup"><file name="install-0.1.0.php" hash="0e60f75abadb436a7fbc9682245773ab"/><file name="upgrade-0.1.0-0.2.0.php" hash="9e9d855251ffa1ef256e4821a5e903c9"/><file name="upgrade-0.2.0-0.3.0.php" hash="4bafbe8bba6b4d6e824487220d1b49fb"/><file name="upgrade-0.3.0-0.4.0.php" hash="1f7b1d85ca78d5d42afb5f9c064b9acd"/><file name="upgrade-0.4.0-0.5.0.php" hash="4a3ba65764d6ae5bbde2bd48dba46bdc"/><file name="upgrade-0.5.0-0.6.0.php" hash="d60d6c4631750a02202220552c73d373"/><file name="upgrade-0.6.0-0.7.0.php" hash="37acfd4ef86bc0a7d7f7deaa393fdfbb"/><file name="upgrade-0.7.0-0.8.0.php" hash="3f23d2d79ea4b93b1012194677e55da0"/><file name="upgrade-0.8.0-0.9.0.php" hash="ae7b43bf8747d56bede623e52c824597"/></dir></dir></dir></dir><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><dir name="Sales"><file name="Totals.php" hash="9d15eca76b896d950a59234c82d3786f"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="credit.xml" hash="128baf9ae30f2a2e01cd1779a9356229"/></dir><dir name="template"><dir name="kartparadigm"><dir name="storecredit"><file name="credit.phtml" hash="67a2b79a158a9b7190b1b6c6e970d7c9"/><dir name="customer"><file name="main.phtml" hash="db60ca5b83d64d2e180e84b86b48b126"/></dir><file name="payment.phtml" hash="d8c9566e168e25d371ed718e122394f9"/><file name="storecreditview.phtml" hash="81b3e839f3321b9b46ef70d80839c6a6"/><file name="transaction.phtml" hash="f2852bdefed025ee6ef326ffd990b932"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="credit.xml" hash="bdfdd8dbf648bf7846c9b4eab07a68a9"/></dir><dir name="template"><dir name="kartparadigm"><file name="mycredits.phtml" hash="8f3daee8faac9b6262eed78c33af08b1"/><file name="mytransactions.phtml" hash="f104dcf3016d7d414b139f81aa8e9517"/><file name="payment.phtml" hash="bab542921a9690d9afd006d541ac82b0"/><file name="product.phtml" hash="640ee05cb6c5ad478b3f6fffcac82764"/><file name="sendcreditsform.phtml" hash="db4cb8365272bd3e02f1976f8a542841"/><file name="totalcredits.phtml" hash="601bd8258fd0c06adcc16910db6a5037"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Kartparadigm_StoreCredit.xml" hash="01384259ebcca87af5b4e122cc95c2e8"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><file name="caritor_email_template1.html" hash="4aa55abbeb482a6b156eadcfeda159e4"/></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.6.0.0</min><max>1.9</max></package></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Kartparadigm_StoreCredit</name>
4
+ <version>1.0.0.6</version>
5
  <stability>stable</stability>
6
  <license>OSL</license>
7
  <channel>community</channel>
10
  <description>Efficiently maintain customer credits in all store views.</description>
11
  <notes>Kartparadigm Store Credit</notes>
12
  <authors><author><name>Kartparadigm</name><user>kartparadigm</user><email>kartparadigm@gmail.com</email></author></authors>
13
+ <date>2015-04-08</date>
14
+ <time>04:46:49</time>
15
+ <contents><target name="magecommunity"><dir name="Kartparadigm"><dir name="StoreCredit"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><dir name="Edit"><dir name="Tab"><dir name="Credits"><file name="List1.php" hash="44228eee4508701546e2e4f794431b14"/><file name="List.php" hash="243615c727cebfe59d273da8b85b5db0"/></dir><file name="Credits.php" hash="8af8e7e7ae5634de6b7dc6dda9349269"/></dir></dir><file name="Grid.php" hash="335c1bee870644f106315be703e4c0d0"/></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><dir name="Tab"><file name="Actions.php" hash="36fe787ce9fd4c5d6283c35c741add92"/></dir></dir></dir></dir><dir name="Registries"><dir name="Edit"><file name="Form.php" hash="a2a4f87d29506b1bfd7adf9e420a3e8d"/></dir><file name="Edit.php" hash="2328aeadf074d5e7740947b8bfc54a84"/><file name="Grid.php" hash="99fd3e2d4528bd98aeda18783c2653c0"/></dir><dir name="Registries1"><dir name="Edit"><file name="Form.php" hash="78c893545865890297ac7f4d406d9afd"/></dir><file name="Edit.php" hash="b38d2e821374c9babdbe4c8de1dd71f0"/><file name="Grid.php" hash="74af81c3af7fe14a52fc03b9d06c5c38"/></dir><file name="Registries1.php" hash="5f821c5722e3e2ec2c635f13efae5270"/><file name="Registries.php" hash="77e441d9f86462eea31cd1ab3abbc24e"/></dir><file name="Collection.php" hash="06203b41373cbb51433aaff716e54a45"/><file name="Credit.php" hash="c207b8719fa5aba99fe0f49110b71e12"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CreditsController.php" hash="9d545f6cce030f7353de9b44d1ae35c8"/><file name="CustomerController.php" hash="61e052319e374c395d521d58bb67442c"/><dir name="Promo"><file name="CatalogController.php" hash="aac0c07d33396bc86c5adcfc234838d7"/></dir><dir name="Sales"><dir name="Order"><file name="CreditmemoController.php" hash="4e971e6c64d0763a570e315ccd0d980c"/></dir></dir></dir><dir name="Checkout"><file name="OnepageController.php" hash="2a9734b2099905ba8f0fd1ac79b614c6"/></dir><file name="IndexController.php" hash="d70f263cc210ed21eee8d1564aead14d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1a78218db0c18efcf81ed04ba8b655c2"/><file name="config.xml" hash="39065261bc245ba54799940bea51d5e0"/><file name="system.xml" hash="4b4ef37096e12405ea23e9a7de8efa10"/></dir><dir name="Helper"><file name="Data.php" hash="d25b537a7ba596762dfd7a5475684ea9"/></dir><dir name="Model"><file name="Creditinfo.php" hash="a96ee7fd6d660ff6de22dbbdbc90a7ae"/><dir name="Mysql4"><dir name="Creditinfo"><file name="Collection.php" hash="6f62213e7f4f62d0f90ffaeb6ff61f03"/></dir><file name="Creditinfo.php" hash="85e01354a1e6973e74dd8fdf11af4eb8"/><dir name="Sendcreditstofriend"><file name="Collection.php" hash="93b7db3ec026d02fc205c8fc5e23630e"/></dir><file name="Sendcreditstofriend.php" hash="32be8731fb112f18d70e06e2b388ebd3"/></dir><file name="Observer.php" hash="a32fb436c0fbda27780254859e22664e"/><dir name="Resource"><file name="Rule.php" hash="b6471332cf41e96cc6e60e57505bd0f5"/><file name="Setup.php" hash="7f5ed91bf4d6ab4bc2dd3496fdf37d1c"/><file name="Transaction.php" hash="95cf90e2ab034c722109f741ca446d0e"/></dir><file name="Sendcreditstofriend.php" hash="711f4fbee2493698486fbc162e1fda6e"/><file name="Source.php" hash="8f51c351a0c8d70ac2308f5b7f39a1aa"/></dir><dir name="sql"><dir name="kartparadigm_storecredit_setup"><file name="install-0.1.0.php" hash="0e60f75abadb436a7fbc9682245773ab"/><file name="upgrade-0.1.0-0.2.0.php" hash="9e9d855251ffa1ef256e4821a5e903c9"/><file name="upgrade-0.2.0-0.3.0.php" hash="4bafbe8bba6b4d6e824487220d1b49fb"/><file name="upgrade-0.3.0-0.4.0.php" hash="1f7b1d85ca78d5d42afb5f9c064b9acd"/><file name="upgrade-0.4.0-0.5.0.php" hash="4a3ba65764d6ae5bbde2bd48dba46bdc"/><file name="upgrade-0.5.0-0.6.0.php" hash="d60d6c4631750a02202220552c73d373"/><file name="upgrade-0.6.0-0.7.0.php" hash="37acfd4ef86bc0a7d7f7deaa393fdfbb"/><file name="upgrade-0.7.0-0.8.0.php" hash="3f23d2d79ea4b93b1012194677e55da0"/><file name="upgrade-0.8.0-0.9.0.php" hash="ae7b43bf8747d56bede623e52c824597"/></dir></dir></dir></dir><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><dir name="Sales"><file name="Totals.php" hash="9d15eca76b896d950a59234c82d3786f"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="credit.xml" hash="128baf9ae30f2a2e01cd1779a9356229"/></dir><dir name="template"><dir name="kartparadigm"><dir name="storecredit"><file name="credit.phtml" hash="67a2b79a158a9b7190b1b6c6e970d7c9"/><dir name="customer"><file name="main.phtml" hash="db60ca5b83d64d2e180e84b86b48b126"/></dir><file name="payment.phtml" hash="d8c9566e168e25d371ed718e122394f9"/><file name="storecreditview.phtml" hash="81b3e839f3321b9b46ef70d80839c6a6"/><file name="transaction.phtml" hash="f2852bdefed025ee6ef326ffd990b932"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="credit.xml" hash="bdfdd8dbf648bf7846c9b4eab07a68a9"/></dir><dir name="template"><dir name="kartparadigm"><file name="mycredits.phtml" hash="8f3daee8faac9b6262eed78c33af08b1"/><file name="mytransactions.phtml" hash="f104dcf3016d7d414b139f81aa8e9517"/><file name="payment.phtml" hash="bab542921a9690d9afd006d541ac82b0"/><file name="product.phtml" hash="640ee05cb6c5ad478b3f6fffcac82764"/><dir name="rma"><file name="returnlink.phtml" hash="6c86fdf1ca02dd760eed26f7583562f3"/><file name="returnlink.phtml~" hash="6c86fdf1ca02dd760eed26f7583562f3"/><file name="return-requestform.phtml" hash="da8d518c42188151a60d1b27f1f6a8b2"/><file name="return-requestform.phtml~" hash="da8d518c42188151a60d1b27f1f6a8b2"/></dir><file name="sendcreditsform.phtml" hash="db4cb8365272bd3e02f1976f8a542841"/><file name="totalcredits.phtml" hash="601bd8258fd0c06adcc16910db6a5037"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Kartparadigm_StoreCredit.xml" hash="01384259ebcca87af5b4e122cc95c2e8"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><file name="caritor_email_template1.html" hash="4aa55abbeb482a6b156eadcfeda159e4"/><file name="caritor_email_template.html" hash="88f3d40c0d0eeba73a34a63577ade965"/></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.6.0.0</min><max>1.9</max></package></required></dependencies>
18
  </package>