c7.py 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import os
  2. from pathlib import Path
  3. import typer
  4. import cognos7
  5. import config
  6. from misc import file_move
  7. app = typer.Typer()
  8. cfg = config.Config()
  9. @app.command()
  10. def iqd_convert():
  11. iqdconv = cognos7.IqdConverter()
  12. iqdconv.output_dir = f"{cfg.system_dir}\\SQL\\schema\\{cfg.system}\\views_imr"
  13. iqdconv.run_folder(f"{cfg.system_dir}\\IQD")
  14. @app.command()
  15. def mdl_convert(mdl_file):
  16. cognos7.convert_file(mdl_file)
  17. source = Path(mdl_file[:-4] + ".json")
  18. dest = f"{cfg.cognos11.specs_dir}\\..\\DataModel\\{source.name}"
  19. os.makedirs(os.path.dirname(dest), exist_ok=True)
  20. Path(dest).unlink(missing_ok=True)
  21. os.rename(source, dest)
  22. @app.command()
  23. def move_csv():
  24. print("Verschiebe CSV-Dateien von IQD zu Export...")
  25. res = file_move.move(cfg.system_dir)
  26. if res is False:
  27. print("* Keine CSV-Dateien im IQD-Ordner gefunden.\n")
  28. print("Pruefe Export-Ordner...")
  29. is_clean = file_move.check(cfg.system_dir)
  30. if is_clean:
  31. print("* Alle Dateien aktuell.\n")
  32. if __name__ == "__main__":
  33. # app()
  34. move_csv()