mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
91 lines
3.9 KiB
XML
91 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<record model="ir.ui.view" id="pms_ses_communication_view_form">
|
|
<field name="name">pms.ses.communication.form</field>
|
|
<field name="model">pms.ses.communication</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Log institution traveller report detail">
|
|
<sheet>
|
|
<group>
|
|
<field name="reservation_id" />
|
|
<field name="communication_id" />
|
|
<field name="operation" />
|
|
<field name="entity" />
|
|
<!-- times -->
|
|
<field name="create_date" />
|
|
<field name="communication_time" />
|
|
<field name="query_status_time" />
|
|
<!-- results -->
|
|
<field name="state" />
|
|
<field name="sending_result" />
|
|
<field name="processing_result" />
|
|
<!-- communication soap, xml (request) & soap (response) -->
|
|
<field name="communication_xml" widget="CopyClipboardChar" />
|
|
<field name="communication_soap" widget="CopyClipboardChar" />
|
|
<field
|
|
name="response_communication_soap"
|
|
widget="CopyClipboardChar"
|
|
/>
|
|
<!-- processing soap, xml (request) & soap (response) -->
|
|
<field name="query_status_xml" widget="CopyClipboardChar" />
|
|
<field name="query_status_soap" widget="CopyClipboardChar" />
|
|
<field
|
|
name="response_query_status_soap"
|
|
widget="CopyClipboardChar"
|
|
/>
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
<record model="ir.ui.view" id="pms_ses_communication_view_tree">
|
|
<field name="name">pms.ses.communication.tree</field>
|
|
<field name="model">pms.ses.communication</field>
|
|
<field name="arch" type="xml">
|
|
<tree name="Property Ubications" create="false">
|
|
<field name="reservation_id" />
|
|
<field name="communication_id" />
|
|
<field name="operation" />
|
|
<field name="entity" />
|
|
<!-- times -->
|
|
<field name="create_date" />
|
|
<field name="communication_time" />
|
|
<field name="query_status_time" />
|
|
<!-- results -->
|
|
<field name="state" />
|
|
<field name="sending_result" />
|
|
<field name="processing_result" />
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<record model="ir.ui.view" id="pms_ses_communication_view_search">
|
|
<field name="name">pms.ses.communication.search</field>
|
|
<field name="model">pms.ses.communication</field>
|
|
<field name="arch" type="xml">
|
|
<search string="Log SES Communications">
|
|
<field name="communication_id" />
|
|
<field name="reservation_id" />
|
|
<!-- times -->
|
|
<field name="create_date" />
|
|
<field name="communication_time" />
|
|
<field name="query_status_time" />
|
|
<field name="state" />
|
|
</search>
|
|
</field>
|
|
</record>
|
|
|
|
<record model="ir.actions.act_window" id="open_pms_ses_communication_form_tree">
|
|
<field name="name">SES Communications</field>
|
|
<field name="res_model">pms.ses.communication</field>
|
|
<field name="view_mode">tree,form</field>
|
|
</record>
|
|
<menuitem
|
|
name="SES Communications"
|
|
id="menu_open_pms_ses_communication_form_tree"
|
|
action="open_pms_ses_communication_form_tree"
|
|
parent="pms.menu_reservations"
|
|
sequence="29"
|
|
/>
|
|
</odoo>
|