修复列表总计合计与单项合计错开了一列
This commit is contained in:
@@ -131,6 +131,22 @@ patch(ListRenderer.prototype, 'jikimo_frontend.ListRenderer', {
|
|||||||
dom.addClass('addRequired')
|
dom.addClass('addRequired')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
try {
|
||||||
|
const dom = this.tableRef.el
|
||||||
|
if(dom ) {
|
||||||
|
const tfoot = $(dom).children('tfoot')
|
||||||
|
const tbooy = $(dom).children('tbody')
|
||||||
|
if(tfoot.length) {
|
||||||
|
const tfoot_tr = tfoot.children().eq(0)
|
||||||
|
const tbody_tr = tbooy.children().eq(0)
|
||||||
|
if(tfoot_tr.children().length < tbody_tr.children().length) {
|
||||||
|
tfoot_tr.prepend('<td class="prepend">')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.log(e)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@@ -489,3 +489,6 @@ div:has(.o_required_modifier) > label::before {
|
|||||||
top: 50%;
|
top: 50%;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
}
|
}
|
||||||
|
.o_list_renderer .o_list_table tfoot .o_list_number {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user