Commit 272fbd00 by Yvon

improve month display in export ccas email

parent 4f738436
...@@ -9,6 +9,7 @@ use App\Entity\GlobalParameter; ...@@ -9,6 +9,7 @@ use App\Entity\GlobalParameter;
use App\Entity\Prestataire; use App\Entity\Prestataire;
use App\Utils\CustomEntityManager; use App\Utils\CustomEntityManager;
use App\Utils\OperationUtils; use App\Utils\OperationUtils;
use IntlDateFormatter;
use NumberFormatter; use NumberFormatter;
use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputInterface;
...@@ -57,8 +58,7 @@ class SendCcasTransactionsExportToPrestatairesCommand extends Command ...@@ -57,8 +58,7 @@ class SendCcasTransactionsExportToPrestatairesCommand extends Command
/** /**
* @param Prestataire $p * @param Prestataire $p
* @param int $month * @param $monthYearStr
* @param $year
* @param $montant * @param $montant
* @param $path * @param $path
* *
...@@ -66,10 +66,10 @@ class SendCcasTransactionsExportToPrestatairesCommand extends Command ...@@ -66,10 +66,10 @@ class SendCcasTransactionsExportToPrestatairesCommand extends Command
* @throws RuntimeError * @throws RuntimeError
* @throws SyntaxError * @throws SyntaxError
*/ */
public function prepareMail(Prestataire $p, int $month, $year, $montant): \Swift_Message public function prepareMail(Prestataire $p, $monthYearStr, $montant): \Swift_Message
{ {
$this->io->text('Envoi du mail pour le prestataire ' . $p->getRaison()); $this->io->text('Envoi du mail pour le prestataire ' . $p->getRaison());
$subject = "Expérimentation de Sécurité Sociale de l’Alimentation en Gironde – Facture CCAS $month/$year"; $subject = "Expérimentation de Sécurité Sociale de l’Alimentation en Gironde – Facture CCAS $monthYearStr";
$globalParamRepo = $this->em->getRepository(GlobalParameter::class); $globalParamRepo = $this->em->getRepository(GlobalParameter::class);
$mail = (new \Swift_Message($subject)) $mail = (new \Swift_Message($subject))
->setFrom($globalParamRepo->val(GlobalParameter::MLC_NOTIF_EMAIL)) ->setFrom($globalParamRepo->val(GlobalParameter::MLC_NOTIF_EMAIL))
...@@ -79,10 +79,9 @@ class SendCcasTransactionsExportToPrestatairesCommand extends Command ...@@ -79,10 +79,9 @@ class SendCcasTransactionsExportToPrestatairesCommand extends Command
$this->templating->render( $this->templating->render(
'@kohinos/email/tav/ccas_transactions.html.twig', '@kohinos/email/tav/ccas_transactions.html.twig',
[ [
'subject' => "Facture CCAS $month/$year", 'subject' => "Facture CCAS $monthYearStr",
'montant' => $montant, 'montant' => $montant,
'month' => $month, 'monthyear' => $monthYearStr
'year' => $year,
] ]
), ),
'text/html' 'text/html'
...@@ -200,19 +199,24 @@ class SendCcasTransactionsExportToPrestatairesCommand extends Command ...@@ -200,19 +199,24 @@ class SendCcasTransactionsExportToPrestatairesCommand extends Command
$prestaRepo = $this->em->getRepository(Prestataire::class); $prestaRepo = $this->em->getRepository(Prestataire::class);
$prestas = $prestaid ? [0 => $prestaRepo->find($prestaid)] : $prestaRepo->findAll(); $prestas = $prestaid ? [0 => $prestaRepo->find($prestaid)] : $prestaRepo->findAll();
$dateFormatter = new IntlDateFormatter('fr_FR', IntlDateFormatter::NONE, IntlDateFormatter::NONE);
$dateFormatter->setPattern("MMMM Y");
$date = new \DateTime();
if ($yearmonth) { if ($yearmonth) {
$year = substr($yearmonth, 0, 4); $year = substr($yearmonth, 0, 4);
$month = intval(substr($yearmonth, 4, 2)); $month = intval(substr($yearmonth, 4, 2));
$date->setDate(intval($year),$month,1);
$monthYearStr = $dateFormatter->format($date);
} else { } else {
$now = new \DateTime(); $date->modify('previous month');
$now->modify('previous month'); $year = $date->format('Y');
$year = $now->format('Y'); $month = intval($date->format('m'));
$month = intval($now->format('m')); $monthYearStr = $dateFormatter->format($date);
} }
$this->io->title( $this->io->title(
'START. Préparation des exports pour ' . count($prestas) . ' prestataires ' 'START. Préparation des exports pour ' . count($prestas) . ' prestataires '
. 'contenant les transactions CCAS du mois ' . $month . ' de l\'année ' . $year . 'contenant les transactions CCAS pour ' . $monthYearStr
); );
//projectDir is composer.json //projectDir is composer.json
...@@ -238,7 +242,7 @@ class SendCcasTransactionsExportToPrestatairesCommand extends Command ...@@ -238,7 +242,7 @@ class SendCcasTransactionsExportToPrestatairesCommand extends Command
//Send mail as soon as there are data or prestataire is CCAS OK //Send mail as soon as there are data or prestataire is CCAS OK
//If there is no data, just inform there is nothing to do //If there is no data, just inform there is nothing to do
if ($data || $p->getCcasOk()) { if ($data || $p->getCcasOk()) {
$mail = $this->prepareMail($p, $month, $year, $prestaTotal); $mail = $this->prepareMail($p, $monthYearStr, $prestaTotal);
if ($path) { if ($path) {
$mail->attach(\Swift_Attachment::fromPath($path)); $mail->attach(\Swift_Attachment::fromPath($path));
} }
......
...@@ -11,8 +11,8 @@ ...@@ -11,8 +11,8 @@
</p> </p>
{% if montant > 0 %} {% if montant > 0 %}
<p> <p>
Vous trouverez ci-joint l’état mensuel des dépenses en MonA réalisées au cours du mois Vous trouverez ci-joint l’état mensuel des dépenses en MonA en
{{ month }}/{{ year }} dans votre point de vente par les allocataires du dispositif de Sécurité Sociale {{ monthyear }} dans votre point de vente par les allocataires du dispositif de Sécurité Sociale
de l'Alimentation en Gironde, pour un montant de {{ montant }} euros. de l'Alimentation en Gironde, pour un montant de {{ montant }} euros.
</p> </p>
<p> <p>
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
</ul> </ul>
{% else %} {% else %}
<p> <p>
Pour information, au cours du mois {{ month }}/{{ year }}, Pour information, en {{ monthyear }},
vous n'avez pas réalisé de transaction éligible aux reconversions CCAS et vous n'avez donc rien à faire de plus. vous n'avez pas réalisé de transaction éligible aux reconversions CCAS et vous n'avez donc rien à faire de plus.
</p> </p>
{% endif %} {% endif %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment