extractor erstmal fertig

- er findet fast alle tabellen
- quellcode wird entpackt wenn er in einer variable ist
This commit is contained in:
2026-08-09 00:47:23 +02:00
parent 24caf23986
commit d4337ad1a5
116 changed files with 887 additions and 864 deletions
+6 -6
View File
@@ -57,7 +57,7 @@
"*table.update([table.identifier_types], [cls.identifier_types.sql_format(identifier_types)])"
],
"kwargs": {},
"code": "cursor.execute(*table.update([table.identifier_types], [cls.identifier_types.sql_format(identifier_types)]))",
"code": "(Transaction().connection.cursor()).execute(*table.update(\n [table.identifier_types],\n [cls.identifier_types.sql_format(identifier_types)]\n ))",
"phase": "after_super",
"condition": "configuration.identifier_types != identifier_types"
},
@@ -73,7 +73,7 @@
"[cls.identifier_types.sql_format(identifier_types)]"
],
"kwargs": {},
"code": "table.update([table.identifier_types], [cls.identifier_types.sql_format(identifier_types)])",
"code": "table.update(\n [table.identifier_types],\n [cls.identifier_types.sql_format(identifier_types)]\n )",
"phase": "after_super",
"condition": "configuration.identifier_types != identifier_types"
}
@@ -120,7 +120,7 @@
"*table.update([table.type], ['uy_rut'], where=table.type == 'uy_ruc')"
],
"kwargs": {},
"code": "cursor.execute(*table.update([table.type], ['uy_rut'], where=table.type == 'uy_ruc'))",
"code": "(Transaction().connection.cursor()).execute(*table.update([table.type], ['uy_rut'],\n where=(table.type == 'uy_ruc')))",
"phase": "after_super"
},
{
@@ -137,7 +137,7 @@
"kwargs": {
"where": "table.type == 'uy_ruc'"
},
"code": "table.update([table.type], ['uy_rut'], where=table.type == 'uy_ruc')",
"code": "table.update([table.type], ['uy_rut'],\n where=(table.type == 'uy_ruc'))",
"phase": "after_super"
},
{
@@ -151,7 +151,7 @@
"*table.update([table.type], ['co_nit'], where=table.type == 'co_rut')"
],
"kwargs": {},
"code": "cursor.execute(*table.update([table.type], ['co_nit'], where=table.type == 'co_rut'))",
"code": "(Transaction().connection.cursor()).execute(*table.update([table.type], ['co_nit'],\n where=(table.type == 'co_rut')))",
"phase": "after_super"
},
{
@@ -168,7 +168,7 @@
"kwargs": {
"where": "table.type == 'co_rut'"
},
"code": "table.update([table.type], ['co_nit'], where=table.type == 'co_rut')",
"code": "table.update([table.type], ['co_nit'],\n where=(table.type == 'co_rut'))",
"phase": "after_super"
}
]