summaryrefslogtreecommitdiff
path: root/fixco_custom/views
diff options
context:
space:
mode:
authorMqdd <ahmadmiqdad27@gmail.com>2026-01-14 13:57:47 +0700
committerMqdd <ahmadmiqdad27@gmail.com>2026-01-14 13:57:47 +0700
commit467d67725055822e048e2e0a689a8cc3ffe4a271 (patch)
tree39f4dcd5065a4ffc39cfade321348d539eda6e64 /fixco_custom/views
parentd7cafd5a4db30b08dceabf8999a0903b6871368d (diff)
<Miqdad> pagination pickinglist
Diffstat (limited to 'fixco_custom/views')
-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>