config_load.py 727 B

1234567891011121314151617181920212223
  1. import json
  2. from pathlib import Path
  3. class ConfigLoad:
  4. base_dir: Path
  5. def __init__(self, base_dir: str):
  6. self.base_dir = Path(base_dir)
  7. def load_file(self, client, year):
  8. with open(self.base_dir.joinpath(client + ".json"), "r") as frh:
  9. cfg = json.load(frh)
  10. year_new = {"plan": year, "actuals": str(int(year) - 1), "previous": str(int(year) - 2)}
  11. cfg["config"]["year"] = year_new
  12. cfg["config"]["previous"] = [
  13. "Ist " + year_new["previous"],
  14. "Plan " + year_new["actuals"],
  15. "Ist per 10/" + year_new["actuals"],
  16. "FC 12/" + year_new["actuals"],
  17. "Ist " + year_new["actuals"],
  18. ]
  19. return cfg