Sélectionner une révision Git
scop_membership_submit_wizard.xml
Benjamin - Le Filament authored
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>