c7.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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: str):
  16. if not Path(mdl_file).exists():
  17. raise typer.Exit(code=1, message=f"Datei {mdl_file} nicht gefunden")
  18. if Path(mdl_file).is_dir():
  19. return cognos7.convert_folder(mdl_file)
  20. cognos7.convert_file(mdl_file)
  21. source = Path(mdl_file[:-4] + ".json")
  22. dest = f"{cfg.cognos11.specs_dir}\\..\\DataModel\\{source.name}"
  23. os.makedirs(os.path.dirname(dest), exist_ok=True)
  24. Path(dest).unlink(missing_ok=True)
  25. os.rename(source, dest)
  26. @app.command()
  27. def export_csv_sql():
  28. cognos7.create_format_xml_from_folder(f"{cfg.system_dir}\\Export")
  29. @app.command()
  30. def move_csv():
  31. print("Verschiebe CSV-Dateien von IQD zu Export...")
  32. res = file_move.move(cfg.system_dir)
  33. if res is False:
  34. print("* Keine CSV-Dateien im IQD-Ordner gefunden.\n")
  35. print("Pruefe Export-Ordner...")
  36. is_clean = file_move.check(cfg.system_dir)
  37. if is_clean:
  38. print("* Alle Dateien aktuell.\n")
  39. if __name__ == "__main__":
  40. # app()
  41. move_csv()