Public Access
extractor erstmal fertig
- er findet fast alle tabellen - quellcode wird entpackt wenn er in einer variable ist
This commit is contained in:
+9
-9
@@ -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"
|
||||
},
|
||||
{
|
||||
@@ -182,7 +182,7 @@
|
||||
"*table.update([table.code_compact], [table.code])"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*table.update([table.code_compact], [table.code]))",
|
||||
"code": "(Transaction().connection.cursor()).execute(*table.update([table.code_compact], [table.code]))",
|
||||
"phase": "after_super",
|
||||
"condition": "fill_code_compact"
|
||||
},
|
||||
@@ -213,7 +213,7 @@
|
||||
"*table.update([table.type], ['si_maticna'], where=table.type == 'si_businessid')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*table.update([table.type], ['si_maticna'], where=table.type == 'si_businessid'))",
|
||||
"code": "(Transaction().connection.cursor()).execute(*table.update([table.type], ['si_maticna'],\n where=(table.type == 'si_businessid')))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
@@ -230,7 +230,7 @@
|
||||
"kwargs": {
|
||||
"where": "table.type == 'si_businessid'"
|
||||
},
|
||||
"code": "table.update([table.type], ['si_maticna'], where=table.type == 'si_businessid')",
|
||||
"code": "table.update([table.type], ['si_maticna'],\n where=(table.type == 'si_businessid'))",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user