Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • af3c74e375e4e17bd7722e36f6f777e802575a0c
  • 14.0 par défaut
  • 12.0 protégée
  • 13.0
4 résultats

scop_membership_submit_wizard.xml

Blame
  • scop_membership_submit_wizard.xml 1,58 Kio
    <?xml version="1.0" ?>
    <!-- Copyright 2021 Le Filament
         License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
    <odoo>
        <data>
    
            <record model="ir.ui.view" id="scop_membership_submit_wizard_form">
                <field name="name">scop.membership.submit.wizard.form</field>
                <field name="model">scop.membership.submit.wizard</field>
                <field name="arch" type="xml">
                    <form string="Confirmer les champs obligatoires">
                        <div
                            class="alert alert-danger"
                            role="alert"
                            attrs="{'invisible':[('list_logs', '=', False)]}"
                        >
                            <field
                                class="o_field_header"
                                name="list_logs"
                                readonly="1"
                                widget="html"
                            />
                        </div>
                        <group>
                            <field name="partner_id" readonly="1" />
                        </group>
                        <footer>
                            <button
                                name="confirm"
                                type="object"
                                string="Soumettre l'adhésion à la CG"
                                class="oe_highlight"
                                attrs="{'invisible':[('list_logs', '!=', False)]}"
                            />
                            <button special="cancel" string="Fermer" />
                        </footer>
                    </form>
                </field>
            </record>
    
        </data>
    </odoo>