~acsone-openerp/acsone-addons/7.0

« back to all changes in this revision

Viewing changes to update_std_price_account/stock_change_standard_price_view.xml

  • Committer: Laetitia Gangloff
  • Date: 2014-05-30 15:19:58 UTC
  • Revision ID: laetitia.gangloff@acsone.eu-20140530151958-ylopr2uv9hnt3023
add module update_std_price_account to change account to use for valuation when change standard price

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<openerp>
 
3
    <data>
 
4
        <record id="view_change_standard_price" model="ir.ui.view">
 
5
            <field name="name">Change Standard Price (update_std_price_account)</field>
 
6
            <field name="model">stock.change.standard.price</field>
 
7
            <field name="inherit_id" ref="stock.view_change_standard_price"/>
 
8
            <field name="arch" type="xml">
 
9
                <field name="new_price" position="after">
 
10
                    <field name="stock_account_input" />
 
11
                    <field name="stock_account_output" />
 
12
                </field>
 
13
            </field>
 
14
        </record>
 
15
 
 
16
    </data>
 
17
</openerp>
 
18