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.
17 lines
711 B
17 lines
711 B
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<!-- Inherited res_partner form to add new field to specify birthdate of partner-->
|
|
<record id="view_partner_form" model="ir.ui.view">
|
|
<field name="name">view.partner.form.inherit.pos.customer.birthday.discount</field>
|
|
<field name="model">res.partner</field>
|
|
<field name="inherit_id" ref="base.view_partner_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//label[@for='email']" position="before">
|
|
<label for="birthdate" string="Birth Date"/>
|
|
<div>
|
|
<field name="birthdate"/>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|