Skip to content

Instantly share code, notes, and snippets.

@dperaltab
Created September 20, 2013 16:41
Show Gist options
  • Save dperaltab/6640350 to your computer and use it in GitHub Desktop.
Save dperaltab/6640350 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_popup_form" model="ir.ui.view">
<field name="name">Popup procesar</field>
<field name="model">popup</field>
<field name="arch" type="xml">
<form string="Procesar" version="7.0">
<label string="Esta seguro que desea realizar su proceso?"/>
<group>
<field name="fecha_reg"/>
</group>
<footer>
<button name="procesar" type="object" class="oe_highlight" string="Procesar"/>
or
<button string="Cancel" class="oe_link" special="cancel" />
</footer>
</form>
</field>
</record>
<act_window name="Procesar"
res_model="popup"
src_model="alumno"
view_mode="form"
multi="True"
target="new"
id="proceso_popup_id" />
</data>
</openerp>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment