mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-15 10:42:08 +00:00
62 lines
2.0 KiB
XML
62 lines
2.0 KiB
XML
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||
|
<!--
|
||
|
Copyright (C) 2018-Today GRAP (http://www.grap.coop)
|
||
|
@author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||
|
-->
|
||
|
<flectra>
|
||
|
|
||
|
<record id="view_mass_operation_wizard_mixin_form" model="ir.ui.view">
|
||
|
<field name="model">mass.operation.wizard.mixin</field>
|
||
|
<field name="arch" type="xml">
|
||
|
<form>
|
||
|
<header />
|
||
|
<p
|
||
|
class="oe_grey"
|
||
|
attrs="{'invisible':
|
||
|
[('message', '=', False)]}"
|
||
|
>
|
||
|
<field name="message" />
|
||
|
</p>
|
||
|
<p
|
||
|
class="alert alert-info"
|
||
|
role="alert"
|
||
|
attrs="{'invisible':
|
||
|
[('operation_description_info', '=', False)]}"
|
||
|
>
|
||
|
<field name="operation_description_info" />
|
||
|
</p>
|
||
|
<p
|
||
|
class="alert alert-warning"
|
||
|
role="alert"
|
||
|
attrs="{'invisible':
|
||
|
[('operation_description_warning', '=', False)]}"
|
||
|
>
|
||
|
<field name="operation_description_warning" />
|
||
|
</p>
|
||
|
<p
|
||
|
class="alert alert-danger"
|
||
|
role="alert"
|
||
|
attrs="{'invisible': [('operation_description_danger', '=', False)]}"
|
||
|
>
|
||
|
<field name="operation_description_danger" />
|
||
|
</p>
|
||
|
<group name="custom_info">
|
||
|
</group>
|
||
|
|
||
|
<footer>
|
||
|
<button
|
||
|
string="Apply"
|
||
|
name="button_apply"
|
||
|
type="object"
|
||
|
class="oe_highlight"
|
||
|
/>
|
||
|
<button string="Cancel" class="oe_link" special="cancel" />
|
||
|
</footer>
|
||
|
|
||
|
</form>
|
||
|
</field>
|
||
|
</record>
|
||
|
|
||
|
</flectra>
|