~openbias/bias-trunk/bias-public-trunk

« back to all changes in this revision

Viewing changes to medical_invoice/wizard/create_lab_invoice.xml

  • Committer: Jose Patricio
  • Date: 2011-10-19 03:16:40 UTC
  • Revision ID: josepato@bias.com.mx-20111019031640-05zd7r5lxwx084qu
el push inicial

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<openerp>
 
3
    <data>
 
4
        <record id="view_lab_make_invoice" model="ir.ui.view">
 
5
            <field name="name">Create Lab Invoice</field>
 
6
            <field name="model">medical.lab.test.invoice</field>
 
7
            <field name="type">form</field>
 
8
            <field name="arch" type="xml">
 
9
                <form string="Create Lab Invoices">
 
10
                    <separator colspan="4" string="Do you want to generate the invoice(s) ?" />
 
11
                    <newline/>
 
12
                    <separator string="Create Lab Invoices" colspan="6"/>
 
13
                    <button special="cancel" string="Cancel" icon="gtk-cancel"/>
 
14
                    <button name="create_lab_invoice" string="Create Lab Invoice" type="object" icon="gtk-ok"/>
 
15
               </form>
 
16
            </field>
 
17
        </record>
 
18
 
 
19
       <act_window name="Create Lab Invoice"
 
20
            res_model="medical.lab.test.invoice"
 
21
            src_model="medical.patient.lab.test"
 
22
            view_mode="form"
 
23
            target="new"
 
24
            key2="client_action_multi"
 
25
            id="action_create_lab_invoice"/>
 
26
 
 
27
    </data>
 
28
</openerp>