Skip to content

Commit 24f4231

Browse files
committed
Ajout de la colonne EX OM à la table des propriétés baties
Affichage de l'Indicateur imposition aux Ordures Ménagères (D, E, V ou blanc) pour les propriétés baties (EX OM) et suppression de la colonne de coefficient de réductio (COEF REDUC). Funded by SDEC énergie https://www.sdec-energie.fr/ Funded by Conseil Départemental du Calvados https://www.calvados.fr/
1 parent 2558472 commit 24f4231

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Unreleased
44

55
* bugfix - La colonne RC TEOM au tableau des propriétés baties est le champs `baeteom` et pas `mvltieomx` de `pevtaxation`
6+
* Ajout de la colonne EX OM au tableau des propriétés baties
67

78
## 1.17.1 - 2022-12-15
89

cadastre/cadastre_export.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def set_composer_templates(self, compte_communal):
249249
'proprietes_baties_line': {
250250
'names': ['section', 'ndeplan', 'ndevoirie', 'adresse', 'coderivoli', 'bat', 'ent', 'niv', 'ndeporte',
251251
'numeroinvar', 'star', 'meval', 'af', 'natloc', 'cat', 'revenucadastral', 'coll', 'natexo',
252-
'anret', 'andeb', 'fractionrcexo', 'pourcentageexo', 'txom', 'coefreduc', 'rcteom'],
252+
'anret', 'andeb', 'fractionrcexo', 'pourcentageexo', 'txom', 'exom', 'rcteom'],
253253
'type': 'sql',
254254
'filter': 'comptecommunal',
255255
'and': {

cadastre/templates/proprietes_baties.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<td style="text-align: center;">FRACTION RC EXO</td>
4242
<td style="text-align: center;">% EXO</td>
4343
<td style="text-align: center;">TX OM</td>
44-
<td style="text-align: center;">COEF REDUC</td>
44+
<td style="text-align: center;">EX OM</td>
4545
<td style="text-align: center;">RC TEOM</td>
4646
</tr>
4747
</thead>

cadastre/templates/proprietes_baties_line.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
<td align="center">$fractionrcexo</td>
2323
<td align="center">$pourcentageexo</td>
2424
<td align="center">$txom</td>
25-
<td align="center">$coefreduc</td>
25+
<td align="center">$exom</td>
2626
<td align="right">$rcteom</td>
2727
</tr>

cadastre/templates/proprietes_baties_line.tpl.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ CASE
1010
ELSE pt.tse_bipevla
1111
END AS revenucadastral,
1212
px.ccolloc AS coll, px.gnextl AS natexo, px.janimp AS anret, px.jandeb AS andeb, Cast(px.rcexba2 * px.pexb / 100 AS numeric(10,2)) AS fractionrcexo,
13-
px.pexb AS pourcentageexo, l10.gtauom AS txom, '' AS coefreduc, pt.baeteom as rcteom
13+
px.pexb AS pourcentageexo, l10.gtauom AS txom, l10.gimtom AS exom, pt.baeteom as rcteom
1414
FROM
1515
$schema"parcelle" p
1616
INNER JOIN $schema"local00" l ON l.parcelle = p.parcelle

0 commit comments

Comments
 (0)