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.
 
 
 
 
 

47 lines
1.7 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Form view for SMS History -->
<record id="sms_history_view_form" model="ir.ui.view">
<field name="name">sms.history.view.form</field>
<field name="model">sms.history</field>
<field name="arch" type="xml">
<form string="SMS History">
<sheet>
<group>
<group>
<field name="sms_gateway_id"/>
<field name="sms_date"/>
</group>
<group>
<field name="sms_mobile"/>
</group>
<field name="sms_text"/>
</group>
</sheet>
</form>
</field>
</record>
<!-- Tree view for SMS History -->
<record id="sms_history_view_tree" model="ir.ui.view">
<field name="name">sms.history.view.tree</field>
<field name="model">sms.history</field>
<field name="arch" type="xml">
<tree create="0">
<field name="sms_gateway_id"/>
<field name="sms_date"/>
<field name="sms_text"/>
<field name="sms_mobile"/>
</tree>
</field>
</record>
<!-- Window action for SMS History -->
<record id="sms_history_action" model="ir.actions.act_window">
<field name="name">SMS History</field>
<field name="res_model">sms.history</field>
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
SMS history is not created yet! Please send an SMS to create new history.
</p>
</field>
</record>
</odoo>