Merge branch 'ticket-14273-voucher' into develop

This commit is contained in:
Michael RICOIS 2017-10-27 14:46:36 +02:00
commit 7854985496
5 changed files with 100 additions and 3 deletions

View File

@ -0,0 +1,40 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Message de {shop_name}</title>
</head>
<body>
<table style="font-family: tahoma,arial,sans-serif; font-size: 12px; color:#000000; width: 550px;">
<tr>
<td align="left">
<a href="{shop_url}" title="{shop_name}"><img alt="{shop_name}" src="{shop_logo}" style="border:none;" ></a>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">Bonjour <strong>{firstname} {lastname}</strong>,</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
Nous venons de procéder au remboursement de votre commande. Vous aviez utilisé, au moment de passer votre commande, un bon de réduction.
<br>Nous vous informons qu'un nouveau bon de réduction vous a été attribué {voucher_num}.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
Cordialement,<br />
Le service client
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size: 12px; border-top: 1px solid #cccccc; padding-top: 5px;">
{shop_name} - <a href="{shop_url}" style="color: #e26ea2;">{shop_url}</a>
</td>
</tr>
</table>
</body>
</html>

View File

@ -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

View File

@ -0,0 +1,40 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Message de {shop_name}</title>
</head>
<body>
<table style="font-family: tahoma,arial,sans-serif; font-size: 12px; color: #000000; width: 550px;">
<tbody>
<tr>
<td align="left"><a title="{shop_name}" href="{shop_url}"><img style="border: none;" src="{shop_logo}" alt="{shop_name}" /></a></td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td align="left">Bonjour <strong>{firstname} {lastname}</strong>,</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td align="left">Nous venons de proc&eacute;der au remboursement de votre commande. Vous aviez utilis&eacute;, au moment de passer votre commande, un bon de r&eacute;duction. <br />Nous vous informons qu&#039;un nouveau bon de r&eacute;duction vous a &eacute;t&eacute; attribu&eacute; {voucher_num}.</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td align="left">Cordialement,<br /> Le service client</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td style="font-size: 12px; border-top: 1px solid #cccccc; padding-top: 5px;" align="center">{shop_name} - <a style="color: #e26ea2;" href="{shop_url}">{shop_url}</a></td>
</tr>
</tbody>
</table>
</body>
</html>

View File

@ -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

View File

@ -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;