[MOV] move addons out of __unported__ (they remain not installable)

This commit is contained in:
Stéphane Bidoul
2015-10-13 16:29:29 +02:00
parent 17726e11a4
commit fe4f640ca8
187 changed files with 21 additions and 21 deletions

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_bank_statement_form_cancel_line" model="ir.ui.view">
<field name="name">account.bank.statement.form.</field>
<field name="inherit_id" ref="account.view_bank_statement_form" />
<field name="model">account.bank.statement</field>
<field name="arch" type="xml">
<data>
<xpath expr="//field[@name='line_ids']/tree/field[@name='amount']"
position="after">
<field name="state"/>
<button name="confirm" states="draft"
string="Confirm transaction"
icon="gtk-ok"
type="object"/>
<button name="button_cancel" states="confirmed"
string="Cancel transaction"
icon="gtk-cancel"
type="object"/>
</xpath>
</data>
</field>
</record>
</data>
</openerp>