Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
4236 Переглядів

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')]),
    }
Аватар
Відмінити
Найкраща відповідь

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()
Аватар
Відмінити
Автор

same problem no changes :s

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

Автор

I seen thet code. same as I used no deferance

Have you try my update code ?

Автор

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

Автор

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

Problem solve ?

Автор

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