muk-it / muk_web

MuK Odoo Web Modules
GNU Lesser General Public License v3.0
110 stars 232 forks source link

11.0 #77

Closed kopeyev closed 5 years ago

kopeyev commented 5 years ago

If the number of columns in the first row is not equal to the number of others, it is not converted correctly, in short, it converts only the number of columns in each row that the first row contains. SOLVED. In muk_web_preview_msoffice/static/src/js/preview_handler.js after line 119 ("""$pane.attr('id', 'sheet-' + index);""") add following: """var maximum_arrs = 1; sheet.forEach(function (arr) { if(arr.length>maximum_arrs){ maximum_arrs = arr.length; } }); sheet.forEach(function (arr) { if(arr.length<maximum_arrs){ for (var i = arr.length; i < maximum_arrs; i++) { arr.push(""); } } });"""

keshrath commented 5 years ago

That looks wrong to me. Please only do the necessary changes for https://github.com/muk-it/muk_web/issues/60

kopeyev commented 5 years ago

sorry, it was my first PR