Ajout et mutualisation contrôles saisie
This commit is contained in:
parent
061a27d40d
commit
d189f6d4c4
|
@ -0,0 +1,36 @@
|
||||||
|
{{* -*- brindille -*- *}}
|
||||||
|
|
||||||
|
{{*
|
||||||
|
vérifier :
|
||||||
|
- que le compte débute par le préfixe corect
|
||||||
|
(20 ou 21 pour un compte d'immo, 280 ou 281 pour un compte d'amortissement)
|
||||||
|
- est présent dans le PC indiqué
|
||||||
|
paramètres :
|
||||||
|
- account : tableau avec un identifiant de compte
|
||||||
|
- chart_id : identifiant de plan comptable
|
||||||
|
- prefix_array : tableau des préfixes
|
||||||
|
résultat :
|
||||||
|
- account_ok
|
||||||
|
*}}
|
||||||
|
|
||||||
|
{{#foreach from=$account key="account_code"}}
|
||||||
|
{{:assign account_code=$account_code}}
|
||||||
|
{{/foreach}}
|
||||||
|
|
||||||
|
{{:assign condition=" AND ("}}
|
||||||
|
{{#foreach from=$prefix_array item="code"}}
|
||||||
|
{{:assign condition=$condition|cat:" code LIKE "|cat:$code|cat:" OR "}}
|
||||||
|
{{/foreach}}
|
||||||
|
{{:assign condition=$condition|cat:"0)"}}
|
||||||
|
|
||||||
|
{{#sql
|
||||||
|
select="code"
|
||||||
|
tables="acc_accounts"
|
||||||
|
where="id_chart = :id_chart %s"|args:$condition
|
||||||
|
:id_chart = $selected_chart|intval
|
||||||
|
}}
|
||||||
|
{{if $account_code == $code}}
|
||||||
|
{{:assign account_ok=1}}
|
||||||
|
{{:break}}
|
||||||
|
{{/if}}
|
||||||
|
{{/sql}}
|
|
@ -0,0 +1,23 @@
|
||||||
|
{{* -*- brindille -*- *}}
|
||||||
|
|
||||||
|
{{*
|
||||||
|
vérifier que la date est située dans un exercice ouvert
|
||||||
|
paramètres :
|
||||||
|
- date
|
||||||
|
résultat : open_years, selected_year, selected_chart
|
||||||
|
*}}
|
||||||
|
|
||||||
|
{{:assign open_years=""}}
|
||||||
|
{{#years closed=false}}
|
||||||
|
{{:assign open_years=$open_years|cat:"\n"|cat:" - "|cat:$label|cat:" : "}}
|
||||||
|
{{:assign debut=$start_date|date_short}}
|
||||||
|
{{:assign fin=$end_date|date_short}}
|
||||||
|
{{:assign open_years=$open_years|cat:$debut|cat:" à "|cat:$fin}}
|
||||||
|
{{if
|
||||||
|
$start_date|strtotime <= $date|parse_date|strtotime &&
|
||||||
|
$end_date|strtotime >= $date|parse_date|strtotime
|
||||||
|
}}
|
||||||
|
{{:assign selected_year=$id}}
|
||||||
|
{{:assign selected_chart=$id_chart}}
|
||||||
|
{{/if}}
|
||||||
|
{{/years}}
|
|
@ -10,20 +10,8 @@
|
||||||
{{#form on="add"}}
|
{{#form on="add"}}
|
||||||
|
|
||||||
{{* vérifier que la date est située dans un exercice ouvert *}}
|
{{* vérifier que la date est située dans un exercice ouvert *}}
|
||||||
{{:assign open_years=""}}
|
{{:include file="_check_date.html" date=$_POST.date keep="open_years, selected_year, selected_chart"}}
|
||||||
{{#years closed=false}}
|
|
||||||
{{:assign open_years=$open_years|cat:"\n"|cat:" - "|cat:$label|cat:" : "}}
|
|
||||||
{{:assign debut=$start_date|date_short}}
|
|
||||||
{{:assign fin=$end_date|date_short}}
|
|
||||||
{{:assign open_years=$open_years|cat:$debut|cat:" à "|cat:$fin}}
|
|
||||||
{{if
|
|
||||||
$start_date|strtotime <= $_POST.date|parse_date|strtotime &&
|
|
||||||
$end_date|strtotime >= $_POST.date|parse_date|strtotime
|
|
||||||
}}
|
|
||||||
{{:assign selected_year=$id}}
|
|
||||||
{{:assign selected_chart=$id_chart}}
|
|
||||||
{{/if}}
|
|
||||||
{{/years}}
|
|
||||||
{{if $selected_year == null}}
|
{{if $selected_year == null}}
|
||||||
{{:assign message="La date choisie n'est dans aucun exercice ouvert !!\nExercices ouverts : %s"|args:$open_years}}
|
{{:assign message="La date choisie n'est dans aucun exercice ouvert !!\nExercices ouverts : %s"|args:$open_years}}
|
||||||
{{:error message=$message}}
|
{{:error message=$message}}
|
||||||
|
@ -33,23 +21,15 @@
|
||||||
- que le compte d'immo débute par 20 ou 21
|
- que le compte d'immo débute par 20 ou 21
|
||||||
- est présent dans le PC de l'exercice correspondant à la date
|
- est présent dans le PC de l'exercice correspondant à la date
|
||||||
*}}
|
*}}
|
||||||
{{#foreach from=$_POST.debit_account key="account_code"}}
|
{{:assign var="prefix_array." value="'20%'"}}
|
||||||
{{:assign account_code=$account_code}}
|
{{:assign var="prefix_array." value="'21%'"}}
|
||||||
{{/foreach}}
|
{{:include
|
||||||
|
file="_check_account.html"
|
||||||
{{#select
|
account=$_POST.debit_account
|
||||||
code
|
chart_id=$selected_chart
|
||||||
FROM acc_accounts
|
prefix_array=$prefix_array
|
||||||
WHERE id_chart = :id_chart
|
keep="account_ok"
|
||||||
AND
|
}}
|
||||||
(code LIKE "20%" OR code LIKE "21%");
|
|
||||||
:id_chart = $selected_chart|intval
|
|
||||||
}}
|
|
||||||
{{if $account_code == $code}}
|
|
||||||
{{:assign account_ok=1}}
|
|
||||||
{{:break}}
|
|
||||||
{{/if}}
|
|
||||||
{{/select}}
|
|
||||||
|
|
||||||
{{if $account_ok == null}}
|
{{if $account_ok == null}}
|
||||||
{{:assign compte=$_POST.debit_account|implode:""}}
|
{{:assign compte=$_POST.debit_account|implode:""}}
|
||||||
|
|
|
@ -214,7 +214,7 @@
|
||||||
{{if $enregistrer == 1}}
|
{{if $enregistrer == 1}}
|
||||||
{{:linkbutton
|
{{:linkbutton
|
||||||
label="Enregistrer"
|
label="Enregistrer"
|
||||||
href="save_amort.html?amount=%d&account=%s&year=%s&trans_id=%d&immo_id=%s&project_id=%d&label=%s"|args:$annuite_courante:$ligne_immo.account_id:$current_year:$ligne_immo.trans_id:$_GET.immo_id:$project_id:$libelle
|
href="save_amort.html?amount=%d&account=%s&year=%s&trans_id=%d&immo_id=%s&project_id=%d&label=%s&solde=%d"|args:$annuite_courante:$ligne_immo.account_id:$current_year:$ligne_immo.trans_id:$_GET.immo_id:$project_id:$libelle:$solde
|
||||||
shape="right"
|
shape="right"
|
||||||
target="_dialog"
|
target="_dialog"
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -9,6 +9,40 @@
|
||||||
|
|
||||||
{{* Traiter l'envoi du formulaire *}}
|
{{* Traiter l'envoi du formulaire *}}
|
||||||
{{#form on="save"}}
|
{{#form on="save"}}
|
||||||
|
|
||||||
|
{{* vérifier que la date est située dans un exercice ouvert *}}
|
||||||
|
{{:include file="_check_date.html" date=$_POST.date keep="open_years, selected_year, selected_chart"}}
|
||||||
|
|
||||||
|
{{if $selected_year == null}}
|
||||||
|
{{:assign message="La date choisie n'est dans aucun exercice ouvert !!\nExercices ouverts : %s"|args:$open_years}}
|
||||||
|
{{:error message=$message}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{* vérifier :
|
||||||
|
- que le compte d'amortissement débute par 280 ou 281
|
||||||
|
- est présent dans le PC de l'exercice correspondant à la date
|
||||||
|
*}}
|
||||||
|
{{:assign var="prefix_array." value="'280%'"}}
|
||||||
|
{{:assign var="prefix_array." value="'281%'"}}
|
||||||
|
{{:include
|
||||||
|
file="_check_account.html"
|
||||||
|
account=$_POST.credit_account
|
||||||
|
chart_id=$selected_chart
|
||||||
|
prefix_array=$prefix_array
|
||||||
|
keep="account_ok"
|
||||||
|
}}
|
||||||
|
|
||||||
|
{{if $account_ok == null}}
|
||||||
|
{{:assign compte=$_POST.credit_account|implode:""}}
|
||||||
|
{{:error message="Le compte « %s » n'est pas un compte d'immobilisation ou n'est pas dans le plan comptable de l'exercice choisi"|args:$compte}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{* vérifier que le montant ne dépasse pas le solde restant *}}
|
||||||
|
{{:assign solde="%f/100"|math:$_GET.solde}}
|
||||||
|
{{if $_POST.montant > $solde}}
|
||||||
|
{{:error message="Le montant indiqué « %s » dépasse le solde à amortir « %s »"|args:$_POST.montant:$solde}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{* enregistrer l'écriture *}}
|
{{* enregistrer l'écriture *}}
|
||||||
{{:assign var="linked_transactions." value=$_GET.trans_id}}
|
{{:assign var="linked_transactions." value=$_GET.trans_id}}
|
||||||
|
|
||||||
|
@ -32,7 +66,7 @@
|
||||||
path="accounting/transaction"
|
path="accounting/transaction"
|
||||||
assign="result"
|
assign="result"
|
||||||
assign_code="result_code"
|
assign_code="result_code"
|
||||||
id_year=$_POST.id_year|intval
|
id_year=$selected_year
|
||||||
type="advanced"
|
type="advanced"
|
||||||
date=$_POST.date
|
date=$_POST.date
|
||||||
label=$_POST.designation
|
label=$_POST.designation
|
||||||
|
@ -43,6 +77,8 @@
|
||||||
{{:redirect force="amortization.html?immo_id=%s&ok=1&msg=amortissement"|args:$_GET.immo_id}}
|
{{:redirect force="amortization.html?immo_id=%s&ok=1&msg=amortissement"|args:$_GET.immo_id}}
|
||||||
{{/form}}
|
{{/form}}
|
||||||
|
|
||||||
|
{{:form_errors}}
|
||||||
|
|
||||||
{{* Préparer les infos pour le formulaire *}}
|
{{* Préparer les infos pour le formulaire *}}
|
||||||
{{:assign var="debit_account.6811" value="6811 — Dot. aux amortissements des immobilisations"}}
|
{{:assign var="debit_account.6811" value="6811 — Dot. aux amortissements des immobilisations"}}
|
||||||
|
|
||||||
|
@ -73,7 +109,6 @@
|
||||||
<fieldset class="ajout_amort">
|
<fieldset class="ajout_amort">
|
||||||
<legend>Ajouter une écriture d'amortissement</legend>
|
<legend>Ajouter une écriture d'amortissement</legend>
|
||||||
<dl>
|
<dl>
|
||||||
{{:input type="select" default=$year.id name="id_year" label="Exercice" required=true options=$open_years}}
|
|
||||||
{{:input type="date" name="date" label="Date" required=true default=$year.date_amort|date_short}}
|
{{:input type="date" name="date" label="Date" required=true default=$year.date_amort|date_short}}
|
||||||
{{:input type="text" name="designation" label="Désignation" required=true default=$_GET.label}}
|
{{:input type="text" name="designation" label="Désignation" required=true default=$_GET.label}}
|
||||||
{{:input type="money" name="montant" label="Montant" required=true default=$_GET.amount}}
|
{{:input type="money" name="montant" label="Montant" required=true default=$_GET.amount}}
|
||||||
|
|
Loading…
Reference in New Issue