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
786 B
16 lines
786 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Show the price in appointment details form -->
|
|
<template id="appointment_info_payment"
|
|
inherit_id="appointment.appointment_form">
|
|
<xpath expr="//div[hasclass('o_appointment_attendee_form_details')]"
|
|
position="inside">
|
|
<div t-if="appointment_type.product_id"
|
|
class="d-flex py-1 px-0 bg-transparent o-cc1-text border-0">
|
|
<i class="fa fa-credit-card o_appointment_fa_width text-center fs-5 me-2"/>
|
|
<span t-esc="appointment_type.product_id.lst_price"
|
|
t-options="{'widget': 'monetary', 'display_currency': appointment_type.product_id.currency_id}"/>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|