diff --git a/mails/en/voucher_after_refund.html b/mails/en/voucher_after_refund.html
new file mode 100644
index 00000000..106ed72a
--- /dev/null
+++ b/mails/en/voucher_after_refund.html
@@ -0,0 +1,40 @@
+
+
+
+
+ Message de {shop_name}
+
+
+
+
+
+
+ |
+
+ |
+
+ Bonjour {firstname} {lastname}, |
+
+ |
+
+
+ Nous venons de procéder au remboursement de votre commande. Vous aviez utilisé, au moment de passer votre commande, un bon de réduction.
+ Nous vous informons qu'un nouveau bon de réduction vous a été attribué {voucher_num}.
+ |
+
+ |
+
+
+ Cordialement,
+ Le service client
+ |
+
+ |
+
+
+ {shop_name} - {shop_url}
+ |
+
+
+
+
\ No newline at end of file
diff --git a/mails/en/voucher_after_refund.txt b/mails/en/voucher_after_refund.txt
new file mode 100644
index 00000000..5474af20
--- /dev/null
+++ b/mails/en/voucher_after_refund.txt
@@ -0,0 +1,7 @@
+Bonjour {firstname} {lastname},
+
+Nous venons de procéder au remboursement de votre commande. Vous aviez utilisé, au moment de passer votre commande, un bon de réduction.
+Nous vous informons qu'un nouveau bon de réduction vous a été attribué {voucher_num}.
+
+Cordialement,
+Le service client
\ No newline at end of file
diff --git a/mails/fr/voucher_after_refund.html b/mails/fr/voucher_after_refund.html
new file mode 100755
index 00000000..1f12e25a
--- /dev/null
+++ b/mails/fr/voucher_after_refund.html
@@ -0,0 +1,40 @@
+
+
+
+
+ Message de {shop_name}
+
+
+
+
+
+ |
+
+
+ |
+
+
+Bonjour {firstname} {lastname}, |
+
+
+ |
+
+
+Nous venons de procéder au remboursement de votre commande. Vous aviez utilisé, au moment de passer votre commande, un bon de réduction. Nous vous informons qu'un nouveau bon de réduction vous a été attribué {voucher_num}. |
+
+
+ |
+
+
+Cordialement, Le service client |
+
+
+ |
+
+
+{shop_name} - {shop_url} |
+
+
+
+
+
\ No newline at end of file
diff --git a/mails/fr/voucher_after_refund.txt b/mails/fr/voucher_after_refund.txt
new file mode 100755
index 00000000..5950cd05
--- /dev/null
+++ b/mails/fr/voucher_after_refund.txt
@@ -0,0 +1,7 @@
+Bonjour {firstname} {lastname},
+
+Nous venons de procéder au remboursement de votre commande. Vous aviez utilisé, au moment de passer votre commande, un bon de réduction.
+Nous vous informons qu'un nouveau bon de réduction vous a été attribué {voucher_num}.
+
+Cordialement,
+Le service client
\ No newline at end of file
diff --git a/modules/ant_refund_discount/ant_refund_discount.php b/modules/ant_refund_discount/ant_refund_discount.php
index 3a1bbc76..4d84e529 100644
--- a/modules/ant_refund_discount/ant_refund_discount.php
+++ b/modules/ant_refund_discount/ant_refund_discount.php
@@ -117,12 +117,15 @@ class Ant_Refund_Discount extends Module
$voucher->active = 1;
$voucher->cart_display = $item->cart_display;
- $now = time();
$start = new DateTime($item->date_from);
$end = new DateTime($item->date_to);
$interval = $start->diff($end);
- $voucher->date_from = date('Y-m-d H:i:s', $now);
- $voucher->date_to = date('Y-m-d H:i:s', $now + $interval);
+
+ $newStart = new DateTime();
+ $newEnd = new DateTime();
+ $newEnd->add($interval);
+ $voucher->date_from = date('Y-m-d H:i:s', $newStart->format('Y-m-d H:i:s'));
+ $voucher->date_to = date('Y-m-d H:i:s', $newEnd->format('Y-m-d H:i:s'));
if (!$voucher->validateFieldsLang(false) OR !$voucher->add()) {
return false;