Public Access
several small fixes:
- systemmodule ir und res aufgenommen - Version auf Major.Minor reduziert - reihenfolge der Module fixiert
This commit is contained in:
+3
-2
@@ -29,7 +29,7 @@ class Module(object):
|
||||
def read_data(self):
|
||||
for version in versions():
|
||||
|
||||
vers = version.name.rsplit('.', 1)[0]
|
||||
vers = version.name
|
||||
self.versionen[vers] = {}
|
||||
|
||||
infile = version / f"{self.name}.json"
|
||||
@@ -68,7 +68,8 @@ class Module(object):
|
||||
|
||||
out.write(f"# {self.name}\n\n")
|
||||
|
||||
for c, classe in self.classes.items():
|
||||
for c in sorted(self.classes):
|
||||
classe = self.classes[c]
|
||||
|
||||
out.write(f"## Klasse {c}\n\n")
|
||||
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "5.0.63",
|
||||
"module": "company",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "5.0.63",
|
||||
"module": "stock_product_location",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "8.0.8",
|
||||
"version": "5.0",
|
||||
"module": "company",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.0.63",
|
||||
"version": "5.0",
|
||||
"module": "country",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.2.20",
|
||||
"version": "5.0",
|
||||
"module": "currency",
|
||||
"files": []
|
||||
}
|
||||
@@ -0,0 +1,555 @@
|
||||
{
|
||||
"version": "5.0",
|
||||
"module": "ir",
|
||||
"files": [
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionKeyword",
|
||||
"method": "__register__",
|
||||
"line": 119,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 123,
|
||||
"args": [
|
||||
"['keyword', 'model']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['keyword', 'model'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionReport",
|
||||
"method": "__register__",
|
||||
"line": 499,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 508,
|
||||
"args": [
|
||||
"'report_name_module_uniq'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('report_name_module_uniq')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 511,
|
||||
"args": [
|
||||
"*action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "action_report",
|
||||
"operation": "update",
|
||||
"line": 511,
|
||||
"args": [
|
||||
"[action_report.extension]",
|
||||
"['txt']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "action_report.extension == 'plain'"
|
||||
},
|
||||
"code": "action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindow",
|
||||
"method": "__register__",
|
||||
"line": 694,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 702,
|
||||
"args": [
|
||||
"'auto_refresh'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('auto_refresh')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 705,
|
||||
"args": [
|
||||
"'window_name'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('window_name')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 708,
|
||||
"args": [
|
||||
"'limit'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('limit', 'remove')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 709,
|
||||
"args": [
|
||||
"*act_window.update([act_window.limit], [Null], where=act_window.limit == 0)"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*act_window.update([act_window.limit], [Null], where=act_window.limit == 0))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "act_window",
|
||||
"operation": "update",
|
||||
"line": 709,
|
||||
"args": [
|
||||
"[act_window.limit]",
|
||||
"[Null]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "act_window.limit == 0"
|
||||
},
|
||||
"code": "act_window.update([act_window.limit], [Null], where=act_window.limit == 0)",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/attachment.py",
|
||||
"class": "Attachment",
|
||||
"method": "__register__",
|
||||
"line": 60,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 70,
|
||||
"args": [
|
||||
"*attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null)))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "attachment",
|
||||
"operation": "update",
|
||||
"line": 70,
|
||||
"args": [
|
||||
"[attachment.file_id]",
|
||||
"[attachment.digest]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(attachment.collision == 0) | (attachment.collision == Null)"
|
||||
},
|
||||
"code": "attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 75,
|
||||
"args": [
|
||||
"*attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null)))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "attachment",
|
||||
"operation": "update",
|
||||
"line": 75,
|
||||
"args": [
|
||||
"[attachment.file_id]",
|
||||
"[Concat(Concat(attachment.digest, '-'), attachment.collision)]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(attachment.collision != 0) & (attachment.collision != Null)"
|
||||
},
|
||||
"code": "attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 81,
|
||||
"args": [
|
||||
"'digest'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('digest')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 82,
|
||||
"args": [
|
||||
"'collision'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('collision')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 85,
|
||||
"args": [
|
||||
"'resource_name'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('resource_name')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/model.py",
|
||||
"class": "ModelData",
|
||||
"method": "__register__",
|
||||
"line": 1100,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 1107,
|
||||
"args": [
|
||||
"*model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button'))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button')))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 1107,
|
||||
"args": [
|
||||
"[model_data.module]",
|
||||
"['ir']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button')"
|
||||
},
|
||||
"code": "model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button'))",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/module.py",
|
||||
"class": "Module",
|
||||
"method": "__register__",
|
||||
"line": 102,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 118,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 118,
|
||||
"args": [
|
||||
"[sql_table.state]",
|
||||
"['activated']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.state == 'installed'"
|
||||
},
|
||||
"code": "sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 121,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 121,
|
||||
"args": [
|
||||
"[sql_table.state]",
|
||||
"['not activated']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.state == 'uninstalled'"
|
||||
},
|
||||
"code": "sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 134,
|
||||
"args": [
|
||||
"*model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids)))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data_sql_table",
|
||||
"operation": "update",
|
||||
"line": 134,
|
||||
"args": [
|
||||
"[model_data_sql_table.module]",
|
||||
"['ir']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids)"
|
||||
},
|
||||
"code": "model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids))",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/module.py",
|
||||
"class": "ModuleConfigWizardItem",
|
||||
"method": "__register__",
|
||||
"line": 401,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 412,
|
||||
"args": [
|
||||
"*model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item'))",
|
||||
"phase": "before_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 412,
|
||||
"args": [],
|
||||
"kwargs": {
|
||||
"columns": "[model_data.model]",
|
||||
"values": "[cls.__name__]",
|
||||
"where": "model_data.model == 'ir.module.module.config_wizard.item'"
|
||||
},
|
||||
"code": "model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item')",
|
||||
"phase": "before_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/queue.py",
|
||||
"class": "Queue",
|
||||
"method": "__register__",
|
||||
"line": 35,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "index_action",
|
||||
"line": 41,
|
||||
"args": [
|
||||
"[queue.scheduled_at.nulls_first, queue.expected_at.nulls_first, queue.dequeued_at, queue.name]"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'add'"
|
||||
},
|
||||
"code": "table_h.index_action([queue.scheduled_at.nulls_first, queue.expected_at.nulls_first, queue.dequeued_at, queue.name], action='add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/session.py",
|
||||
"class": "Session",
|
||||
"method": "__register__",
|
||||
"line": 36,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 40,
|
||||
"args": [
|
||||
"'create_uid'",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action('create_uid', 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/translation.py",
|
||||
"class": "Translation",
|
||||
"method": "__register__",
|
||||
"line": 99,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 108,
|
||||
"args": [
|
||||
"*ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "ir_translation",
|
||||
"operation": "update",
|
||||
"line": 108,
|
||||
"args": [
|
||||
"[ir_translation.type]",
|
||||
"['report']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "ir_translation.type == 'odt'"
|
||||
},
|
||||
"code": "ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 114,
|
||||
"args": [
|
||||
"['lang', 'type', 'name']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['lang', 'type', 'name'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/trigger.py",
|
||||
"class": "Trigger",
|
||||
"method": "__register__",
|
||||
"line": 74,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 84,
|
||||
"args": [
|
||||
"*sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null)"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "select",
|
||||
"line": 84,
|
||||
"args": [
|
||||
"sql_table.id",
|
||||
"sql_table.minimum_delay"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.minimum_delay != Null"
|
||||
},
|
||||
"code": "sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null)",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 93,
|
||||
"args": [
|
||||
"'minimum_delay'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('minimum_delay')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/trigger.py",
|
||||
"class": "TriggerLog",
|
||||
"method": "__register__",
|
||||
"line": 300,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 304,
|
||||
"args": [
|
||||
"['trigger', 'record_id']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['trigger', 'record_id'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/ui/view.py",
|
||||
"class": "ViewTreeState",
|
||||
"method": "__register__",
|
||||
"line": 313,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 317,
|
||||
"args": [
|
||||
"['model', 'domain', 'user', 'child_name']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['model', 'domain', 'user', 'child_name'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.0.63",
|
||||
"version": "5.0",
|
||||
"module": "party",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.0.63",
|
||||
"version": "5.0",
|
||||
"module": "product",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "8.0.8",
|
||||
"version": "5.0",
|
||||
"module": "product_measurements",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.0.63",
|
||||
"version": "5.0",
|
||||
"module": "production",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "8.0.8",
|
||||
"version": "5.0",
|
||||
"module": "production_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"version": "5.0",
|
||||
"module": "res",
|
||||
"files": [
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/res/user.py",
|
||||
"class": "User",
|
||||
"method": "__register__",
|
||||
"line": 200,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 210,
|
||||
"args": [
|
||||
"*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new]))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "sqltable",
|
||||
"operation": "update",
|
||||
"line": 210,
|
||||
"args": [],
|
||||
"kwargs": {
|
||||
"columns": "[sqltable.password_hash]",
|
||||
"values": "[password_hash_new]"
|
||||
},
|
||||
"code": "sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 213,
|
||||
"args": [
|
||||
"'password'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('password')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 214,
|
||||
"args": [
|
||||
"'salt'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('salt')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 217,
|
||||
"args": [
|
||||
"'name'"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'remove'"
|
||||
},
|
||||
"code": "table.not_null_action('name', action='remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "8.0.8",
|
||||
"version": "5.0",
|
||||
"module": "stock_lot",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "8.0.8",
|
||||
"version": "5.0",
|
||||
"module": "stock_lot_sled",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "8.0.8",
|
||||
"version": "5.0",
|
||||
"module": "stock_product_location",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "8.0.8",
|
||||
"version": "5.0",
|
||||
"module": "stock_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "5.2.20",
|
||||
"module": "product_measurements",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "5.2.20",
|
||||
"module": "production_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "5.2.20",
|
||||
"module": "stock_lot_sled",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "5.2.20",
|
||||
"module": "stock_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.4.20",
|
||||
"version": "5.2",
|
||||
"module": "company",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.2.20",
|
||||
"version": "5.2",
|
||||
"module": "country",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.0.63",
|
||||
"version": "5.2",
|
||||
"module": "currency",
|
||||
"files": []
|
||||
}
|
||||
@@ -0,0 +1,684 @@
|
||||
{
|
||||
"version": "5.2",
|
||||
"module": "ir",
|
||||
"files": [
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionKeyword",
|
||||
"method": "__register__",
|
||||
"line": 147,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 151,
|
||||
"args": [
|
||||
"['keyword', 'model']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['keyword', 'model'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionReport",
|
||||
"method": "__register__",
|
||||
"line": 529,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 538,
|
||||
"args": [
|
||||
"'report_name_module_uniq'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('report_name_module_uniq')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 541,
|
||||
"args": [
|
||||
"*action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "action_report",
|
||||
"operation": "update",
|
||||
"line": 541,
|
||||
"args": [
|
||||
"[action_report.extension]",
|
||||
"['txt']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "action_report.extension == 'plain'"
|
||||
},
|
||||
"code": "action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindow",
|
||||
"method": "__register__",
|
||||
"line": 729,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 737,
|
||||
"args": [
|
||||
"'auto_refresh'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('auto_refresh')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 740,
|
||||
"args": [
|
||||
"'window_name'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('window_name')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 743,
|
||||
"args": [
|
||||
"'limit'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('limit', 'remove')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 744,
|
||||
"args": [
|
||||
"*act_window.update([act_window.limit], [Null], where=act_window.limit == 0)"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*act_window.update([act_window.limit], [Null], where=act_window.limit == 0))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "act_window",
|
||||
"operation": "update",
|
||||
"line": 744,
|
||||
"args": [
|
||||
"[act_window.limit]",
|
||||
"[Null]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "act_window.limit == 0"
|
||||
},
|
||||
"code": "act_window.update([act_window.limit], [Null], where=act_window.limit == 0)",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindowView",
|
||||
"method": "__register__",
|
||||
"line": 909,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 915,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindowDomain",
|
||||
"method": "__register__",
|
||||
"line": 948,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 954,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/attachment.py",
|
||||
"class": "Attachment",
|
||||
"method": "__register__",
|
||||
"line": 60,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 70,
|
||||
"args": [
|
||||
"*attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null)))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "attachment",
|
||||
"operation": "update",
|
||||
"line": 70,
|
||||
"args": [
|
||||
"[attachment.file_id]",
|
||||
"[attachment.digest]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(attachment.collision == 0) | (attachment.collision == Null)"
|
||||
},
|
||||
"code": "attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 75,
|
||||
"args": [
|
||||
"*attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null)))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "attachment",
|
||||
"operation": "update",
|
||||
"line": 75,
|
||||
"args": [
|
||||
"[attachment.file_id]",
|
||||
"[Concat(Concat(attachment.digest, '-'), attachment.collision)]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(attachment.collision != 0) & (attachment.collision != Null)"
|
||||
},
|
||||
"code": "attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 81,
|
||||
"args": [
|
||||
"'digest'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('digest')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 82,
|
||||
"args": [
|
||||
"'collision'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('collision')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 85,
|
||||
"args": [
|
||||
"'resource_name'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('resource_name')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/cron.py",
|
||||
"class": "Cron",
|
||||
"method": "__register__",
|
||||
"line": 66,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "not_null_action",
|
||||
"line": 77,
|
||||
"args": [
|
||||
"'next_call'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.not_null_action('next_call', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/model.py",
|
||||
"class": "ModelData",
|
||||
"method": "__register__",
|
||||
"line": 1135,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 1144,
|
||||
"args": [
|
||||
"*model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button'))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button')))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 1144,
|
||||
"args": [
|
||||
"[model_data.module]",
|
||||
"['ir']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button')"
|
||||
},
|
||||
"code": "model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "not_null_action",
|
||||
"line": 1150,
|
||||
"args": [
|
||||
"'db_id'"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'remove'"
|
||||
},
|
||||
"code": "table_h.not_null_action('db_id', action='remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/module.py",
|
||||
"class": "Module",
|
||||
"method": "__register__",
|
||||
"line": 103,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 119,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 119,
|
||||
"args": [
|
||||
"[sql_table.state]",
|
||||
"['activated']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.state == 'installed'"
|
||||
},
|
||||
"code": "sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 122,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 122,
|
||||
"args": [
|
||||
"[sql_table.state]",
|
||||
"['not activated']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.state == 'uninstalled'"
|
||||
},
|
||||
"code": "sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 135,
|
||||
"args": [
|
||||
"*model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids)))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data_sql_table",
|
||||
"operation": "update",
|
||||
"line": 135,
|
||||
"args": [
|
||||
"[model_data_sql_table.module]",
|
||||
"['ir']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids)"
|
||||
},
|
||||
"code": "model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids))",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/module.py",
|
||||
"class": "ModuleConfigWizardItem",
|
||||
"method": "__register__",
|
||||
"line": 396,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 407,
|
||||
"args": [
|
||||
"*model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item'))",
|
||||
"phase": "before_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 407,
|
||||
"args": [],
|
||||
"kwargs": {
|
||||
"columns": "[model_data.model]",
|
||||
"values": "[cls.__name__]",
|
||||
"where": "model_data.model == 'ir.module.module.config_wizard.item'"
|
||||
},
|
||||
"code": "model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item')",
|
||||
"phase": "before_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 418,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/queue.py",
|
||||
"class": "Queue",
|
||||
"method": "__register__",
|
||||
"line": 35,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "index_action",
|
||||
"line": 41,
|
||||
"args": [
|
||||
"[queue.scheduled_at.nulls_first, queue.expected_at.nulls_first, queue.dequeued_at, queue.name]"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'add'"
|
||||
},
|
||||
"code": "table_h.index_action([queue.scheduled_at.nulls_first, queue.expected_at.nulls_first, queue.dequeued_at, queue.name], action='add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/session.py",
|
||||
"class": "Session",
|
||||
"method": "__register__",
|
||||
"line": 36,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 40,
|
||||
"args": [
|
||||
"'create_uid'",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action('create_uid', 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/translation.py",
|
||||
"class": "Translation",
|
||||
"method": "__register__",
|
||||
"line": 85,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 93,
|
||||
"args": [
|
||||
"'translation_md5_uniq'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('translation_md5_uniq')",
|
||||
"phase": "before_super",
|
||||
"condition": "table.column_exist('src_md5')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 94,
|
||||
"args": [
|
||||
"'src_md5'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('src_md5')",
|
||||
"phase": "before_super",
|
||||
"condition": "table.column_exist('src_md5')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 99,
|
||||
"args": [
|
||||
"*ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "ir_translation",
|
||||
"operation": "update",
|
||||
"line": 99,
|
||||
"args": [
|
||||
"[ir_translation.type]",
|
||||
"['report']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "ir_translation.type == 'odt'"
|
||||
},
|
||||
"code": "ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 105,
|
||||
"args": [
|
||||
"['lang', 'type', 'name']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['lang', 'type', 'name'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/trigger.py",
|
||||
"class": "Trigger",
|
||||
"method": "__register__",
|
||||
"line": 76,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 86,
|
||||
"args": [
|
||||
"*sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null)"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "select",
|
||||
"line": 86,
|
||||
"args": [
|
||||
"sql_table.id",
|
||||
"sql_table.minimum_delay"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.minimum_delay != Null"
|
||||
},
|
||||
"code": "sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null)",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 95,
|
||||
"args": [
|
||||
"'minimum_delay'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('minimum_delay')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/trigger.py",
|
||||
"class": "TriggerLog",
|
||||
"method": "__register__",
|
||||
"line": 302,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 306,
|
||||
"args": [
|
||||
"['trigger', 'record_id']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['trigger', 'record_id'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/ui/icon.py",
|
||||
"class": "Icon",
|
||||
"method": "__register__",
|
||||
"line": 33,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 39,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/ui/view.py",
|
||||
"class": "ViewTreeState",
|
||||
"method": "__register__",
|
||||
"line": 323,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 327,
|
||||
"args": [
|
||||
"['model', 'domain', 'user', 'child_name']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['model', 'domain', 'user', 'child_name'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.2.20",
|
||||
"version": "5.2",
|
||||
"module": "party",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.2.20",
|
||||
"version": "5.2",
|
||||
"module": "product",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.0.63",
|
||||
"version": "5.2",
|
||||
"module": "product_measurements",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.4.20",
|
||||
"version": "5.2",
|
||||
"module": "production",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.4.20",
|
||||
"version": "5.2",
|
||||
"module": "production_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"version": "5.2",
|
||||
"module": "res",
|
||||
"files": [
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/res/user.py",
|
||||
"class": "User",
|
||||
"method": "__register__",
|
||||
"line": 194,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 204,
|
||||
"args": [
|
||||
"*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new]))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "sqltable",
|
||||
"operation": "update",
|
||||
"line": 204,
|
||||
"args": [],
|
||||
"kwargs": {
|
||||
"columns": "[sqltable.password_hash]",
|
||||
"values": "[password_hash_new]"
|
||||
},
|
||||
"code": "sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 207,
|
||||
"args": [
|
||||
"'password'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('password')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 208,
|
||||
"args": [
|
||||
"'salt'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('salt')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 211,
|
||||
"args": [
|
||||
"'name'"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'remove'"
|
||||
},
|
||||
"code": "table.not_null_action('name', action='remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.0.63",
|
||||
"version": "5.2",
|
||||
"module": "stock_lot",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.4.20",
|
||||
"version": "5.2",
|
||||
"module": "stock_lot_sled",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.2.20",
|
||||
"version": "5.2",
|
||||
"module": "stock_product_location",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.4.20",
|
||||
"version": "5.2",
|
||||
"module": "stock_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.6.17",
|
||||
"version": "5.4",
|
||||
"module": "company",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.4.20",
|
||||
"version": "5.4",
|
||||
"module": "country",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.4.20",
|
||||
"version": "5.4",
|
||||
"module": "currency",
|
||||
"files": [
|
||||
{
|
||||
@@ -0,0 +1,684 @@
|
||||
{
|
||||
"version": "5.4",
|
||||
"module": "ir",
|
||||
"files": [
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionKeyword",
|
||||
"method": "__register__",
|
||||
"line": 147,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 151,
|
||||
"args": [
|
||||
"['keyword', 'model']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['keyword', 'model'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionReport",
|
||||
"method": "__register__",
|
||||
"line": 529,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 538,
|
||||
"args": [
|
||||
"'report_name_module_uniq'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('report_name_module_uniq')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 541,
|
||||
"args": [
|
||||
"*action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "action_report",
|
||||
"operation": "update",
|
||||
"line": 541,
|
||||
"args": [
|
||||
"[action_report.extension]",
|
||||
"['txt']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "action_report.extension == 'plain'"
|
||||
},
|
||||
"code": "action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindow",
|
||||
"method": "__register__",
|
||||
"line": 729,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 737,
|
||||
"args": [
|
||||
"'auto_refresh'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('auto_refresh')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 740,
|
||||
"args": [
|
||||
"'window_name'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('window_name')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 743,
|
||||
"args": [
|
||||
"'limit'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('limit', 'remove')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 744,
|
||||
"args": [
|
||||
"*act_window.update([act_window.limit], [Null], where=act_window.limit == 0)"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*act_window.update([act_window.limit], [Null], where=act_window.limit == 0))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "act_window",
|
||||
"operation": "update",
|
||||
"line": 744,
|
||||
"args": [
|
||||
"[act_window.limit]",
|
||||
"[Null]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "act_window.limit == 0"
|
||||
},
|
||||
"code": "act_window.update([act_window.limit], [Null], where=act_window.limit == 0)",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindowView",
|
||||
"method": "__register__",
|
||||
"line": 909,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 915,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindowDomain",
|
||||
"method": "__register__",
|
||||
"line": 948,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 954,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/attachment.py",
|
||||
"class": "Attachment",
|
||||
"method": "__register__",
|
||||
"line": 60,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 70,
|
||||
"args": [
|
||||
"*attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null)))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "attachment",
|
||||
"operation": "update",
|
||||
"line": 70,
|
||||
"args": [
|
||||
"[attachment.file_id]",
|
||||
"[attachment.digest]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(attachment.collision == 0) | (attachment.collision == Null)"
|
||||
},
|
||||
"code": "attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 75,
|
||||
"args": [
|
||||
"*attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null)))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "attachment",
|
||||
"operation": "update",
|
||||
"line": 75,
|
||||
"args": [
|
||||
"[attachment.file_id]",
|
||||
"[Concat(Concat(attachment.digest, '-'), attachment.collision)]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(attachment.collision != 0) & (attachment.collision != Null)"
|
||||
},
|
||||
"code": "attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 81,
|
||||
"args": [
|
||||
"'digest'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('digest')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 82,
|
||||
"args": [
|
||||
"'collision'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('collision')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 85,
|
||||
"args": [
|
||||
"'resource_name'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('resource_name')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/cron.py",
|
||||
"class": "Cron",
|
||||
"method": "__register__",
|
||||
"line": 69,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "not_null_action",
|
||||
"line": 80,
|
||||
"args": [
|
||||
"'next_call'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.not_null_action('next_call', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/model.py",
|
||||
"class": "ModelData",
|
||||
"method": "__register__",
|
||||
"line": 1135,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 1144,
|
||||
"args": [
|
||||
"*model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button'))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button')))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 1144,
|
||||
"args": [
|
||||
"[model_data.module]",
|
||||
"['ir']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button')"
|
||||
},
|
||||
"code": "model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "not_null_action",
|
||||
"line": 1150,
|
||||
"args": [
|
||||
"'db_id'"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'remove'"
|
||||
},
|
||||
"code": "table_h.not_null_action('db_id', action='remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/module.py",
|
||||
"class": "Module",
|
||||
"method": "__register__",
|
||||
"line": 103,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 119,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 119,
|
||||
"args": [
|
||||
"[sql_table.state]",
|
||||
"['activated']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.state == 'installed'"
|
||||
},
|
||||
"code": "sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 122,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 122,
|
||||
"args": [
|
||||
"[sql_table.state]",
|
||||
"['not activated']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.state == 'uninstalled'"
|
||||
},
|
||||
"code": "sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 135,
|
||||
"args": [
|
||||
"*model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids)))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data_sql_table",
|
||||
"operation": "update",
|
||||
"line": 135,
|
||||
"args": [
|
||||
"[model_data_sql_table.module]",
|
||||
"['ir']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids)"
|
||||
},
|
||||
"code": "model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids))",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/module.py",
|
||||
"class": "ModuleConfigWizardItem",
|
||||
"method": "__register__",
|
||||
"line": 396,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 407,
|
||||
"args": [
|
||||
"*model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item'))",
|
||||
"phase": "before_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 407,
|
||||
"args": [],
|
||||
"kwargs": {
|
||||
"columns": "[model_data.model]",
|
||||
"values": "[cls.__name__]",
|
||||
"where": "model_data.model == 'ir.module.module.config_wizard.item'"
|
||||
},
|
||||
"code": "model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item')",
|
||||
"phase": "before_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 418,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/queue.py",
|
||||
"class": "Queue",
|
||||
"method": "__register__",
|
||||
"line": 35,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "index_action",
|
||||
"line": 41,
|
||||
"args": [
|
||||
"[queue.scheduled_at.nulls_first, queue.expected_at.nulls_first, queue.dequeued_at, queue.name]"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'add'"
|
||||
},
|
||||
"code": "table_h.index_action([queue.scheduled_at.nulls_first, queue.expected_at.nulls_first, queue.dequeued_at, queue.name], action='add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/session.py",
|
||||
"class": "Session",
|
||||
"method": "__register__",
|
||||
"line": 36,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 40,
|
||||
"args": [
|
||||
"'create_uid'",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action('create_uid', 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/translation.py",
|
||||
"class": "Translation",
|
||||
"method": "__register__",
|
||||
"line": 86,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 94,
|
||||
"args": [
|
||||
"'translation_md5_uniq'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('translation_md5_uniq')",
|
||||
"phase": "before_super",
|
||||
"condition": "table.column_exist('src_md5')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 95,
|
||||
"args": [
|
||||
"'src_md5'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('src_md5')",
|
||||
"phase": "before_super",
|
||||
"condition": "table.column_exist('src_md5')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 100,
|
||||
"args": [
|
||||
"*ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "ir_translation",
|
||||
"operation": "update",
|
||||
"line": 100,
|
||||
"args": [
|
||||
"[ir_translation.type]",
|
||||
"['report']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "ir_translation.type == 'odt'"
|
||||
},
|
||||
"code": "ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 106,
|
||||
"args": [
|
||||
"['lang', 'type', 'name']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['lang', 'type', 'name'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/trigger.py",
|
||||
"class": "Trigger",
|
||||
"method": "__register__",
|
||||
"line": 76,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 86,
|
||||
"args": [
|
||||
"*sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null)"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "select",
|
||||
"line": 86,
|
||||
"args": [
|
||||
"sql_table.id",
|
||||
"sql_table.minimum_delay"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.minimum_delay != Null"
|
||||
},
|
||||
"code": "sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null)",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 95,
|
||||
"args": [
|
||||
"'minimum_delay'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('minimum_delay')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/trigger.py",
|
||||
"class": "TriggerLog",
|
||||
"method": "__register__",
|
||||
"line": 303,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 307,
|
||||
"args": [
|
||||
"['trigger', 'record_id']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['trigger', 'record_id'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/ui/icon.py",
|
||||
"class": "Icon",
|
||||
"method": "__register__",
|
||||
"line": 33,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 39,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/ui/view.py",
|
||||
"class": "ViewTreeState",
|
||||
"method": "__register__",
|
||||
"line": 323,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 327,
|
||||
"args": [
|
||||
"['model', 'domain', 'user', 'child_name']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['model', 'domain', 'user', 'child_name'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.4.20",
|
||||
"version": "5.4",
|
||||
"module": "party",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.4.20",
|
||||
"version": "5.4",
|
||||
"module": "product",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.4.20",
|
||||
"version": "5.4",
|
||||
"module": "product_measurements",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.2.20",
|
||||
"version": "5.4",
|
||||
"module": "production",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.6.17",
|
||||
"version": "5.4",
|
||||
"module": "production_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"version": "5.4",
|
||||
"module": "res",
|
||||
"files": [
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/res/user.py",
|
||||
"class": "User",
|
||||
"method": "__register__",
|
||||
"line": 194,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 204,
|
||||
"args": [
|
||||
"*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new]))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "sqltable",
|
||||
"operation": "update",
|
||||
"line": 204,
|
||||
"args": [],
|
||||
"kwargs": {
|
||||
"columns": "[sqltable.password_hash]",
|
||||
"values": "[password_hash_new]"
|
||||
},
|
||||
"code": "sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 207,
|
||||
"args": [
|
||||
"'password'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('password')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 208,
|
||||
"args": [
|
||||
"'salt'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('salt')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 211,
|
||||
"args": [
|
||||
"'name'"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'remove'"
|
||||
},
|
||||
"code": "table.not_null_action('name', action='remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.4.20",
|
||||
"version": "5.4",
|
||||
"module": "stock_lot",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.6.17",
|
||||
"version": "5.4",
|
||||
"module": "stock_lot_sled",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.4.20",
|
||||
"version": "5.4",
|
||||
"module": "stock_product_location",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.6.17",
|
||||
"version": "5.4",
|
||||
"module": "stock_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.2.20",
|
||||
"version": "5.6",
|
||||
"module": "company",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.6.17",
|
||||
"version": "5.6",
|
||||
"module": "country",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.8.16",
|
||||
"version": "5.6",
|
||||
"module": "currency",
|
||||
"files": [
|
||||
{
|
||||
@@ -0,0 +1,747 @@
|
||||
{
|
||||
"version": "5.6",
|
||||
"module": "ir",
|
||||
"files": [
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionKeyword",
|
||||
"method": "__register__",
|
||||
"line": 152,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 156,
|
||||
"args": [
|
||||
"['keyword', 'model']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['keyword', 'model'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionReport",
|
||||
"method": "__register__",
|
||||
"line": 545,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 554,
|
||||
"args": [
|
||||
"'report_name_module_uniq'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('report_name_module_uniq')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 557,
|
||||
"args": [
|
||||
"*action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "action_report",
|
||||
"operation": "update",
|
||||
"line": 557,
|
||||
"args": [
|
||||
"[action_report.extension]",
|
||||
"['txt']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "action_report.extension == 'plain'"
|
||||
},
|
||||
"code": "action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindow",
|
||||
"method": "__register__",
|
||||
"line": 745,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 753,
|
||||
"args": [
|
||||
"'auto_refresh'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('auto_refresh')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 756,
|
||||
"args": [
|
||||
"'window_name'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('window_name')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 759,
|
||||
"args": [
|
||||
"'limit'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('limit', 'remove')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 760,
|
||||
"args": [
|
||||
"*act_window.update([act_window.limit], [Null], where=act_window.limit == 0)"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*act_window.update([act_window.limit], [Null], where=act_window.limit == 0))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "act_window",
|
||||
"operation": "update",
|
||||
"line": 760,
|
||||
"args": [
|
||||
"[act_window.limit]",
|
||||
"[Null]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "act_window.limit == 0"
|
||||
},
|
||||
"code": "act_window.update([act_window.limit], [Null], where=act_window.limit == 0)",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindowView",
|
||||
"method": "__register__",
|
||||
"line": 933,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 939,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindowDomain",
|
||||
"method": "__register__",
|
||||
"line": 972,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 978,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/attachment.py",
|
||||
"class": "Attachment",
|
||||
"method": "__register__",
|
||||
"line": 63,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 73,
|
||||
"args": [
|
||||
"*attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null)))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "attachment",
|
||||
"operation": "update",
|
||||
"line": 73,
|
||||
"args": [
|
||||
"[attachment.file_id]",
|
||||
"[attachment.digest]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(attachment.collision == 0) | (attachment.collision == Null)"
|
||||
},
|
||||
"code": "attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 78,
|
||||
"args": [
|
||||
"*attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null)))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "attachment",
|
||||
"operation": "update",
|
||||
"line": 78,
|
||||
"args": [
|
||||
"[attachment.file_id]",
|
||||
"[Concat(Concat(attachment.digest, '-'), attachment.collision)]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(attachment.collision != 0) & (attachment.collision != Null)"
|
||||
},
|
||||
"code": "attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 84,
|
||||
"args": [
|
||||
"'digest'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('digest')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 85,
|
||||
"args": [
|
||||
"'collision'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('collision')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 88,
|
||||
"args": [
|
||||
"'resource_name'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('resource_name')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/cron.py",
|
||||
"class": "Cron",
|
||||
"method": "__register__",
|
||||
"line": 69,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "not_null_action",
|
||||
"line": 80,
|
||||
"args": [
|
||||
"'next_call'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.not_null_action('next_call', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/model.py",
|
||||
"class": "ModelData",
|
||||
"method": "__register__",
|
||||
"line": 1157,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 1166,
|
||||
"args": [
|
||||
"*model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button'))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button')))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 1166,
|
||||
"args": [
|
||||
"[model_data.module]",
|
||||
"['ir']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button')"
|
||||
},
|
||||
"code": "model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "not_null_action",
|
||||
"line": 1172,
|
||||
"args": [
|
||||
"'db_id'"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'remove'"
|
||||
},
|
||||
"code": "table_h.not_null_action('db_id', action='remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/module.py",
|
||||
"class": "Module",
|
||||
"method": "__register__",
|
||||
"line": 103,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 118,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 118,
|
||||
"args": [
|
||||
"[sql_table.state]",
|
||||
"['activated']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.state == 'installed'"
|
||||
},
|
||||
"code": "sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 121,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 121,
|
||||
"args": [
|
||||
"[sql_table.state]",
|
||||
"['not activated']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.state == 'uninstalled'"
|
||||
},
|
||||
"code": "sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 134,
|
||||
"args": [
|
||||
"*model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids)))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data_sql_table",
|
||||
"operation": "update",
|
||||
"line": 134,
|
||||
"args": [
|
||||
"[model_data_sql_table.module]",
|
||||
"['ir']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids)"
|
||||
},
|
||||
"code": "model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids))",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/module.py",
|
||||
"class": "ModuleConfigWizardItem",
|
||||
"method": "__register__",
|
||||
"line": 393,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 403,
|
||||
"args": [
|
||||
"*model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item'))",
|
||||
"phase": "before_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 403,
|
||||
"args": [],
|
||||
"kwargs": {
|
||||
"columns": "[model_data.model]",
|
||||
"values": "[cls.__name__]",
|
||||
"where": "model_data.model == 'ir.module.module.config_wizard.item'"
|
||||
},
|
||||
"code": "model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item')",
|
||||
"phase": "before_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 414,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/queue.py",
|
||||
"class": "Queue",
|
||||
"method": "__register__",
|
||||
"line": 35,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "index_action",
|
||||
"line": 41,
|
||||
"args": [
|
||||
"[queue.scheduled_at.nulls_first, queue.expected_at.nulls_first, queue.dequeued_at, queue.name]"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'add'"
|
||||
},
|
||||
"code": "table_h.index_action([queue.scheduled_at.nulls_first, queue.expected_at.nulls_first, queue.dequeued_at, queue.name], action='add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/session.py",
|
||||
"class": "Session",
|
||||
"method": "__register__",
|
||||
"line": 36,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 40,
|
||||
"args": [
|
||||
"'create_uid'",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action('create_uid', 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/translation.py",
|
||||
"class": "Translation",
|
||||
"method": "__register__",
|
||||
"line": 86,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 94,
|
||||
"args": [
|
||||
"'translation_md5_uniq'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('translation_md5_uniq')",
|
||||
"phase": "before_super",
|
||||
"condition": "table.column_exist('src_md5')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 95,
|
||||
"args": [
|
||||
"'src_md5'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('src_md5')",
|
||||
"phase": "before_super",
|
||||
"condition": "table.column_exist('src_md5')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 100,
|
||||
"args": [
|
||||
"*ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "ir_translation",
|
||||
"operation": "update",
|
||||
"line": 100,
|
||||
"args": [
|
||||
"[ir_translation.type]",
|
||||
"['report']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "ir_translation.type == 'odt'"
|
||||
},
|
||||
"code": "ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 106,
|
||||
"args": [
|
||||
"['lang', 'type', 'name']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['lang', 'type', 'name'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/trigger.py",
|
||||
"class": "Trigger",
|
||||
"method": "__register__",
|
||||
"line": 77,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 89,
|
||||
"args": [
|
||||
"*sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null)"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "select",
|
||||
"line": 89,
|
||||
"args": [
|
||||
"sql_table.id",
|
||||
"sql_table.minimum_delay"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.minimum_delay != Null"
|
||||
},
|
||||
"code": "sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null)",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 98,
|
||||
"args": [
|
||||
"'minimum_delay'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('minimum_delay')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "model",
|
||||
"operation": "select",
|
||||
"line": 106,
|
||||
"args": [
|
||||
"model.model"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "model.id == sql_table.action_model"
|
||||
},
|
||||
"code": "model.select(model.model, where=model.id == sql_table.action_model)",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 108,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.action], [Concat(action_model, Concat('|', sql_table.action_function))])"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.action], [Concat(action_model, Concat('|', sql_table.action_function))]))",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 108,
|
||||
"args": [
|
||||
"[sql_table.action]",
|
||||
"[Concat(action_model, Concat('|', sql_table.action_function))]"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "sql_table.update([sql_table.action], [Concat(action_model, Concat('|', sql_table.action_function))])",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
},
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "drop_column",
|
||||
"line": 112,
|
||||
"args": [
|
||||
"'action_model'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.drop_column('action_model')",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
},
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "drop_column",
|
||||
"line": 113,
|
||||
"args": [
|
||||
"'action_function'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.drop_column('action_function')",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/trigger.py",
|
||||
"class": "TriggerLog",
|
||||
"method": "__register__",
|
||||
"line": 330,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 334,
|
||||
"args": [
|
||||
"['trigger', 'record_id']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['trigger', 'record_id'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/ui/icon.py",
|
||||
"class": "Icon",
|
||||
"method": "__register__",
|
||||
"line": 33,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 39,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/ui/view.py",
|
||||
"class": "ViewTreeState",
|
||||
"method": "__register__",
|
||||
"line": 323,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 327,
|
||||
"args": [
|
||||
"['model', 'domain', 'user', 'child_name']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['model', 'domain', 'user', 'child_name'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.6.17",
|
||||
"version": "5.6",
|
||||
"module": "party",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.6.17",
|
||||
"version": "5.6",
|
||||
"module": "product",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.6.17",
|
||||
"version": "5.6",
|
||||
"module": "product_measurements",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.6.17",
|
||||
"version": "5.6",
|
||||
"module": "production",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.0.63",
|
||||
"version": "5.6",
|
||||
"module": "production_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"version": "5.6",
|
||||
"module": "res",
|
||||
"files": [
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/res/user.py",
|
||||
"class": "User",
|
||||
"method": "__register__",
|
||||
"line": 195,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 205,
|
||||
"args": [
|
||||
"*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new]))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "sqltable",
|
||||
"operation": "update",
|
||||
"line": 205,
|
||||
"args": [],
|
||||
"kwargs": {
|
||||
"columns": "[sqltable.password_hash]",
|
||||
"values": "[password_hash_new]"
|
||||
},
|
||||
"code": "sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 208,
|
||||
"args": [
|
||||
"'password'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('password')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 209,
|
||||
"args": [
|
||||
"'salt'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('salt')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 212,
|
||||
"args": [
|
||||
"'name'"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'remove'"
|
||||
},
|
||||
"code": "table.not_null_action('name', action='remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.6.17",
|
||||
"version": "5.6",
|
||||
"module": "stock_lot",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.0.63",
|
||||
"version": "5.6",
|
||||
"module": "stock_lot_sled",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.6.17",
|
||||
"version": "5.6",
|
||||
"module": "stock_product_location",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.0.63",
|
||||
"version": "5.6",
|
||||
"module": "stock_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "5.8.16",
|
||||
"module": "company",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "5.8.16",
|
||||
"module": "product_measurements",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "5.8.16",
|
||||
"module": "production_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "5.8.16",
|
||||
"module": "stock_lot_sled",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "5.8.16",
|
||||
"module": "stock_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "5.8",
|
||||
"module": "company",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.8.16",
|
||||
"version": "5.8",
|
||||
"module": "country",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.6.17",
|
||||
"version": "5.8",
|
||||
"module": "currency",
|
||||
"files": [
|
||||
{
|
||||
@@ -0,0 +1,767 @@
|
||||
{
|
||||
"version": "5.8",
|
||||
"module": "ir",
|
||||
"files": [
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionKeyword",
|
||||
"method": "__register__",
|
||||
"line": 149,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 153,
|
||||
"args": [
|
||||
"['keyword', 'model']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['keyword', 'model'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionReport",
|
||||
"method": "__register__",
|
||||
"line": 525,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 534,
|
||||
"args": [
|
||||
"'report_name_module_uniq'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('report_name_module_uniq')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 537,
|
||||
"args": [
|
||||
"*action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "action_report",
|
||||
"operation": "update",
|
||||
"line": 537,
|
||||
"args": [
|
||||
"[action_report.extension]",
|
||||
"['txt']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "action_report.extension == 'plain'"
|
||||
},
|
||||
"code": "action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindow",
|
||||
"method": "__register__",
|
||||
"line": 705,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 713,
|
||||
"args": [
|
||||
"'auto_refresh'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('auto_refresh')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 716,
|
||||
"args": [
|
||||
"'window_name'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('window_name')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 719,
|
||||
"args": [
|
||||
"'limit'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('limit', 'remove')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 720,
|
||||
"args": [
|
||||
"*act_window.update([act_window.limit], [Null], where=act_window.limit == 0)"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*act_window.update([act_window.limit], [Null], where=act_window.limit == 0))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "act_window",
|
||||
"operation": "update",
|
||||
"line": 720,
|
||||
"args": [
|
||||
"[act_window.limit]",
|
||||
"[Null]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "act_window.limit == 0"
|
||||
},
|
||||
"code": "act_window.update([act_window.limit], [Null], where=act_window.limit == 0)",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindowView",
|
||||
"method": "__register__",
|
||||
"line": 893,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 899,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindowDomain",
|
||||
"method": "__register__",
|
||||
"line": 932,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 938,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/attachment.py",
|
||||
"class": "Attachment",
|
||||
"method": "__register__",
|
||||
"line": 63,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 73,
|
||||
"args": [
|
||||
"*attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null)))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "attachment",
|
||||
"operation": "update",
|
||||
"line": 73,
|
||||
"args": [
|
||||
"[attachment.file_id]",
|
||||
"[attachment.digest]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(attachment.collision == 0) | (attachment.collision == Null)"
|
||||
},
|
||||
"code": "attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 78,
|
||||
"args": [
|
||||
"*attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null)))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "attachment",
|
||||
"operation": "update",
|
||||
"line": 78,
|
||||
"args": [
|
||||
"[attachment.file_id]",
|
||||
"[Concat(Concat(attachment.digest, '-'), attachment.collision)]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(attachment.collision != 0) & (attachment.collision != Null)"
|
||||
},
|
||||
"code": "attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 84,
|
||||
"args": [
|
||||
"'digest'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('digest')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 85,
|
||||
"args": [
|
||||
"'collision'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('collision')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 88,
|
||||
"args": [
|
||||
"'resource_name'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('resource_name')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/cron.py",
|
||||
"class": "Cron",
|
||||
"method": "__register__",
|
||||
"line": 71,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "not_null_action",
|
||||
"line": 82,
|
||||
"args": [
|
||||
"'next_call'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.not_null_action('next_call', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/model.py",
|
||||
"class": "ModelData",
|
||||
"method": "__register__",
|
||||
"line": 1159,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 1168,
|
||||
"args": [
|
||||
"*model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button'))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button')))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 1168,
|
||||
"args": [
|
||||
"[model_data.module]",
|
||||
"['ir']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button')"
|
||||
},
|
||||
"code": "model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "not_null_action",
|
||||
"line": 1174,
|
||||
"args": [
|
||||
"'db_id'"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'remove'"
|
||||
},
|
||||
"code": "table_h.not_null_action('db_id', action='remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/module.py",
|
||||
"class": "Module",
|
||||
"method": "__register__",
|
||||
"line": 95,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 110,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 110,
|
||||
"args": [
|
||||
"[sql_table.state]",
|
||||
"['activated']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.state == 'installed'"
|
||||
},
|
||||
"code": "sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 113,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 113,
|
||||
"args": [
|
||||
"[sql_table.state]",
|
||||
"['not activated']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.state == 'uninstalled'"
|
||||
},
|
||||
"code": "sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 126,
|
||||
"args": [
|
||||
"*model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids)))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data_sql_table",
|
||||
"operation": "update",
|
||||
"line": 126,
|
||||
"args": [
|
||||
"[model_data_sql_table.module]",
|
||||
"['ir']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids)"
|
||||
},
|
||||
"code": "model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids))",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/module.py",
|
||||
"class": "ModuleConfigWizardItem",
|
||||
"method": "__register__",
|
||||
"line": 385,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 395,
|
||||
"args": [
|
||||
"*model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item'))",
|
||||
"phase": "before_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 395,
|
||||
"args": [],
|
||||
"kwargs": {
|
||||
"columns": "[model_data.model]",
|
||||
"values": "[cls.__name__]",
|
||||
"where": "model_data.model == 'ir.module.module.config_wizard.item'"
|
||||
},
|
||||
"code": "model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item')",
|
||||
"phase": "before_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 406,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/queue.py",
|
||||
"class": "Queue",
|
||||
"method": "__register__",
|
||||
"line": 36,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "index_action",
|
||||
"line": 42,
|
||||
"args": [
|
||||
"[queue.scheduled_at.nulls_first, queue.expected_at.nulls_first, queue.dequeued_at, queue.name]"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'add'"
|
||||
},
|
||||
"code": "table_h.index_action([queue.scheduled_at.nulls_first, queue.expected_at.nulls_first, queue.dequeued_at, queue.name], action='add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/session.py",
|
||||
"class": "Session",
|
||||
"method": "__register__",
|
||||
"line": 32,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 36,
|
||||
"args": [
|
||||
"'create_uid'",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action('create_uid', 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/translation.py",
|
||||
"class": "Translation",
|
||||
"method": "__register__",
|
||||
"line": 80,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 88,
|
||||
"args": [
|
||||
"'translation_md5_uniq'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('translation_md5_uniq')",
|
||||
"phase": "before_super",
|
||||
"condition": "table.column_exist('src_md5')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 89,
|
||||
"args": [
|
||||
"'src_md5'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('src_md5')",
|
||||
"phase": "before_super",
|
||||
"condition": "table.column_exist('src_md5')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 94,
|
||||
"args": [
|
||||
"*ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "ir_translation",
|
||||
"operation": "update",
|
||||
"line": 94,
|
||||
"args": [
|
||||
"[ir_translation.type]",
|
||||
"['report']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "ir_translation.type == 'odt'"
|
||||
},
|
||||
"code": "ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 100,
|
||||
"args": [
|
||||
"['lang', 'type', 'name']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['lang', 'type', 'name'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/trigger.py",
|
||||
"class": "Trigger",
|
||||
"method": "__register__",
|
||||
"line": 73,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 85,
|
||||
"args": [
|
||||
"*sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null)"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "select",
|
||||
"line": 85,
|
||||
"args": [
|
||||
"sql_table.id",
|
||||
"sql_table.minimum_delay"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.minimum_delay != Null"
|
||||
},
|
||||
"code": "sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null)",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 94,
|
||||
"args": [
|
||||
"'minimum_delay'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('minimum_delay')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "model",
|
||||
"operation": "select",
|
||||
"line": 102,
|
||||
"args": [
|
||||
"model.model"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "model.id == sql_table.action_model"
|
||||
},
|
||||
"code": "model.select(model.model, where=model.id == sql_table.action_model)",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 104,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.action], [Concat(action_model, Concat('|', sql_table.action_function))])"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.action], [Concat(action_model, Concat('|', sql_table.action_function))]))",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 104,
|
||||
"args": [
|
||||
"[sql_table.action]",
|
||||
"[Concat(action_model, Concat('|', sql_table.action_function))]"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "sql_table.update([sql_table.action], [Concat(action_model, Concat('|', sql_table.action_function))])",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
},
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "drop_column",
|
||||
"line": 108,
|
||||
"args": [
|
||||
"'action_model'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.drop_column('action_model')",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
},
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "drop_column",
|
||||
"line": 109,
|
||||
"args": [
|
||||
"'action_function'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.drop_column('action_function')",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/trigger.py",
|
||||
"class": "TriggerLog",
|
||||
"method": "__register__",
|
||||
"line": 327,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 331,
|
||||
"args": [
|
||||
"['trigger', 'record_id']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['trigger', 'record_id'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/ui/icon.py",
|
||||
"class": "Icon",
|
||||
"method": "__register__",
|
||||
"line": 29,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 35,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/ui/view.py",
|
||||
"class": "ViewTreeState",
|
||||
"method": "__register__",
|
||||
"line": 324,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 328,
|
||||
"args": [
|
||||
"['model', 'domain', 'user', 'child_name']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['model', 'domain', 'user', 'child_name'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/ui/view.py",
|
||||
"class": "ViewSearch",
|
||||
"method": "__register__",
|
||||
"line": 396,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "not_null_action",
|
||||
"line": 401,
|
||||
"args": [
|
||||
"'user'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.not_null_action('user', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.8.16",
|
||||
"version": "5.8",
|
||||
"module": "party",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.8.16",
|
||||
"version": "5.8",
|
||||
"module": "product",
|
||||
"files": [
|
||||
{
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "5.8",
|
||||
"module": "product_measurements",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.8.16",
|
||||
"version": "5.8",
|
||||
"module": "production",
|
||||
"files": [
|
||||
{
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "5.8",
|
||||
"module": "production_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
{
|
||||
"version": "5.8",
|
||||
"module": "res",
|
||||
"files": [
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/res/user.py",
|
||||
"class": "User",
|
||||
"method": "__register__",
|
||||
"line": 191,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 204,
|
||||
"args": [
|
||||
"*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new]))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "sqltable",
|
||||
"operation": "update",
|
||||
"line": 204,
|
||||
"args": [],
|
||||
"kwargs": {
|
||||
"columns": "[sqltable.password_hash]",
|
||||
"values": "[password_hash_new]"
|
||||
},
|
||||
"code": "sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 207,
|
||||
"args": [
|
||||
"'password'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('password')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 208,
|
||||
"args": [
|
||||
"'salt'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('salt')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 211,
|
||||
"args": [
|
||||
"'name'"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'remove'"
|
||||
},
|
||||
"code": "table.not_null_action('name', action='remove')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 214,
|
||||
"args": [
|
||||
"*model_data.update([model_data.noupdate], [True], where=(model_data.model == cls.__name__) & (model_data.module == 'res') & (model_data.fs_id == 'user_admin'))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update([model_data.noupdate], [True], where=(model_data.model == cls.__name__) & (model_data.module == 'res') & (model_data.fs_id == 'user_admin')))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 214,
|
||||
"args": [
|
||||
"[model_data.noupdate]",
|
||||
"[True]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data.model == cls.__name__) & (model_data.module == 'res') & (model_data.fs_id == 'user_admin')"
|
||||
},
|
||||
"code": "model_data.update([model_data.noupdate], [True], where=(model_data.model == cls.__name__) & (model_data.module == 'res') & (model_data.fs_id == 'user_admin'))",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.8.16",
|
||||
"version": "5.8",
|
||||
"module": "stock_lot",
|
||||
"files": [
|
||||
{
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "5.8",
|
||||
"module": "stock_lot_sled",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "5.8.16",
|
||||
"version": "5.8",
|
||||
"module": "stock_product_location",
|
||||
"files": [
|
||||
{
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "5.8",
|
||||
"module": "stock_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "6.0.76",
|
||||
"module": "product_measurements",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "6.0.76",
|
||||
"module": "production_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "6.0.76",
|
||||
"module": "stock_lot_sled",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": "6.0.76",
|
||||
"module": "stock_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "6.0.76",
|
||||
"version": "6.0",
|
||||
"module": "company",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "6.2.14",
|
||||
"version": "6.0",
|
||||
"module": "country",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "6.4.16",
|
||||
"version": "6.0",
|
||||
"module": "currency",
|
||||
"files": [
|
||||
{
|
||||
@@ -0,0 +1,847 @@
|
||||
{
|
||||
"version": "6.0",
|
||||
"module": "ir",
|
||||
"files": [
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionKeyword",
|
||||
"method": "__register__",
|
||||
"line": 166,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 170,
|
||||
"args": [
|
||||
"['keyword', 'model']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['keyword', 'model'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionReport",
|
||||
"method": "__register__",
|
||||
"line": 558,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 567,
|
||||
"args": [
|
||||
"'report_name_module_uniq'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('report_name_module_uniq')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 570,
|
||||
"args": [
|
||||
"*action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "action_report",
|
||||
"operation": "update",
|
||||
"line": 570,
|
||||
"args": [
|
||||
"[action_report.extension]",
|
||||
"['txt']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "action_report.extension == 'plain'"
|
||||
},
|
||||
"code": "action_report.update([action_report.extension], ['txt'], where=action_report.extension == 'plain')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindow",
|
||||
"method": "__register__",
|
||||
"line": 732,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 740,
|
||||
"args": [
|
||||
"'auto_refresh'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('auto_refresh')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 743,
|
||||
"args": [
|
||||
"'window_name'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('window_name')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 746,
|
||||
"args": [
|
||||
"'limit'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('limit', 'remove')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 747,
|
||||
"args": [
|
||||
"*act_window.update([act_window.limit], [Null], where=act_window.limit == 0)"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*act_window.update([act_window.limit], [Null], where=act_window.limit == 0))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "act_window",
|
||||
"operation": "update",
|
||||
"line": 747,
|
||||
"args": [
|
||||
"[act_window.limit]",
|
||||
"[Null]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "act_window.limit == 0"
|
||||
},
|
||||
"code": "act_window.update([act_window.limit], [Null], where=act_window.limit == 0)",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindowView",
|
||||
"method": "__register__",
|
||||
"line": 920,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 926,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/action.py",
|
||||
"class": "ActionActWindowDomain",
|
||||
"method": "__register__",
|
||||
"line": 959,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 965,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/attachment.py",
|
||||
"class": "Attachment",
|
||||
"method": "__register__",
|
||||
"line": 58,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 68,
|
||||
"args": [
|
||||
"*attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null)))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "attachment",
|
||||
"operation": "update",
|
||||
"line": 68,
|
||||
"args": [
|
||||
"[attachment.file_id]",
|
||||
"[attachment.digest]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(attachment.collision == 0) | (attachment.collision == Null)"
|
||||
},
|
||||
"code": "attachment.update([attachment.file_id], [attachment.digest], where=(attachment.collision == 0) | (attachment.collision == Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 73,
|
||||
"args": [
|
||||
"*attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null)))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "attachment",
|
||||
"operation": "update",
|
||||
"line": 73,
|
||||
"args": [
|
||||
"[attachment.file_id]",
|
||||
"[Concat(Concat(attachment.digest, '-'), attachment.collision)]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(attachment.collision != 0) & (attachment.collision != Null)"
|
||||
},
|
||||
"code": "attachment.update([attachment.file_id], [Concat(Concat(attachment.digest, '-'), attachment.collision)], where=(attachment.collision != 0) & (attachment.collision != Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 79,
|
||||
"args": [
|
||||
"'digest'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('digest')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 80,
|
||||
"args": [
|
||||
"'collision'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('collision')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('digest') and table.column_exist('collision')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 83,
|
||||
"args": [
|
||||
"'resource_name'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('resource_name')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/cron.py",
|
||||
"class": "Cron",
|
||||
"method": "__register__",
|
||||
"line": 84,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "not_null_action",
|
||||
"line": 95,
|
||||
"args": [
|
||||
"'next_call'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.not_null_action('next_call', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/model.py",
|
||||
"class": "ModelData",
|
||||
"method": "__register__",
|
||||
"line": 1203,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 1212,
|
||||
"args": [
|
||||
"*model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button'))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button')))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 1212,
|
||||
"args": [
|
||||
"[model_data.module]",
|
||||
"['ir']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button')"
|
||||
},
|
||||
"code": "model_data.update([model_data.module], ['ir'], where=(model_data.module == 'res') & (model_data.fs_id == 'model_data_sync_button'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "not_null_action",
|
||||
"line": 1218,
|
||||
"args": [
|
||||
"'db_id'"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'remove'"
|
||||
},
|
||||
"code": "table_h.not_null_action('db_id', action='remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/module.py",
|
||||
"class": "Module",
|
||||
"method": "__register__",
|
||||
"line": 96,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 111,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 111,
|
||||
"args": [
|
||||
"[sql_table.state]",
|
||||
"['activated']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.state == 'installed'"
|
||||
},
|
||||
"code": "sql_table.update([sql_table.state], ['activated'], where=sql_table.state == 'installed')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 114,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 114,
|
||||
"args": [
|
||||
"[sql_table.state]",
|
||||
"['not activated']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.state == 'uninstalled'"
|
||||
},
|
||||
"code": "sql_table.update([sql_table.state], ['not activated'], where=sql_table.state == 'uninstalled')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 127,
|
||||
"args": [
|
||||
"*model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids)))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data_sql_table",
|
||||
"operation": "update",
|
||||
"line": 127,
|
||||
"args": [
|
||||
"[model_data_sql_table.module]",
|
||||
"['ir']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids)"
|
||||
},
|
||||
"code": "model_data_sql_table.update([model_data_sql_table.module], ['ir'], where=(model_data_sql_table.module == 'res') & model_data_sql_table.fs_id.in_(button_fs_ids))",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/module.py",
|
||||
"class": "ModuleConfigWizardItem",
|
||||
"method": "__register__",
|
||||
"line": 386,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 396,
|
||||
"args": [
|
||||
"*model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item'))",
|
||||
"phase": "before_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 396,
|
||||
"args": [],
|
||||
"kwargs": {
|
||||
"columns": "[model_data.model]",
|
||||
"values": "[cls.__name__]",
|
||||
"where": "model_data.model == 'ir.module.module.config_wizard.item'"
|
||||
},
|
||||
"code": "model_data.update(columns=[model_data.model], values=[cls.__name__], where=model_data.model == 'ir.module.module.config_wizard.item')",
|
||||
"phase": "before_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 407,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/queue.py",
|
||||
"class": "Queue",
|
||||
"method": "__register__",
|
||||
"line": 36,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "index_action",
|
||||
"line": 42,
|
||||
"args": [
|
||||
"[queue.scheduled_at.nulls_first, queue.expected_at.nulls_first, queue.dequeued_at, queue.name]"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'add'"
|
||||
},
|
||||
"code": "table_h.index_action([queue.scheduled_at.nulls_first, queue.expected_at.nulls_first, queue.dequeued_at, queue.name], action='add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/sequence.py",
|
||||
"class": "SequenceType",
|
||||
"method": "__register__",
|
||||
"line": 39,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "not_null_action",
|
||||
"line": 45,
|
||||
"args": [
|
||||
"'code'"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'remove'"
|
||||
},
|
||||
"code": "table_h.not_null_action('code', action='remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/sequence.py",
|
||||
"class": "Sequence",
|
||||
"method": "__register__",
|
||||
"line": 115,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 128,
|
||||
"args": [
|
||||
"*table.update([table.sequence_type], sequence_type.select(sequence_type.id, where=sequence_type.code == table.code))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*table.update([table.sequence_type], sequence_type.select(sequence_type.id, where=sequence_type.code == table.code)))",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('code')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "update",
|
||||
"line": 128,
|
||||
"args": [
|
||||
"[table.sequence_type]",
|
||||
"sequence_type.select(sequence_type.id, where=sequence_type.code == table.code)"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.update([table.sequence_type], sequence_type.select(sequence_type.id, where=sequence_type.code == table.code))",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('code')"
|
||||
},
|
||||
{
|
||||
"object": "sequence_type",
|
||||
"operation": "select",
|
||||
"line": 130,
|
||||
"args": [
|
||||
"sequence_type.id"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sequence_type.code == table.code"
|
||||
},
|
||||
"code": "sequence_type.select(sequence_type.id, where=sequence_type.code == table.code)",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('code')"
|
||||
},
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "drop_column",
|
||||
"line": 133,
|
||||
"args": [
|
||||
"'code'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.drop_column('code')",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('code')"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/session.py",
|
||||
"class": "Session",
|
||||
"method": "__register__",
|
||||
"line": 32,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 36,
|
||||
"args": [
|
||||
"'create_uid'",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action('create_uid', 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/translation.py",
|
||||
"class": "Translation",
|
||||
"method": "__register__",
|
||||
"line": 80,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_constraint",
|
||||
"line": 88,
|
||||
"args": [
|
||||
"'translation_md5_uniq'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_constraint('translation_md5_uniq')",
|
||||
"phase": "before_super",
|
||||
"condition": "table.column_exist('src_md5')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 89,
|
||||
"args": [
|
||||
"'src_md5'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('src_md5')",
|
||||
"phase": "before_super",
|
||||
"condition": "table.column_exist('src_md5')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 94,
|
||||
"args": [
|
||||
"*ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt')"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt'))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "ir_translation",
|
||||
"operation": "update",
|
||||
"line": 94,
|
||||
"args": [
|
||||
"[ir_translation.type]",
|
||||
"['report']"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "ir_translation.type == 'odt'"
|
||||
},
|
||||
"code": "ir_translation.update([ir_translation.type], ['report'], where=ir_translation.type == 'odt')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 100,
|
||||
"args": [
|
||||
"['lang', 'type', 'name']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['lang', 'type', 'name'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/trigger.py",
|
||||
"class": "Trigger",
|
||||
"method": "__register__",
|
||||
"line": 73,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 85,
|
||||
"args": [
|
||||
"*sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null)"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "select",
|
||||
"line": 85,
|
||||
"args": [
|
||||
"sql_table.id",
|
||||
"sql_table.minimum_delay"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "sql_table.minimum_delay != Null"
|
||||
},
|
||||
"code": "sql_table.select(sql_table.id, sql_table.minimum_delay, where=sql_table.minimum_delay != Null)",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 94,
|
||||
"args": [
|
||||
"'minimum_delay'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('minimum_delay')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('minimum_delay')"
|
||||
},
|
||||
{
|
||||
"object": "model",
|
||||
"operation": "select",
|
||||
"line": 102,
|
||||
"args": [
|
||||
"model.model"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "model.id == sql_table.action_model"
|
||||
},
|
||||
"code": "model.select(model.model, where=model.id == sql_table.action_model)",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 104,
|
||||
"args": [
|
||||
"*sql_table.update([sql_table.action], [Concat(action_model, Concat('|', sql_table.action_function))])"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sql_table.update([sql_table.action], [Concat(action_model, Concat('|', sql_table.action_function))]))",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
},
|
||||
{
|
||||
"object": "sql_table",
|
||||
"operation": "update",
|
||||
"line": 104,
|
||||
"args": [
|
||||
"[sql_table.action]",
|
||||
"[Concat(action_model, Concat('|', sql_table.action_function))]"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "sql_table.update([sql_table.action], [Concat(action_model, Concat('|', sql_table.action_function))])",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
},
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "drop_column",
|
||||
"line": 108,
|
||||
"args": [
|
||||
"'action_model'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.drop_column('action_model')",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
},
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "drop_column",
|
||||
"line": 109,
|
||||
"args": [
|
||||
"'action_function'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.drop_column('action_function')",
|
||||
"phase": "after_super",
|
||||
"condition": "table_h.column_exist('action_model') and table_h.column_exist('action_function')"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/trigger.py",
|
||||
"class": "TriggerLog",
|
||||
"method": "__register__",
|
||||
"line": 327,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 331,
|
||||
"args": [
|
||||
"['trigger', 'record_id']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['trigger', 'record_id'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/ui/icon.py",
|
||||
"class": "Icon",
|
||||
"method": "__register__",
|
||||
"line": 29,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 35,
|
||||
"args": [
|
||||
"'sequence'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.not_null_action('sequence', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/ui/view.py",
|
||||
"class": "ViewTreeState",
|
||||
"method": "__register__",
|
||||
"line": 317,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "index_action",
|
||||
"line": 321,
|
||||
"args": [
|
||||
"['model', 'domain', 'user', 'child_name']",
|
||||
"'add'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.index_action(['model', 'domain', 'user', 'child_name'], 'add')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/ir/ui/view.py",
|
||||
"class": "ViewSearch",
|
||||
"method": "__register__",
|
||||
"line": 389,
|
||||
"operations": [
|
||||
{
|
||||
"object": "table_h",
|
||||
"operation": "not_null_action",
|
||||
"line": 394,
|
||||
"args": [
|
||||
"'user'",
|
||||
"'remove'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table_h.not_null_action('user', 'remove')",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "6.0.76",
|
||||
"version": "6.0",
|
||||
"module": "party",
|
||||
"files": [
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "6.0.76",
|
||||
"version": "6.0",
|
||||
"module": "product",
|
||||
"files": [
|
||||
{
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "6.0",
|
||||
"module": "product_measurements",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "6.0.76",
|
||||
"version": "6.0",
|
||||
"module": "production",
|
||||
"files": [
|
||||
{
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "6.0",
|
||||
"module": "production_split",
|
||||
"files": []
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
{
|
||||
"version": "6.0",
|
||||
"module": "res",
|
||||
"files": [
|
||||
{
|
||||
"file": "/home/uha4/tmp/tryton/trytond/trytond/res/user.py",
|
||||
"class": "User",
|
||||
"method": "__register__",
|
||||
"line": 197,
|
||||
"operations": [
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 210,
|
||||
"args": [
|
||||
"*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new]))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "sqltable",
|
||||
"operation": "update",
|
||||
"line": 210,
|
||||
"args": [],
|
||||
"kwargs": {
|
||||
"columns": "[sqltable.password_hash]",
|
||||
"values": "[password_hash_new]"
|
||||
},
|
||||
"code": "sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 213,
|
||||
"args": [
|
||||
"'password'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('password')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "drop_column",
|
||||
"line": 214,
|
||||
"args": [
|
||||
"'salt'"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "table.drop_column('salt')",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
{
|
||||
"object": "table",
|
||||
"operation": "not_null_action",
|
||||
"line": 217,
|
||||
"args": [
|
||||
"'name'"
|
||||
],
|
||||
"kwargs": {
|
||||
"action": "'remove'"
|
||||
},
|
||||
"code": "table.not_null_action('name', action='remove')",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "cursor",
|
||||
"operation": "execute",
|
||||
"line": 220,
|
||||
"args": [
|
||||
"*model_data.update([model_data.noupdate], [True], where=(model_data.model == cls.__name__) & (model_data.module == 'res') & (model_data.fs_id == 'user_admin'))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update([model_data.noupdate], [True], where=(model_data.model == cls.__name__) & (model_data.module == 'res') & (model_data.fs_id == 'user_admin')))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
"object": "model_data",
|
||||
"operation": "update",
|
||||
"line": 220,
|
||||
"args": [
|
||||
"[model_data.noupdate]",
|
||||
"[True]"
|
||||
],
|
||||
"kwargs": {
|
||||
"where": "(model_data.model == cls.__name__) & (model_data.module == 'res') & (model_data.fs_id == 'user_admin')"
|
||||
},
|
||||
"code": "model_data.update([model_data.noupdate], [True], where=(model_data.model == cls.__name__) & (model_data.module == 'res') & (model_data.fs_id == 'user_admin'))",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "6.0.76",
|
||||
"version": "6.0",
|
||||
"module": "stock_lot",
|
||||
"files": [
|
||||
{
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "6.0",
|
||||
"module": "stock_lot_sled",
|
||||
"files": []
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "6.2.14",
|
||||
"version": "6.0",
|
||||
"module": "stock_product_location",
|
||||
"files": [
|
||||
{
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "6.0",
|
||||
"module": "stock_split",
|
||||
"files": []
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user