Skip to content
Snippets Groups Projects
Commit fee44f5a authored by Solan Delvenne (sode)'s avatar Solan Delvenne (sode)
Browse files

[FIX] snailmail: fix follow-up reports layout for snailmails


Follow-up reports were previously not handled by the commit fixing
invoices. This commit aims to fix that.

closes odoo/odoo#107770

X-original-commit: 768cfbe0
Signed-off-by: default avatarFlorian Daloze (fda) <fda@odoo.com>
Signed-off-by: default avatarSolan Delvenne (sode) <sode@odoo.com>
parent 7f34dd5d
No related branches found
No related tags found
No related merge requests found
// Change address font-size if needed
document.addEventListener('DOMContentLoaded', function (evt) {
var recipientAddress = document.querySelector(".address.row > div[name='address'] > address");
let baseSize = 120;
if (!recipientAddress) {
recipientAddress = document.querySelector("div .row.fallback_header > div.col-5.offset-7 > div:first-child");
}
var style = window.getComputedStyle(recipientAddress, null);
var height = parseFloat(style.getPropertyValue('height'));
var fontSize = parseFloat(style.getPropertyValue('font-size'));
recipientAddress.style.fontSize = (130 / (height / fontSize)) + 'px';
recipientAddress.style.fontSize = (baseSize / (height / fontSize)) + 'px';
});
......@@ -52,3 +52,28 @@ div .address.row > div[name="address"] {
max-height: 33mm;
}
}
/* Follow-up Letters */
div .pt-5:empty {
display: none;
}
div .row.fallback_header {
margin-top: -4mm !important;
height: 68mm !important;
width: 117% !important;
> div .col-5.offset-7 {
background-color: #ffffff;
margin-left: 48.5% !important;
position: relative !important;
> div:first-child {
width: 100%;
padding-left: 2mm !important;
height: 33mm;
max-height: 33mm !important;
line-height: 1.1em;
position: absolute;
bottom: 0;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment