Explorar o código

GCStruct-Übersetzung mit Bilanz Aktiva/Passiva

gc-server3 hai 2 meses
pai
achega
1233b7f602
Modificáronse 3 ficheiros con 19 adicións e 11 borrados
  1. BIN=BIN
      dist/gcstruct_uebersetzung.exe
  2. 16 2
      gcstruct/gcstruct.py
  3. 3 9
      gcstruct_uebersetzung.spec

BIN=BIN
dist/gcstruct_uebersetzung.exe


+ 16 - 2
gcstruct/gcstruct.py

@@ -400,7 +400,16 @@ class GCStruct:
             df_translate[t_from] = df[df[last + "_Nr"] != ""][from_label].rename(
                 columns=dict(zip(from_label, to_label))
             )
-            # print(df_translate[t_to].head())
+
+        df_t4 = df_translate["Konto_Nr"].copy()
+        df_t4 = df_t4[df_t4["SKR51_Nr"].str.match(r"^[01]")]
+        df_t5 = df_t4.copy()
+        df_t4["SKR51_Nr"] = df_t4["SKR51_Nr"] + "_A"
+        df_t4["SKR51"] = df_t4["SKR51"] + "_A"
+        df_t5["SKR51_Nr"] = df_t5["SKR51_Nr"] + "_P"
+        df_t5["SKR51"] = df_t5["SKR51"] + "_P"
+        df_translate["Konto_Nr"] = pd.concat([df_translate["Konto_Nr"], df_t4, df_t5])
+        # print(df_translate[t_to].head())
 
         df2 = []
         for ac_file in accounts_combined_files:
@@ -416,7 +425,12 @@ class GCStruct:
         df_source = pd.concat(df2)
         df3 = df_source.copy()
         df3["Konto_Nr"] = df3["Konto_Nr"] + "_STK"
-        df_source = pd.concat([df_source, df3])
+        df4 = df_source.copy()
+        df4 = df4[df4["Konto_Nr"].str.match(r"^[01]")]
+        df5 = df4.copy()
+        df4["Konto_Nr"] = df4["Konto_Nr"] + "_A"
+        df5["Konto_Nr"] = df5["Konto_Nr"] + "_P"
+        df_source = pd.concat([df_source, df3, df4, df5])
 
         for t_from, t_to in self.translate.items():
             if t_to == "SKR51":

+ 3 - 9
gcstruct_uebersetzung.spec

@@ -1,12 +1,9 @@
 # -*- mode: python ; coding: utf-8 -*-
 
 
-block_cipher = None
-
-
 a = Analysis(
     ['gcstruct_uebersetzung.py'],
-    pathex=['C:\\Projekte\\Python\\gcstruct\\'],
+    pathex=['C:\\Projekte\\Python\\'],
     binaries=[],
     datas=[],
     hiddenimports=[],
@@ -14,18 +11,15 @@ a = Analysis(
     hooksconfig={},
     runtime_hooks=[],
     excludes=[],
-    win_no_prefer_redirects=False,
-    win_private_assemblies=False,
-    cipher=block_cipher,
     noarchive=False,
+    optimize=0,
 )
-pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
+pyz = PYZ(a.pure)
 
 exe = EXE(
     pyz,
     a.scripts,
     a.binaries,
-    a.zipfiles,
     a.datas,
     [],
     name='gcstruct_uebersetzung',