Browse Source

[backend] Correction bug cron/process-orders (paiement automatique des commandes)

refactoring
Guillaume Bourgeois 5 years ago
parent
commit
e6c217df5b
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      common/mail/cronOrdersSummary-html.php
  2. +2
    -2
      common/mail/cronOrdersSummary-text.php

+ 2
- 2
common/mail/cronOrdersSummary-html.php View File

termes. termes.
*/ */


if(count($commandes)):
if(count($orders)):
?> ?>


<p>Bonjour,</p> <p>Bonjour,</p>
<p>Voici en pièce jointe le récapitulatif des <?= count($commandes) ?> commandes du <?= date('d/m',strtotime($date)) ?>.</p>
<p>Voici en pièce jointe le récapitulatif des <?= count($orders) ?> commandes du <?= date('d/m',strtotime($date)) ?>.</p>
<p>À bientôt.</p> <p>À bientôt.</p>


<?php else: ?> <?php else: ?>

+ 2
- 2
common/mail/cronOrdersSummary-text.php View File

termes. termes.
*/ */


if(count($commandes)):
if(count($orders)):
?> ?>


Bonjour, Bonjour,


Voici en pièce jointe le récapitulatif des <?= count($commandes) ?> commandes du <?= date('d/m',strtotime($date)) ?>.
Voici en pièce jointe le récapitulatif des <?= count($orders) ?> commandes du <?= date('d/m',strtotime($date)) ?>.


À bientôt. À bientôt.



Loading…
Cancel
Save