summaryrefslogtreecommitdiff
path: root/addons/stock_sms/wizard/confirm_stock_sms_views.xml
blob: 001304c50d0e23af7db184fe87932336401e8754 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <record id="view_confirm_stock_sms" model="ir.ui.view">
        <field name="name">stock_confirm_sms</field>
        <field name="model">confirm.stock.sms</field>
        <field name="arch" type="xml">
            <form string="SMS">
                You are about to confirm this Delivery Order by SMS Text Message.<br/>
                This feature can easily be disabled from the Settings of Inventory or by clicking on "Disable SMS".<br/>
                <footer>
                    <button name="send_sms" type="object"
                            string="Confirm" class="oe_highlight"/>
                    <button name="dont_send_sms" type="object"
                            string="Disable SMS" class="btn btn-secondary"/>
                    <button special="cancel" string="Cancel"/>
                </footer>
            </form>
        </field>
    </record>
</odoo>