blob: 19be18eb2d6a4b4aacbd950ccbb3a8ed1950758d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="mail_act_test_todo" model="mail.activity.type">
<field name="name">Do Stuff</field>
<field name="summary">Really?! Wow! A superpowers drug you can just rub onto your skin?</field>
<field name="category">default</field>
<field name="res_model_id" ref="test_mail.model_mail_test_activity"/>
</record>
<record id="mail_act_test_meeting" model="mail.activity.type">
<field name="name">Meet People</field>
<field name="summary">You'd think it would be something you'd have to freebase. Noooooo!</field>
<field name="category">default</field>
<field name="res_model_id" ref="test_mail.model_mail_test_activity"/>
</record>
<record id="mail_act_test_call" model="mail.activity.type">
<field name="name">Call People</field>
<field name="summary">Then throw her in the laundry room, which will hereafter be referred to as "the brig".</field>
<field name="category">default</field>
<field name="res_model_id" ref="test_mail.model_mail_test_activity"/>
</record>
</odoo>
|