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
|
<?xml version="1.0"?>
<odoo>
<data noupdate="1">
<record model="note.stage" id="demo_note_stage_01">
<field name="name">Today</field>
<field name="sequence">1</field>
<field name="user_id" ref="base.user_demo"/>
</record>
<record model="note.stage" id="demo_note_stage_02">
<field name="name">Tomorrow</field>
<field name="sequence">2</field>
<field name="user_id" ref="base.user_demo"/>
</record>
<record model="note.stage" id="demo_note_stage_03">
<field name="name">Later</field>
<field name="sequence">3</field>
<field name="user_id" ref="base.user_demo"/>
</record>
<record id="note_1" model="note.note">
<field name="name">Customer report #349872</field>
<field name="memo"><![CDATA[<b>Customer report #349872</b>
<br/><br/>* Calendar app in Home
<br/>* The calendar module should create a menu in Home, like described above.
<br/>* This module should become a main application (in the first screen at installation)
<br/>* We should use the term Calendar, not Meeting.
]]>
</field>
<field name="user_id" ref="base.user_demo"/>
<field name="stage_id" ref="demo_note_stage_01"/>
<field name="color">2</field>
</record>
<record id="note_2" model="note.note">
<field name="memo"><![CDATA[<b>Call Fabien</b>
<br/><br/>* Followed by the telephone conversation and mail about D.544.3
]]>
</field>
<field name="user_id" ref="base.user_demo"/>
<field name="stage_id" ref="demo_note_stage_01"/>
</record>
<record id="note_4" model="note.note">
<field name="memo"><![CDATA[<b>Project N.947.5</b>
<br/><br/>]]>
</field>
<field name="stage_id" ref="note_stage_02"/>
</record>
<record id="note_5" model="note.note">
<field name="memo"><![CDATA[<b>Shop for family dinner</b>
<br/>* stuffed turkey
<br/>* wine
]]>
</field>
<field name="user_id" ref="base.user_demo"/>
<field name="stage_id" ref="demo_note_stage_02"/>
</record>
<record id="note_6" model="note.note">
<field name="memo"><![CDATA[<b>Idea to develop</b>
<br/><br/>* Create a module note_pad
it transforms the html editable memo text field into widget='pad', similar to project_pad depends on 'memo' and 'pad' modules
]]>
</field>
<field name="stage_id" ref="note_stage_02"/>
</record>
<record id="note_8" model="note.note">
<field name="memo"><![CDATA[<b>New computer specs</b>
<br/><br/>* Motherboard
according to processor
<br/>* Processor
need to decide
<br/>* Graphic card
with great performance for games !
<br/>* Hard drive
big, for lot of internet backups
<br/>* Tower
silent, better when watching films
<br/>* Blueray drive ?
is it interesting yet ?
<br/>* Screen
a big one, full of pixels, of course !
]]>
</field>
<field name="stage_id" ref="note_stage_03"/>
<field name="color">3</field>
</record>
<record id="note_9" model="note.note">
<field name="memo"><![CDATA[<b>Read those books</b>
<br/><br/>* Odoo: a modern approach to integrated business management
<br/>* Odoo for Retail and Industrial Management
]]>
</field>
<field name="user_id" ref="base.user_demo"/>
<field name="stage_id" ref="demo_note_stage_02"/>
</record>
<record id="note_12" model="note.note">
<field name="memo"><![CDATA[<b>Read some documentation about Odoo before diving into the code</b>
<br/><br/>* Odoo: a modern approach to integrated business management
<br/>* Odoo for Retail and Industrial Management
]]>
</field>
<field name="color">7</field>
<field name="stage_ids" eval="['note_stage_03']"/>
</record>
</data>
</odoo>
|