mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
38 lines
2.1 KiB
XML
38 lines
2.1 KiB
XML
<?xml version="1.0"?>
|
|
<openerp>
|
|
<data>
|
|
<record id="checkin_wizard_form_2" model="ir.ui.view">
|
|
<field name="name">wizard.form2</field>
|
|
<field name="model">checkin.wizard</field>
|
|
<field name="inherit_id" ref="hotel.checkin_wizard_form_2" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//footer" position="before">
|
|
<group col="4" attrs="{'invisible':[('checkin_mode', '=', 0)]}" >
|
|
<field name="documenttype_cardex" colspan="2" required="True"/>
|
|
<newline/>
|
|
<field name="poldocument_cardex" colspan="2" required="True"/>
|
|
<field name="polexpedition_cardex" colspan="2" required="True"/>
|
|
</group>
|
|
<group col="4" attrs="{'invisible':[('checkin_mode', '=', 0)]}" >
|
|
<field name="gender_cardex" colspan="2" required="True"/>
|
|
<field name="birthdate_date_cardex" colspan="2" required="True"/>
|
|
</group>
|
|
<group col="4" attrs="{'invisible':[('checkin_mode', '=', 0)]}" >
|
|
<field name="code_ine_cardex" placeholder="Code in INE"
|
|
options="{'no_create': True,'no_open': True}" required="True"/>
|
|
|
|
<!-- <field name="category_id_cardex" widget="many2many_tags" placeholder="Tags..."
|
|
options="{'no_create': True,'no_open': True}" /> -->
|
|
<field name="segmentation_id" widget="many2many_tags" placeholder="Segmentation..."
|
|
options="{'no_create': True,'no_open': True}" required="True"/>
|
|
</group>
|
|
</xpath>
|
|
<xpath expr="//button[@name='action_save_check']" position="replace">
|
|
<button name="action_save_check" string="Save Checkin and Print" type="object"
|
|
attrs="{'invisible':[('checkin_mode', '=', 0)]}"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</openerp>
|