This question has been flagged
1 Reply
3778 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
Best Answer

Hi Try this code will help you

    <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</field>
    <field name="inherit_id" ref="stock.view_picking_out_form"/>
    <field name="arch" type="xml">
        <field name="partner_id" position="after">
            <field name="test" placeholder="e.g. [0-9][a-zA-Z]"/>
        </field>
    </field>
    </record>

py file 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')]),
    }

stock_picking_out()
Avatar
Discard
Author

same problem no changes :s

can you paste your update code again ? I have update answer try it.

Author

I seen thet code. same as I used no deferance

Have you try my update code ?

Author

yes I try it & the Field TEST doesn't apear in the view

Author

yes I try it & the Field TEST doesn't apear in the view

Problem solve ?

Author

nop because, I want the field to display the value and now it doesn't apear in the view