Hi,
Could anyone point me in the direction on how to change the text in the receipt footer that says Odoo Restaurant?
Many thanks
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi,
Could anyone point me in the direction on how to change the text in the receipt footer that says Odoo Restaurant?
Many thanks
Hi,
To remove 'Odoo Restuarant" from your restaurant receipt, you can inherit the template "pos_restaurant.OrderReceipt" in your custom module, and then replace the code
example:
<t t-name="inherit_OrderReceipt" t-inherit="pos_restaurant.
<xpath expr="//p[text()='Odoo Point of Sale']" position="replace">
<p t-if="props.data.isRestaurant"
<p t-else="">Odoo Point of Sale</p>
</xpath>
</t>
Hope it helps
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up