how i can put a div in the bottom of the last page of a qweb pdf report?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- ลูกค้าสัมพันธ์
- e-Commerce
- ระบบบัญชี
- สินค้าคงคลัง
- PoS
- Project
- MRP
คำถามนี้ถูกตั้งค่าสถานะ
Hi Jesús Ventosinos,
This is doable in QWEB report too!
You have to extend (Override) subset function which is defined in 'report' module.
You have to add piece of code inside the subset function : static/src/js/subst.js
var operations = {
'bottom-page': function (elt) { elt.style.visibility = (vars.page === vars.topage) ? "visible" : "hidden"; },
};
for (var klass in operations) {
var y = document.getElementsByClassName(klass);
for (var j=0; j<y.length; ++j) operations[klass](y[j]);
}
<div class="bottom-page">
This content will dislpay only in last page.. now you can add this div where you want.. header ,body or footer it will display on last page only.
<div>
Hope this will helps.
Regards,
Anil.
สนุกกับการพูดคุยนี้ใช่ไหม? เข้าร่วมเลย!
สร้างบัญชีวันนี้เพื่อเพลิดเพลินไปกับฟีเจอร์พิเศษและมีส่วนร่วมกับคอมมูนิตี้ที่ยอดเยี่ยมของเรา!
ลงชื่อRelated Posts | ตอบกลับ | มุมมอง | กิจกรรม | |
---|---|---|---|---|
|
1
เม.ย. 25
|
1208 | ||
|
2
มี.ค. 25
|
1348 | ||
|
4
พ.ย. 24
|
7067 | ||
|
1
มี.ค. 24
|
1985 | ||
|
3
ก.ย. 23
|
24798 |