Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
kohinos-tav
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
agplv3
kohinos-tav
Commits
52b57d19
Commit
52b57d19
authored
May 13, 2024
by
Yvon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add cron section in install.md + add comments in commands
parent
2e3eb012
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
18 deletions
+30
-18
INSTALL.md
INSTALL.md
+21
-0
ReconversionCcasMonaPrestatairesCommand.php
src/Command/ReconversionCcasMonaPrestatairesCommand.php
+3
-5
ReconversionMonaPrestatairesCommand.php
src/Command/ReconversionMonaPrestatairesCommand.php
+0
-9
SendCcasTransactionsExportToPrestatairesCommand.php
...mmand/SendCcasTransactionsExportToPrestatairesCommand.php
+6
-4
No files found.
INSTALL.md
View file @
52b57d19
...
@@ -168,6 +168,27 @@ EN CAS D'ERREUR 500 :
...
@@ -168,6 +168,27 @@ EN CAS D'ERREUR 500 :
Pour cela on peut utiliser la commande suivante :
Pour cela on peut utiliser la commande suivante :
**tail -f var/log/prod.xxx.log | grep CRITICAL**
**tail -f var/log/prod.xxx.log | grep CRITICAL**
## Mettre en place les CRON jobs
Ecrire dans un fichier tav dans /etc/cron.d :
Quand TAV_ENV = 1, pour envoyer les rappels de cotisation :
42 0 * * * kohinos php /home/kohinos/kohinos/bin/console kohinos:tav:mail-rappel-cotisation
Quand AUTOMATISATION_RECONVERSION = 1, pour que les reconversions aient lieu les dimanches soir qui précèdent les 14 et/ou 28 :
15 23 * * 0 kohinos [ "$(date +\%d)" -ge 08 -a "$(date +\%d)" -le 14 ] && php /home/kohinos/kohinos/bin/console kohinos:ssa:reconversion-prestataires twice_a_month
15 23 * * 0 kohinos [ "$(date +\%d)" -ge 22 -a "$(date +\%d)" -le 28 ] && php /home/kohinos/kohinos/bin/console kohinos:ssa:reconversion-prestataires twice_a_month
17 23 * * 0 kohinos [ "$(date +\%d)" -ge 22 -a "$(date +\%d)" -le 28 ] && php /home/kohinos/kohinos/bin/console kohinos:ssa:reconversion-prestataires once_a_month
19 23 * 1,3,5,7,9,11 0 kohinos [ "$(date +\%d)" -ge 22 -a "$(date +\%d)" -le 28 ] && php /home/kohinos/kohinos/bin/console kohinos:ssa:reconversion-prestataires once_every_two_month
Quand CCAS_MODE = 1, pour que les reconversions CCAS soient effectuées et les exports envoyés puis effacés du disque le 1 du mois :
47 1 1 * * kohinos php /home/kohinos/kohinos/bin/console kohinos:ssa:reconversion-ccas-prestataires
57 1 1 * * kohinos php /home/kohinos/kohinos/bin/console kohinos:ssa:export-ccas-transactions
27 2 1 * * kohinos rm -f /home/kohinos/kohinos/ccastransactions/*
## Lancer le Kohinos en local
## Lancer le Kohinos en local
Installer le client symfony
Installer le client symfony
...
...
src/Command/ReconversionCcasMonaPrestatairesCommand.php
View file @
52b57d19
...
@@ -19,15 +19,13 @@ use Symfony\Component\Console\Style\SymfonyStyle;
...
@@ -19,15 +19,13 @@ use Symfony\Component\Console\Style\SymfonyStyle;
use
Twig\Environment
;
use
Twig\Environment
;
/**
/**
* This command is part of the CCAS reconversion process.
* @see SendCcasTransactionsExportToPrestataire for more comments.
*
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
*/
*/
class
ReconversionCcasMonaPrestatairesCommand
extends
Command
class
ReconversionCcasMonaPrestatairesCommand
extends
Command
{
{
//Les reconversions doivent avoir lieu le premier jour du mois
// On utilise le cron suivant :
//47 1 1 * * kohinos php /home/kohinos/kohinos/bin/console kohinos:ssa:reconversion-ccas-prestataires
protected
static
$defaultName
=
'kohinos:ssa:reconversion-ccas-prestataires'
;
protected
static
$defaultName
=
'kohinos:ssa:reconversion-ccas-prestataires'
;
protected
$em
;
protected
$em
;
...
...
src/Command/ReconversionMonaPrestatairesCommand.php
View file @
52b57d19
...
@@ -24,15 +24,6 @@ use Twig\Environment;
...
@@ -24,15 +24,6 @@ use Twig\Environment;
*/
*/
class
ReconversionMonaPrestatairesCommand
extends
Command
class
ReconversionMonaPrestatairesCommand
extends
Command
{
{
//Les reconversions doivent avoir lieu les dimanches soir qui précèdent les 14 et 28.
// On utilise les crons suivants :
//15 23 * * 0 kohinos [ "$(date +\%d)" -ge 08 -a "$(date +\%d)" -le 14 ] && php /home/kohinos/kohinos/bin/console kohinos:ssa:reconversion-prestataires twice_a_month
//15 23 * * 0 kohinos [ "$(date +\%d)" -ge 22 -a "$(date +\%d)" -le 28 ] && php /home/kohinos/kohinos/bin/console kohinos:ssa:reconversion-prestataires twice_a_month
//17 23 * * 0 kohinos [ "$(date +\%d)" -ge 22 -a "$(date +\%d)" -le 28 ] && php /home/kohinos/kohinos/bin/console kohinos:ssa:reconversion-prestataires once_a_month
//19 23 * 1,3,5,7,9,11 0 kohinos [ "$(date +\%d)" -ge 22 -a "$(date +\%d)" -le 28 ] && php /home/kohinos/kohinos/bin/console kohinos:ssa:reconversion-prestataires once_every_two_month
protected
static
$defaultName
=
'kohinos:ssa:reconversion-prestataires'
;
protected
static
$defaultName
=
'kohinos:ssa:reconversion-prestataires'
;
protected
$em
;
protected
$em
;
...
...
src/Command/SendCcasTransactionsExportToPrestatairesCommand.php
View file @
52b57d19
...
@@ -22,14 +22,16 @@ use Twig\Error\RuntimeError;
...
@@ -22,14 +22,16 @@ use Twig\Error\RuntimeError;
use
Twig\Error\SyntaxError
;
use
Twig\Error\SyntaxError
;
/**
/**
* This command is part of the CCAS reconversion process.
* It is used in conjonction with ReconversionCcasMonaPrestataires.
* It has been separated from ReconversionCcasMonaPrestataires
* so that we can replay it in case of mailing issue
* without performing the "Demande de reconversion" again.
*
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
*/
*/
class
SendCcasTransactionsExportToPrestatairesCommand
extends
Command
class
SendCcasTransactionsExportToPrestatairesCommand
extends
Command
{
{
//Les mails doivent partir le premier jour du mois
// On utilise le cron suivant :
//57 1 1 * * kohinos php /home/kohinos/kohinos/bin/console kohinos:ssa:export-ccas-transactions
protected
static
$defaultName
=
'kohinos:ssa:export-ccas-transactions'
;
protected
static
$defaultName
=
'kohinos:ssa:export-ccas-transactions'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment