Compare commits
No commits in common. "d8af7ce6e727924bbfd6fa9e5486f69ac451e59a" and "457ee5f95800feecfd0b7b0f43092e6b966227b8" have entirely different histories.
d8af7ce6e7
...
457ee5f958
@ -52,7 +52,6 @@ class Utils
|
|||||||
$sql = sprintf(
|
$sql = sprintf(
|
||||||
'SELECT
|
'SELECT
|
||||||
acc_accounts.id,
|
acc_accounts.id,
|
||||||
acc_years.label,
|
|
||||||
acc_accounts.code as codeCompte,
|
acc_accounts.code as codeCompte,
|
||||||
acc_accounts.label as nomCompte
|
acc_accounts.label as nomCompte
|
||||||
FROM acc_transactions_users
|
FROM acc_transactions_users
|
||||||
@ -64,14 +63,12 @@ class Utils
|
|||||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||||
INNER JOIN acc_accounts
|
INNER JOIN acc_accounts
|
||||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
ON acc_transactions_lines.id_account = acc_accounts.id
|
||||||
INNER JOIN acc_years
|
|
||||||
ON acc_transactions.id_year = acc_years.id
|
|
||||||
WHERE
|
WHERE
|
||||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
(strftime("%%Y", acc_transactions.date) = "%d"
|
||||||
AND
|
AND
|
||||||
acc_accounts.%s
|
acc_accounts.%s
|
||||||
)
|
)
|
||||||
GROUP by acc_accounts.id
|
GROUP by acc_accounts.code
|
||||||
ORDER by acc_accounts.code',
|
ORDER by acc_accounts.code',
|
||||||
$annee,
|
$annee,
|
||||||
$db->where('code', $op, $comptes)
|
$db->where('code', $op, $comptes)
|
||||||
|
@ -118,8 +118,7 @@
|
|||||||
label="Activité « %s » - tarif « %s » ;"|args:$activite.label,$tarif.label
|
label="Activité « %s » - tarif « %s » ;"|args:$activite.label,$tarif.label
|
||||||
}
|
}
|
||||||
{/if}
|
{/if}
|
||||||
<span>compte : {$elem.codeCompte} - {$compte->nomCompte}</span>
|
<span>compte : {$elem.codeCompte} ({$compte->nomCompte})</span>
|
||||||
<span> ({$compte.label})</span>
|
|
||||||
</div>
|
</div>
|
||||||
<ul class="reduction">
|
<ul class="reduction">
|
||||||
{foreach from=$plugin_config->reduction item="reduc"}
|
{foreach from=$plugin_config->reduction item="reduc"}
|
||||||
@ -154,8 +153,7 @@
|
|||||||
label="Versements non rattachés à une activité ;"
|
label="Versements non rattachés à une activité ;"
|
||||||
}
|
}
|
||||||
<?php $compte = $lesComptes[$idCompte]; ?>
|
<?php $compte = $lesComptes[$idCompte]; ?>
|
||||||
<span>compte : {$compte.codeCompte} - {$compte.nomCompte}</span>
|
<span>compte : {$compte.codeCompte} ({$compte.nomCompte})</span>
|
||||||
<span> ({$compte.label})</span>
|
|
||||||
</div>
|
</div>
|
||||||
<ul class="reduction">
|
<ul class="reduction">
|
||||||
{foreach from=$plugin_config->reduction item="reduc"}
|
{foreach from=$plugin_config->reduction item="reduc"}
|
||||||
|
@ -34,7 +34,6 @@
|
|||||||
$tarifCourant = $versement->idTarif;
|
$tarifCourant = $versement->idTarif;
|
||||||
$personneCourante = $versement->idUser;
|
$personneCourante = $versement->idUser;
|
||||||
$compteCourant = $versement->idCompte;
|
$compteCourant = $versement->idCompte;
|
||||||
$codeCompte = $versement->codeCompte;
|
|
||||||
?>
|
?>
|
||||||
{afficher_debut_tarif versement=$versement}
|
{afficher_debut_tarif versement=$versement}
|
||||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
||||||
@ -49,7 +48,6 @@
|
|||||||
$tarifCourant = $versement->idTarif;
|
$tarifCourant = $versement->idTarif;
|
||||||
$personneCourante = $versement->idUser;
|
$personneCourante = $versement->idUser;
|
||||||
$compteCourant = $versement->idCompte;
|
$compteCourant = $versement->idCompte;
|
||||||
$codeCompte = $versement->codeCompte;
|
|
||||||
?>
|
?>
|
||||||
{afficher_debut_tarif versement=$versement}
|
{afficher_debut_tarif versement=$versement}
|
||||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
||||||
@ -62,17 +60,15 @@
|
|||||||
$pair = true;
|
$pair = true;
|
||||||
$personneCourante = $versement->idUser;
|
$personneCourante = $versement->idUser;
|
||||||
$compteCourant = $versement->idCompte;
|
$compteCourant = $versement->idCompte;
|
||||||
$codeCompte = $versement->codeCompte;
|
|
||||||
?>
|
?>
|
||||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
{afficher_debut_compte idCompte=$compteCourant}
|
||||||
{elseif $versement.codeCompte != $codeCompte}
|
{elseif $versement.idCompte != $compteCourant}
|
||||||
{fin_compte}
|
{fin_compte}
|
||||||
{* changement de compte *}
|
{* changement de compte *}
|
||||||
<?php
|
<?php
|
||||||
$pair = true;
|
$pair = true;
|
||||||
$compteCourant = $versement->idCompte;
|
$compteCourant = $versement->idCompte;
|
||||||
$codeCompte = $versement->codeCompte;
|
|
||||||
?>
|
?>
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
{afficher_debut_compte idCompte=$compteCourant}
|
||||||
{else}
|
{else}
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
form="versements_personnes"
|
form="versements_personnes"
|
||||||
formaction="generer_recus.php?type=personne&format=pdf"
|
formaction="generer_recus.php?type=personne&format=pdf"
|
||||||
onclick="return verifierChoix(this.form)"}
|
onclick="return verifierChoix(this.form)"}
|
||||||
{button type="submit" label="Imprimer les reçus" shape="print"
|
{button type="submit" target="_dialog" label="Imprimer les reçus" shape="print"
|
||||||
form="versements_personnes"
|
form="versements_personnes"
|
||||||
formaction="generer_recus.php?type=personne&format=print"
|
formaction="generer_recus.php?type=personne&format=print"
|
||||||
onclick="return verifierChoix(this.form)"}
|
onclick="return verifierChoix(this.form)"}
|
||||||
@ -25,14 +25,12 @@
|
|||||||
|
|
||||||
{* Itération sur les personnes *}
|
{* Itération sur les personnes *}
|
||||||
{foreach from=$lesVersements key="rang" item="versement"}
|
{foreach from=$lesVersements key="rang" item="versement"}
|
||||||
|
|
||||||
{if $rang == 0}
|
{if $rang == 0}
|
||||||
{* 1ère personne *}
|
{* 1ère personne *}
|
||||||
<?php
|
<?php
|
||||||
$pair = true;
|
$pair = true;
|
||||||
$personneCourante = $versement->idUser;
|
$personneCourante = $versement->idUser;
|
||||||
$compteCourant = $versement->idCompte;
|
$compteCourant = $versement->idCompte;
|
||||||
$codeCompte = $versement->codeCompte;
|
|
||||||
?>
|
?>
|
||||||
{afficher_debut_personne user=$personneCourante idVersement=$personneCourante}
|
{afficher_debut_personne user=$personneCourante idVersement=$personneCourante}
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
{afficher_debut_compte idCompte=$compteCourant}
|
||||||
@ -44,17 +42,15 @@
|
|||||||
$pair = true;
|
$pair = true;
|
||||||
$personneCourante = $versement->idUser;
|
$personneCourante = $versement->idUser;
|
||||||
$compteCourant = $versement->idCompte;
|
$compteCourant = $versement->idCompte;
|
||||||
$codeCompte = $versement->codeCompte;
|
|
||||||
?>
|
?>
|
||||||
{afficher_debut_personne user=$personneCourante idVersement=$personneCourante}
|
{afficher_debut_personne user=$personneCourante idVersement=$personneCourante}
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
{afficher_debut_compte idCompte=$compteCourant}
|
||||||
{elseif $versement.codeCompte != $codeCompte}
|
{elseif $versement.idCompte != $compteCourant}
|
||||||
{fin_compte}
|
{fin_compte}
|
||||||
{* changement de compte *}
|
{* changement de compte *}
|
||||||
<?php
|
<?php
|
||||||
$pair = true;
|
$pair = true;
|
||||||
$compteCourant = $versement->idCompte;
|
$compteCourant = $versement->idCompte;
|
||||||
$codeCompte = $versement->codeCompte;
|
|
||||||
?>
|
?>
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
{afficher_debut_compte idCompte=$compteCourant}
|
||||||
{else}
|
{else}
|
||||||
|
Loading…
Reference in New Issue
Block a user