File: discuss_channel_demo.xml

package info (click to toggle)
odoo 18.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 878,716 kB
  • sloc: javascript: 927,937; python: 685,670; xml: 388,524; sh: 1,033; sql: 415; makefile: 26
file content (237 lines) | stat: -rw-r--r-- 14,569 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <data noupdate="1">

        <!-- Discussion groups, done in 2 steps to remove creator from followers -->
        <record model="discuss.channel" id="mail.channel_1">
            <field name="name">sales</field>
            <field name="description">Discussion about best sales practices and deals.</field>
        </record>
        <record model="discuss.channel" id="mail.channel_2">
            <field name="name">board-meetings</field>
            <field name="description">Board meetings, budgets, strategic plans</field>
        </record>
        <record model="discuss.channel" id="mail.channel_3">
            <field name="name">rd</field>
            <field name="description">Research and development discussion group</field>
        </record>

        <!-- Best sales practices messages -->
        <record id="mail_message_channel_1_1" model="mail.message">
            <field name="model">discuss.channel</field>
            <field name="res_id" ref="mail.channel_1"/>
            <field name="body"><![CDATA[<p>Selling a training session and selling the products after the training session is more efficient than directly selling a pack with the training session and the products.</p>]]></field>
            <field name="message_type">comment</field>
            <field name="subtype_id" ref="mail.mt_comment"/>
            <field name="author_id" ref="base.partner_demo"/>
            <field name="date" eval="(DateTime.today() - timedelta(days=5)).strftime('%Y-%m-%d %H:%M')"/>
        </record>
        <record id="mail_message_channel_1_2" model="mail.message">
            <field name="model">discuss.channel</field>
            <field name="res_id" ref="mail.channel_1"/>
            <field name="body"><![CDATA[<p>I noted I can not manage efficiently my pipeline when I have more than 50 opportunities in the qualification stage.</p><p>Any advice on this? How do you organize your activities with more than 50 opportunities?</p>]]></field>
            <field name="message_type">comment</field>
            <field name="subtype_id" ref="mail.mt_comment"/>
            <field name="author_id" ref="base.partner_root"/>
            <field name="date" eval="(DateTime.today() - timedelta(days=4)).strftime('%Y-%m-%d %H:%M')"/>
        </record>
        <record id="mail_message_channel_1_2_1" model="mail.message">
            <field name="model">discuss.channel</field>
            <field name="res_id" ref="mail.channel_1"/>
            <field name="body"><![CDATA[<p>When I have too much opportunities in the pipe, I start communicating with prospects more by email than phonecalls.</p><p>I send an email to create a sense of emergency, like <i>"can I call you this week about our quote?"</i> and I call only those that answer this email.</p><p>You can use the email template feature of Odoo to automate email composition.</p>]]></field>
            <field name="message_type">comment</field>
            <field name="parent_id" ref="mail_message_channel_1_2"/>
            <field name="subtype_id" ref="mail.mt_comment"/>
            <field name="author_id" ref="base.partner_demo"/>
            <field name="date" eval="(DateTime.today() - timedelta(days=3)).strftime('%Y-%m-%d %H:%M')"/>
        </record>

        <!-- Pushed to all employees -->
        <record id="mail_message_channel_whole_1" model="mail.message">
            <field name="model">discuss.channel</field>
            <field name="res_id" ref="mail.channel_all_employees"/>
            <field name="body"><![CDATA[
<p>
    Great news!<br/>
    Our company has received the Deloitte Fast 50 award.  We are the fastest
    growing company of the country, with a growth of 1549% over the past 5
    years. You can get more information <a href="http://www.openerp.com/node/1244/2012/10">on our blog</a>.
</p>
]]></field>
            <field name="message_type">comment</field>
            <field name="author_id" ref="base.partner_demo"/>
            <field name="date" eval="(DateTime.today() - timedelta(minutes=22)).strftime('%Y-%m-%d %H:%M')"/>
            <field name="subtype_id" ref="mail.mt_comment"/>
        </record>
        <record id="mail_message_channel_whole_2" model="mail.message">
            <field name="model">discuss.channel</field>
            <field name="res_id" ref="mail.channel_all_employees"/>
            <field name="body"><![CDATA[<p>Your monthly meal vouchers arrived. You can get them at the HR's office.</p>
<p>This month you also get 250 EUR of eco-vouchers if you have been in the company for more than a year.</p>]]></field>
            <field name="message_type">comment</field>
            <field name="author_id" ref="base.partner_demo"/>
            <field name="date" eval="(DateTime.today() - timedelta(hours=1)).strftime('%Y-%m-%d %H:%M')"/>
            <field name="subtype_id" ref="mail.mt_comment"/>
        </record>
        <record id="mail_message_channel_whole_2_1" model="mail.message">
            <field name="model">discuss.channel</field>
            <field name="res_id" ref="channel_all_employees"/>
            <field name="body"><![CDATA[<p>Thanks! Could you please remind me where is Christine's office, if I may ask? I'm new here!</p>]]></field>
            <field name="parent_id" ref="mail_message_channel_whole_2"/>
            <field name="message_type">comment</field>
            <field name="author_id" ref="base.partner_root"/>
            <field name="date" eval="(DateTime.today() - timedelta(minutes=34)).strftime('%Y-%m-%d %H:%M')"/>
            <field name="subtype_id" ref="mail.mt_comment"/>
        </record>
        <record id="mail_message_channel_whole_2_2" model="mail.message">
            <field name="model">discuss.channel</field>
            <field name="res_id" ref="channel_all_employees"/>
            <field name="body"><![CDATA[<p>Building B3, second floor to the right :-).</p>]]></field>
            <field name="parent_id" ref="mail_message_channel_whole_2_1"/>
            <field name="message_type">comment</field>
            <field name="author_id" ref="base.partner_demo"/>
            <field name="date" eval="(DateTime.today() - timedelta(minutes=22)).strftime('%Y-%m-%d %H:%M')"/>
            <field name="subtype_id" ref="mail.mt_comment"/>
        </record>

        <!-- Board messages -->
        <record id="mail_message_channel_2_1" model="mail.message">
            <field name="model">discuss.channel</field>
            <field name="res_id" ref="mail.channel_2"/>
            <field name="body"><![CDATA[
<p>
    Dear Board Members,
</p>
<p>
    The main events of the month of October are:
</p>
<p>
    <b>Sales:</b>
</p>
<ul>
    <li>Invoicing is respectively of 442k€ for our European company (66% of the budget) and $404k for the U.S. office (75% of the budget). Despite these numbers that are far below our initial expectations, the growth of the month of October is 51% compared to last year.</li>
    <li>The month of September having been better than our initial forecasts, the consolidated yearly revenue is only of $20k below our forecast made during the board of September.</li>
    <li>The consolidated forecast for the end of the year is $6.749k, which is a growth of 76% compared to last year and an achievement of 87% of the budget.</li>
    <li>The recruitment of new resellers has been very good, especially in Europe, where we signed 30 new resellers this month.</li>
</ul>
<p>
    <b>Finance :</b>
</p>
<ul>
    <li>The profit and loss has been negatively impacted this month by revenues that are far beyond the budget and charges that are 15% above the budget. The main extra we had in our charges this month is due to the provisioning of the salaries for the holidays period, $50k.</li>
    <li>We also got the payment of our long awaited subsidies, the cash level has increased of 300K€ which gives a current balance of 963 K€ without including the straight loan of 350 K€.</li>
    <li>The aged customer balance has been similar to the one of the last month with a small decrease of the DSO. We have recruited a new accountant assistant for the credit collection. She is mostly doing phone calls for all invoices that are due since 30 days, so we should get improvements of the DSO in November. The sum of the invoicing on which we have a risk in the aged customer balance is 100K€.</li>
</ul>
<p>
    <b>Resellers and Customers:</b>
</p>
<ul>
    <li>The total number of resellers is 429, across 87 countries.</li>
    <li>The total number of installations of our software increased to 37K, against 33K for the month of September but we still did not reached the highest level we reached during this year (44K in march and may)</li>
    <li>We have passed the 10000th customer in production with 10271 customers at the end of October. The paying customer ratio is 6,6%.</li>
</ul>
<p>
    <b>Launch of the new release:</b>
</p>
<p>
    We are working actively on the new release which is scheduled for the end of November.
</p>
<ul>
    <li>We will publish the release note this week</li>
    <li>The whole Sales Team will be trained on the new version this Friday</li>
    <li>We will do a public announce to our resellers the 21th of November. We plan to show them: a description of the new features, the new distribution strategy, the new pricing and the communication plan.</li>
</ul>
<br/>
<p>
    Nicolas, can you book a meeting room for our meeting of Friday 2pm?
</p>
<p>
    Regards.
</p>
]]></field>
            <field name="message_type">comment</field>
            <field name="subtype_id" ref="mail.mt_comment"/>
            <field name="author_id" ref="base.partner_demo"/>
            <field name="date" eval="(DateTime.today() - timedelta(days=3)).strftime('%Y-%m-%d %H:%M')"/>
        </record>

        <!-- sub-threads setup -->
        <record model="discuss.channel" id="mail.from_notification_message">
            <field name="parent_channel_id" ref="mail.channel_all_employees"/>
            <field name="from_message_id" ref="mail.module_install_notification"/>
            <field name="name">Welcome to the #general channel</field>
        </record>
        <record model="discuss.channel.member" id="mail.admin_member_from_notification">
            <field name="partner_id" ref="base.partner_admin"/>
            <field name="channel_id" ref="mail.from_notification_message"/>
        </record>
        <record model="discuss.channel" id="mail.idea_suggestions_sub">
            <field name="parent_channel_id" ref="mail.channel_all_employees"/>
            <field name="name">Ideas &amp; Suggestions</field>
        </record>
        <record model="discuss.channel.member" id="mail.admin_member_idea_suggestions">
            <field name="partner_id" ref="base.partner_admin"/>
            <field name="channel_id" ref="mail.idea_suggestions_sub"/>
        </record>
        <record model="discuss.channel.member" id="mail.demo_member_idea_suggestions">
            <field name="partner_id" ref="base.partner_demo"/>
            <field name="channel_id" ref="mail.idea_suggestions_sub"/>
        </record>
        <record model="mail.message" id="mail.idea_suggestions_message_0">
            <field name="model">discuss.channel</field>
            <field name="res_id" ref="mail.idea_suggestions_sub"/>
            <field name="message_type">comment</field>
            <field name="subtype_id" ref="mail.mt_comment"/>
            <field name="author_id" ref="base.partner_demo"/>
            <field name="body"><![CDATA[<p>Hey team, I was thinking it might be
            helpful to set up a weekly brainstorming session where we can
            discuss new strategies for improving customer engagement. What do
            you all think?</p>]]></field>
        </record>
        <record model="discuss.channel" id="mail.troubleshooting_sub">
            <field name="parent_channel_id" ref="mail.channel_all_employees"/>
            <field name="name">Troubleshooting</field>
        </record>
        <record model="mail.message" id="mail.troubleshooting_message_0">
            <field name="model">discuss.channel</field>
            <field name="res_id" ref="mail.troubleshooting_sub"/>
            <field name="message_type">comment</field>
            <field name="subtype_id" ref="mail.mt_comment"/>
            <field name="author_id" ref="base.partner_demo"/>
            <field name="body">I can't access the team calendar.
            It keeps saying 'access denied'.
            Has anyone else had this issue?</field>
        </record>
        <record model="mail.message" id="mail.troubleshooting_message_1">
            <field name="model">discuss.channel</field>
            <field name="res_id" ref="mail.troubleshooting_sub"/>
            <field name="message_type">comment</field>
            <field name="subtype_id" ref="mail.mt_comment"/>
            <field name="author_id" ref="base.partner_admin"/>
            <field name="body">Have you tried refreshing the page?
            Perhaps it's not up to date?</field>
        </record>
        <record model="mail.message" id="mail.troubleshooting_message_2">
            <field name="model">discuss.channel</field>
            <field name="res_id" ref="mail.troubleshooting_sub"/>
            <field name="message_type">comment</field>
            <field name="subtype_id" ref="mail.mt_comment"/>
            <field name="author_id" ref="base.partner_demo"/>
            <field name="body">Haha, thanks! You just saved the day!</field>
        </record>
        <record model="discuss.channel.member" id="mail.admin_member_troubleshooting">
            <field name="partner_id" ref="base.partner_admin"/>
            <field name="channel_id" ref="mail.troubleshooting_sub"/>
            <field name="fetched_message_id" ref="mail.troubleshooting_message_2"/>
            <field name="seen_message_id" ref="mail.troubleshooting_message_2"/>
            <field name="new_message_separator" eval="ref('mail.troubleshooting_message_2') + 1"/>
        </record>
        <record model="discuss.channel.member" id="mail.demo_member_troubleshooting">
            <field name="partner_id" ref="base.partner_demo"/>
            <field name="channel_id" ref="mail.troubleshooting_sub"/>
            <field name="fetched_message_id" ref="mail.troubleshooting_message_2"/>
            <field name="seen_message_id" ref="mail.troubleshooting_message_2"/>
            <field name="new_message_separator" eval="ref('mail.troubleshooting_message_2') + 1"/>
        </record>
    </data>
</odoo>