[ADD] es_CR.po: added po to all modules, copy from es.po or from pot
[odoo/odoo.git] / addons / hr_evaluation / wizard / hr_evaluation_mail_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4
5         <record id="view_hr_evaluation_send_mail" model="ir.ui.view">
6         <field name="name">hr.evaluation.send.mail</field>
7         <field name="model">hr.evaluation.reminder</field>
8         <field name="type">form</field>
9         <field name="arch" type="xml">
10                         <form string="Evaluation Reminders">
11                                 <group width="340">
12                                 <separator string="Send evaluation reminder" colspan="4"/>
13                                 <field name="evaluation_id"/>
14                                 <separator colspan="4"/>
15                                         <group colspan="4">
16                                                 <button special="cancel" string="Cancel" icon="gtk-cancel"/>
17                                                 <button name="send_mail" string="Send Mail" type="object" icon="gtk-ok"/>
18                                         </group>
19                                 </group>
20                 </form>
21         </field>
22         </record>
23
24     <record id="action_hr_evaluation_send_mail" model="ir.actions.act_window">
25         <field name="name">Evaluation Send Mail</field>
26         <field name="res_model">hr.evaluation.reminder</field>
27         <field name="type">ir.actions.act_window</field>
28         <field name="view_type">form</field>
29         <field name="view_mode">tree,form</field>
30         <field name="view_id" ref="view_hr_evaluation_send_mail"/>
31         <field name="context">{'record_id':active_id}</field>
32         <field name="target">new</field>
33     </record>
34
35      </data>
36 </openerp>