Spaces:
Sleeping
Sleeping
File size: 11,452 Bytes
9d855fa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 | from __future__ import annotations
import csv
import io
import json
import re
from dataclasses import dataclass
from datetime import datetime
from decimal import Decimal
from pathlib import Path
from typing import Any
from django.utils import timezone
from .models import Transaction, User
TEMPLATES_DIR = Path(__file__).resolve().parent / "syscohada_templates"
def _load_template_json(filename: str) -> Any:
with (TEMPLATES_DIR / filename).open("r", encoding="utf-8") as f:
return json.load(f)
def _year_bounds(year: int) -> tuple[datetime, datetime]:
start = timezone.make_aware(datetime(year, 1, 1, 0, 0, 0))
end = timezone.make_aware(datetime(year + 1, 1, 1, 0, 0, 0))
return start, end
def _normalize_text(value: str | None) -> str:
return (value or "").strip().lower()
def _map_transaction_to_cr_ref(tx: Transaction) -> str:
"""
MVP mapping: map Akompta Transaction -> SYSCOHADA Compte de Résultat ref.
This is intentionally heuristic and can be replaced later by a user-configurable mapping table.
"""
category = _normalize_text(getattr(tx, "category", ""))
name = _normalize_text(getattr(tx, "name", ""))
haystack = f"{category} {name}".strip()
if tx.type == "income":
if any(k in haystack for k in ["service", "prestation", "consult"]):
return "TC" # travaux, services vendus
if any(k in haystack for k in ["produit accessoire", "accessoire"]):
return "TD"
return "TA" # ventes de marchandises
# expense
if any(k in haystack for k in ["achat", "marchandise", "appro", "approvisionnement"]):
return "RA"
if any(k in haystack for k in ["transport", "taxi", "bus", "essence", "carburant", "livraison"]):
return "RG"
if any(k in haystack for k in ["loyer", "internet", "eau", "electric", "électric", "telephone", "téléphone", "prestataire", "maintenance", "marketing", "publicit", "pub"]):
return "RH"
if any(k in haystack for k in ["impot", "impôt", "taxe", "douane", "etat", "état"]):
return "RI"
if any(k in haystack for k in ["salaire", "salaires", "personnel", "paie", "payroll"]):
return "RK"
return "RJ"
_CR_TOKEN_RE = re.compile(r"([A-Z]{1,2})|([+-])")
def _eval_cr_formula(formula: str, values: dict[str, Decimal]) -> Decimal:
"""
Evaluate formulas like: "XB-RA+RB+TE-RE" using Decimal arithmetic.
Supports only refs (A-Z, 1-2 chars) and + / -.
"""
tokens = [m.group(0) for m in _CR_TOKEN_RE.finditer(formula.replace(" ", ""))]
if not tokens:
return Decimal("0")
total = Decimal("0")
op = "+"
for tok in tokens:
if tok in {"+", "-"}:
op = tok
continue
value = values.get(tok, Decimal("0"))
total = total + value if op == "+" else total - value
return total
@dataclass(frozen=True)
class CompteResultatComputed:
year: int
values_n: dict[str, Decimal]
values_n_1: dict[str, Decimal]
resultat_net_n: Decimal
total_income_n: Decimal
total_expense_n: Decimal
total_income_n_1: Decimal
total_expense_n_1: Decimal
def compute_compte_resultat(user: User, year: int) -> CompteResultatComputed:
structure = _load_template_json("compte_resultat_structure.json")
lignes: list[dict[str, Any]] = structure["lignes"]
start_n, end_n = _year_bounds(year)
start_n_1, end_n_1 = _year_bounds(year - 1)
tx_n = Transaction.objects.filter(user=user, date__gte=start_n, date__lt=end_n).only(
"amount",
"type",
"category",
"name",
)
tx_n_1 = Transaction.objects.filter(user=user, date__gte=start_n_1, date__lt=end_n_1).only(
"amount",
"type",
"category",
"name",
)
values_n: dict[str, Decimal] = {item["ref"]: Decimal("0") for item in lignes}
values_n_1: dict[str, Decimal] = {item["ref"]: Decimal("0") for item in lignes}
total_income_n = Decimal("0")
total_expense_n = Decimal("0")
for tx in tx_n:
ref = _map_transaction_to_cr_ref(tx)
amount = Decimal(tx.amount)
values_n[ref] = values_n.get(ref, Decimal("0")) + amount
if tx.type == "income":
total_income_n += amount
else:
total_expense_n += amount
total_income_n_1 = Decimal("0")
total_expense_n_1 = Decimal("0")
for tx in tx_n_1:
ref = _map_transaction_to_cr_ref(tx)
amount = Decimal(tx.amount)
values_n_1[ref] = values_n_1.get(ref, Decimal("0")) + amount
if tx.type == "income":
total_income_n_1 += amount
else:
total_expense_n_1 += amount
# Compute total lines in order (formulas reference previous totals, order in structure matters)
for item in lignes:
if not item.get("is_total"):
continue
formula = item.get("formula") or ""
values_n[item["ref"]] = _eval_cr_formula(formula, values_n)
values_n_1[item["ref"]] = _eval_cr_formula(formula, values_n_1)
# For MVP, use the computed XI if available; fallback to income-expense.
resultat_net_n = values_n.get("XI")
if resultat_net_n is None:
resultat_net_n = total_income_n - total_expense_n
return CompteResultatComputed(
year=year,
values_n=values_n,
values_n_1=values_n_1,
resultat_net_n=resultat_net_n,
total_income_n=total_income_n,
total_expense_n=total_expense_n,
total_income_n_1=total_income_n_1,
total_expense_n_1=total_expense_n_1,
)
def generate_compte_resultat_csv(compte: CompteResultatComputed) -> bytes:
structure = _load_template_json("compte_resultat_structure.json")
lignes: list[dict[str, Any]] = structure["lignes"]
out = io.StringIO()
writer = csv.writer(out)
writer.writerow(["REF", "LIBELLES", "NUMERO DE COMPTES", "MONTANT_N", "MONTANT_N_1"])
for item in lignes:
ref = item["ref"]
writer.writerow(
[
ref,
item.get("libelle", ""),
item.get("compte", ""),
str(compte.values_n.get(ref, Decimal("0"))),
str(compte.values_n_1.get(ref, Decimal("0"))),
]
)
return out.getvalue().encode("utf-8")
def generate_bilan_csv(user: User, compte: CompteResultatComputed) -> bytes:
structure = _load_template_json("bilan_structure.json")
actif: list[dict[str, Any]] = structure["actif"]
passif: list[dict[str, Any]] = structure["passif"]
# Minimal model: only cash + equity + result to keep the bilan balanced.
cash_n = user.initial_balance + compte.total_income_n - compte.total_expense_n
cash_n_1 = user.initial_balance + compte.total_income_n_1 - compte.total_expense_n_1
capital_n = user.initial_balance
capital_n_1 = user.initial_balance
# Actif values stored by ref: BRUT, AMORT, NET_N, NET_N_1
brut: dict[str, Decimal] = {item["ref"]: Decimal("0") for item in actif}
amort: dict[str, Decimal] = {item["ref"]: Decimal("0") for item in actif}
brut["BS"] = Decimal(cash_n)
amort["BS"] = Decimal("0")
brut_n_1: dict[str, Decimal] = {item["ref"]: Decimal("0") for item in actif}
amort_n_1: dict[str, Decimal] = {item["ref"]: Decimal("0") for item in actif}
brut_n_1["BS"] = Decimal(cash_n_1)
amort_n_1["BS"] = Decimal("0")
def net_for(ref: str) -> Decimal:
return brut.get(ref, Decimal("0")) - amort.get(ref, Decimal("0"))
def net_for_n_1(ref: str) -> Decimal:
return brut_n_1.get(ref, Decimal("0")) - amort_n_1.get(ref, Decimal("0"))
# Compute header subtotals (stable SYSCOHADA groupings)
header_groups = {
"AD": ["AE", "AF", "AG", "AH"],
"AI": ["AJ", "AK", "AL", "AM", "AN", "AP"],
"AQ": ["AR", "AS"],
"BG": ["BH", "BI", "BJ"],
}
for header_ref, children in header_groups.items():
brut[header_ref] = sum((brut.get(c, Decimal("0")) for c in children), Decimal("0"))
amort[header_ref] = sum((amort.get(c, Decimal("0")) for c in children), Decimal("0"))
brut_n_1[header_ref] = sum((brut_n_1.get(c, Decimal("0")) for c in children), Decimal("0"))
amort_n_1[header_ref] = sum((amort_n_1.get(c, Decimal("0")) for c in children), Decimal("0"))
# Compute totals based on formulas (only '+' is expected in these bilan totals)
def parse_bilan_sum_formula(formula: str) -> list[str]:
return [part.strip() for part in formula.split("+") if part.strip()]
for item in actif:
if not item.get("is_total"):
continue
parts = parse_bilan_sum_formula(item.get("formula", ""))
brut[item["ref"]] = sum((brut.get(p, Decimal("0")) for p in parts), Decimal("0"))
amort[item["ref"]] = sum((amort.get(p, Decimal("0")) for p in parts), Decimal("0"))
brut_n_1[item["ref"]] = sum((brut_n_1.get(p, Decimal("0")) for p in parts), Decimal("0"))
amort_n_1[item["ref"]] = sum((amort_n_1.get(p, Decimal("0")) for p in parts), Decimal("0"))
# Passif values: NET only, but handle "negative" lines like CB by applying sign.
passif_meta: dict[str, dict[str, Any]] = {item["ref"]: item for item in passif}
net_passif_n: dict[str, Decimal] = {item["ref"]: Decimal("0") for item in passif}
net_passif_n_1: dict[str, Decimal] = {item["ref"]: Decimal("0") for item in passif}
net_passif_n["CA"] = Decimal(capital_n)
net_passif_n_1["CA"] = Decimal(capital_n_1)
net_passif_n["CJ"] = Decimal(compte.resultat_net_n)
net_passif_n_1["CJ"] = Decimal("0") # not computed in this MVP
def signed_passif_value(values: dict[str, Decimal], ref: str) -> Decimal:
val = values.get(ref, Decimal("0"))
meta = passif_meta.get(ref, {})
if meta.get("is_negative"):
return -val
return val
def eval_passif_formula(values: dict[str, Decimal], formula: str) -> Decimal:
parts = parse_bilan_sum_formula(formula)
return sum((signed_passif_value(values, p) for p in parts), Decimal("0"))
for item in passif:
if not item.get("is_total"):
continue
ref = item["ref"]
net_passif_n[ref] = eval_passif_formula(net_passif_n, item.get("formula", ""))
net_passif_n_1[ref] = eval_passif_formula(net_passif_n_1, item.get("formula", ""))
# Build a single CSV containing both sections.
out = io.StringIO()
writer = csv.writer(out)
writer.writerow(["SECTION", "REF", "LIBELLE", "NOTE", "BRUT", "AMORT/DEPREC", "NET_N", "NET_N_1"])
for item in actif:
ref = item["ref"]
writer.writerow(
[
"ACTIF",
ref,
item.get("libelle", ""),
item.get("note", ""),
str(brut.get(ref, Decimal("0"))),
str(amort.get(ref, Decimal("0"))),
str(net_for(ref)),
str(net_for_n_1(ref)),
]
)
for item in passif:
ref = item["ref"]
writer.writerow(
[
"PASSIF",
ref,
item.get("libelle", ""),
item.get("note", ""),
"",
"",
str(signed_passif_value(net_passif_n, ref)),
str(signed_passif_value(net_passif_n_1, ref)),
]
)
return out.getvalue().encode("utf-8")
|