Skip to content

Commit 6e508b4

Browse files
committed
wip
1 parent bb68733 commit 6e508b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/util/spreadsheet/misc.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ def _magic_spreadsheet_field(cr):
8585
return cr.fetchone()[0] and 'spreadsheet_binary_data' or 'data'
8686

8787
def apply_in_all_spreadsheets(cr, like_pattern, callback):
88-
print("like pattern : ", like_pattern)
88+
# print("like pattern : ", like_pattern)
8989
b = False
9090
# upgrade the initial data and all revisions based on it
9191
for attachment_id, res_model, res_id, db_datas in read_spreadsheet_initial_data(cr, like_pattern):
92-
print("attachment : ", attachment_id)
92+
print("attachment data id: ", attachment_id)
9393
print("datas: ", len(db_datas))
9494
b = True
9595

@@ -122,7 +122,7 @@ def apply_in_all_spreadsheets(cr, like_pattern, callback):
122122
b = False
123123
# upgrade snapshots
124124
for attachment_id, _res_model, _res_id, db_datas in read_spreadsheet_snapshots(cr, like_pattern):
125-
print("attachment : ", attachment_id)
125+
print("attachment snapshot id: ", attachment_id)
126126

127127
b=True
128128
data, revisions = callback(db_datas, [])

0 commit comments

Comments
 (0)