summaryrefslogtreecommitdiff
path: root/fixco_custom
diff options
context:
space:
mode:
Diffstat (limited to 'fixco_custom')
-rw-r--r--fixco_custom/views/report_picking_list_new.xml19
1 files changed, 18 insertions, 1 deletions
diff --git a/fixco_custom/views/report_picking_list_new.xml b/fixco_custom/views/report_picking_list_new.xml
index 673e394..277dbed 100644
--- a/fixco_custom/views/report_picking_list_new.xml
+++ b/fixco_custom/views/report_picking_list_new.xml
@@ -65,7 +65,21 @@
.duplicate-watermark img {
width: 400px;
}
-
+ body {
+ counter-reset: page;
+ }
+ .footer-page-number {
+ position: absolute;
+ bottom: 5px;
+ right: 10px;
+ font-size: 16px;
+ font-weight: bold;
+ }
+ .page-number:after {
+ font-size: 16px;
+ counter-increment: page;
+ content: "Page " counter(page) " of " " <t t-esc="len(docs)"/>";
+ }
</style>
<t t-foreach="docs" t-as="o">
@@ -175,6 +189,9 @@
<strong>Catatan:</strong>
<p t-field="o.note"/>
</div>
+ <div class="footer-page-number">
+ <span class="page-number"></span>
+ </div>
</div>
</div>
</t>