|
@@ -1,6 +1,9 @@
|
|
|
+import os
|
|
|
+from pathlib import Path
|
|
|
import config
|
|
|
import cognos11
|
|
|
from pdf import pdf_merge, pdf_test
|
|
|
+import cognos7.mdl_convert
|
|
|
import typer
|
|
|
from enum import Enum
|
|
|
|
|
@@ -61,5 +64,15 @@ def mailtemplate():
|
|
|
return template()
|
|
|
|
|
|
|
|
|
+@app.command()
|
|
|
+def mdlconvert(mdl_file):
|
|
|
+ cognos7.mdl_convert.convert_file(mdl_file)
|
|
|
+ source = mdl_file[:-4] + ".json"
|
|
|
+ target = cfg.cognos11.specs_dir + "/../DataModel/" + Path(source).name
|
|
|
+ os.makedirs(os.path.dirname(target), exist_ok=True)
|
|
|
+ Path(target).unlink(missing_ok=True)
|
|
|
+ os.rename(source, target)
|
|
|
+
|
|
|
+
|
|
|
if __name__ == "__main__":
|
|
|
app()
|