Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
1009 มุมมอง

Hello,


I was wondering if there is a way to display our customers mobile number on the invoice below the address. ?


Thank you

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Yes, you can display the customer's mobile number below the address on the invoice in Odoo 17 by customizing the invoice report template. To do this, go to the invoice layout and add the following code after the address field:

<div>

<span t-if="partner_id.mobile">Mobile: <span t-esc="partner_id.mobile"/></span>

</div>


Hope it helps

อวตาร
ละทิ้ง