NINS_CODE/bahmni_config/openmrs/apps/customDisplayControl/views/admissionFormHeader.html

59 lines
1.6 KiB
HTML
Raw Normal View History

2024-12-12 22:37:39 +06:00
<style>
.header_style {
width: 100%;
height: 8%;
padding-top: 5px;
}
.left-header_style {
float: left;
width: 15%;
padding-left: 3px;
}
.middle-header_style {
float: left;
width: 50%;
text-align: center;
}
.right-header_style {
float: right;
width: 30%;
}
#barcode {
width: 3cm;
height: 20px;
padding-right: 4px;
padding-bottom: 3px;
float: right;
}
</style>
<div class="container" style="height: 10%; padding-bottom: 0px;">
<div style="width:100%">
<img src="/bahmni_config/openmrs/apps/registration/healthIDCardLayout/images/nins-header.png" width="100%"/>
</div>
</div>
<div style="text-align: center; padding-top: 4px; font-size: 18px; overflow: hidden;">
<div class="bdForm">
<span style="font-size:11px; float:left;">বাংলাদেশ ফরম নং - ৭৬৭</span>
</div>
<b>রোগী ভর্তির ফরম ও রোগ বৃত্তান্ত</b>
<span><img id="barcode"
jsbarcode-value="{{patient.identifier}}"
jsbarcode-width="2"
jsbarcode-height="35"
jsbarcode-margin="0"
jsbarcode-displayValue="false"
jsbarcode-textAlign="left"
jsbarcode-textMargin="0"
jsbarcode-fontSize="4"
/></span>
</div>
<script type="text/javascript" src="/bahmni_config/openmrs/apps/JsBarcode.all.min.js"></script>
<script>
(function () {
JsBarcode("#barcode").init();
})();
</script>