This question has been flagged
2474 Views

I found a problem with the stock module. I want to add some fields the data are well stored in the database but they are not displayed in the view! you find files module test


test_view.xml

<openerp> <data>

    <record id="view_picking_out_form_test" model="ir.ui.view">
    <field name="name">stock.picking.out.form.test</field>
    <field name="type">form</field>
    <field name="model">stock.picking.out</field>
    <field name="inherit_id" ref="stock.view_picking_form"/>
    <field name="arch" type="xml">
        <xpath expr="//field[@name='partner_id']" position="after">
            <field name="test" placeholder="e.g. [0-9][a-zA-Z]"/>
        </xpath>
    </field>
    </record>

</data> </openerp> test.py

from openerp.osv import fields, osv

class stock_picking_out(osv.osv):
    _inherit = 'stock.picking.out'
    _columns = {
        'test': fields.char('Test Field', size=8, select=True, states={'done': [('readonly', True)]}, domain=[('type', '=', 'out')]),
    }
Avatar
Discard