File: service_wizard.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 (33 lines) | stat: -rw-r--r-- 1,738 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
<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <data>
        <record model="ir.ui.view" id="peppol_service_configuration">
            <field name="name">account.peppol.service.configuration.form</field>
            <field name="model">account_peppol.service.wizard</field>
            <field name="arch" type="xml">
                <form string="">
                    <group>
                        <div colspan="2">
                            <field name="service_info" role="status" class="o_field_html alert alert-info" invisible="not service_info"/>
                            <field name="service_ids"
                                   nolabel="1"
                                   widget="one2many"
                                   columns="2">
                                <list editable="bottom" create="false" delete="false" edit="true">
                                    <field name="wizard_id" column_invisible="1"/>
                                    <field name="document_name" readonly="1"/>
                                    <field name="document_identifier" groups="base.group_no_one" readonly="1"/>
                                    <field name="enabled" widget="boolean_toggle"/>
                                </list>
                            </field>
                        </div>
                        <footer>
                            <button name="confirm" string="Confirm" type="object" class="btn-primary" data-hotkey="q"/>
                            <button string="Cancel" class="btn-secondary" special="cancel" data-hotkey="x" />
                        </footer>
                    </group>
                </form>
            </field>
        </record>
    </data>
</odoo>