You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
813 B
16 lines
813 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- If the appointment has payment configuration, the appointment fees is shown in the appointment card -->
|
|
<template id="appointment_info"
|
|
inherit_id="website_appointment.appointments_cards">
|
|
<xpath expr="//div[hasclass('o_wappointment_card_staff_users')]"
|
|
position="after">
|
|
<div t-if="appointment.product_id"
|
|
class="d-flex py-1 px-0 bg-transparent o-cc1-text border-0">
|
|
<i class="fa fa-credit-card text-center text-muted fs-5 me-2"/>
|
|
<span t-esc="appointment.product_id.lst_price"
|
|
t-options="{'widget': 'monetary', 'display_currency': appointment.product_id.currency_id}"/>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|