@@ -275,13 +275,19 @@ def convert_html_columns(cr, table, columns, converter_callback, where_column="I
275
275
update_sql = ", " .join (f'"{ column } " = %({ column } )s' for column in columns )
276
276
update_query = f"UPDATE { table } SET { update_sql } WHERE id = %(id)s"
277
277
278
+ matched_count = 0
279
+ converted_count = 0
278
280
with ProcessPoolExecutor (max_workers = util .get_max_workers ()) as executor :
279
281
convert = Convertor (converters , converter_callback )
280
282
for query in util .log_progress (split_queries , logger = _logger , qualifier = f"{ table } updates" ):
281
283
cr .execute (query )
282
284
for data in executor .map (convert , cr .fetchall ()):
285
+ matched_count += 1
283
286
if "id" in data :
284
287
cr .execute (update_query , data )
288
+ converted_count += 1
289
+
290
+ return matched_count , converted_count
285
291
286
292
287
293
def determine_chunk_limit_ids (cr , table , column_arr , where ):
@@ -304,6 +310,7 @@ def convert_html_content(
304
310
cr ,
305
311
converter_callback ,
306
312
where_column = "IS NOT NULL" ,
313
+ verbose = False ,
307
314
** kwargs ,
308
315
):
309
316
r"""
@@ -316,16 +323,35 @@ def convert_html_content(
316
323
:param str where_column: filtering such as
317
324
- "like '%abc%xyz%'"
318
325
- "~* '\yabc.*xyz\y'"
326
+ :param bool verbose: print stats about the conversion
319
327
:param dict kwargs: extra keyword arguments to pass to :func:`convert_html_column`
320
328
"""
321
- convert_html_columns (
329
+ if verbose :
330
+ _logger .info ("Converting html fields data using %s" , repr (converter_callback ))
331
+
332
+ matched_count = 0
333
+ converted_count = 0
334
+
335
+ matched , converted = convert_html_columns (
322
336
cr ,
323
337
"ir_ui_view" ,
324
338
["arch_db" ],
325
339
converter_callback ,
326
340
where_column = where_column ,
327
341
** dict (kwargs , extra_where = "type = 'qweb'" ),
328
342
)
343
+ matched_count += matched
344
+ converted_count += converted
329
345
330
346
for table , columns in html_fields (cr ):
331
- convert_html_columns (cr , table , columns , converter_callback , where_column = where_column , ** kwargs )
347
+ matched , converted = convert_html_columns (
348
+ cr , table , columns , converter_callback , where_column = where_column , ** kwargs
349
+ )
350
+ matched_count += matched
351
+ converted_count += converted
352
+
353
+ if verbose :
354
+ if matched_count :
355
+ _logger .info ("Converted %d/%d matched html fields values" , converted_count , matched_count )
356
+ else :
357
+ _logger .info ("Did not match any html fields values to convert" )
0 commit comments