Skip a cell if there is no value-type attribute set in it.

Fixes Issue #148.
This commit is contained in:
František Žiačik 2015-03-03 17:23:18 +01:00
parent 52a8f7e362
commit af686693b9

20
ods.js

@ -300,20 +300,24 @@ var parse_content_xml = (function() {
case 'date': q.t = 'n'; q.v = datenum(ctag['date-value']); q.z = 'm/d/yy'; break;
case 'time': q.t = 'n'; q.v = parse_isodur(ctag['time-value'])/86400; break;
case 'string': q.t = 's'; break;
default: throw new Error('Unsupported value type ' + q.t);
case undefined: q = null; break;
default : throw new Error('Unsupported value type ' + q.t);
}
} else {
if(q.t === 's') q.v = textp;
if(textp) q.w = textp;
if(!(opts.sheetRows && opts.sheetRows < R)) {
for (var i = 0; i < columnRepeatCount; i++) {
if (i > 0) {
q = simpleCloneOf(q);
if (q) {
if(q.t === 's') q.v = textp;
if(textp) q.w = textp;
if(!(opts.sheetRows && opts.sheetRows < R)) {
for (var i = 0; i < columnRepeatCount; i++) {
if (i > 0) {
q = simpleCloneOf(q);
}
ws[get_utils().encode_cell({r:R,c:C - columnRepeatCount + i + 1})] = q;
}
ws[get_utils().encode_cell({r:R,c:C - columnRepeatCount + i + 1})] = q;
}
}
q = null;
textp = null;
}
break; // 9.1.4 <table:table-cell>