blob: 45caf6e2dde3af6a4daf6b79af6aecec6abb8e76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="sale_order_form_view_inherit" model="ir.ui.view">
<field name="name">sale.order.form.inherit.sale.expense</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<data>
<xpath expr="//button[@name='action_view_invoice']" position="before">
<button type="action"
name="%(sale_expense.hr_expense_action_from_sale_order)d"
class="oe_stat_button"
icon="fa-money"
attrs="{'invisible': [('expense_count', '=', 0)]}">
<field name="expense_count" widget="statinfo" string="Expenses"/>
</button>
</xpath>
</data>
</field>
</record>
</odoo>
|