콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
16408 화면

I need to add EAN field on "Recieve product" form. image description

I'm trying to inherit stock_partial_picking_line class, with using my extra module.

Model:

from openerp.osv import fields, osv
class stock_partial_picking_line(osv.TransientModel):
_name = "stock.partial.picking.line"
_rec_name = "product_id"
_inherit = "stock.partial.picking.line"

_columns = {
    'product_id_ean13': fields.related('product_id', 'ean13', type='char', string='EAN'),
}

View:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
        <!-- this view of stock.partial.picking wizard is dedicated to internal picking. The fields_view_get is ovveridden in order to change the label of the process button and the separator. -->
        <record id="stock_partial_picking_form" model="ir.ui.view">
            <field name="name">stock.partial.picking.form</field>
            <field name="model">stock.partial.picking</field>
            <field name="inherit_id" ref="stock.stock_partial_picking_form"/>
            <field name="arch" type="xml">
                <field name="product_id" position="before">
                    <field name="product_id_ean13"/>
                </field>
            </field>
        </record>

    </data>
</openerp>

But when I'm trying to open form, getting the following error message:

Can't find field 'product_id_ean13' in the following view parts composing the view of object model 'stock.partial.picking': * stock.partial.picking.form

What I'm doing wrong?

아바타
취소
베스트 답변

Hi,

Have you tried to update the db by issuing openerp-server.py -r dbuser -w dbpass -d db_to_be update --update=all

or go to the installation module and click upgrade.

may be your field not yet updated to the object.

아바타
취소
작성자 베스트 답변

I'm forgot add folowing line into __init__.py.

import stock_partial_picking

I also had to override method:

def _partial_move_for (self, cr, uid, move):
아바타
취소
관련 게시물 답글 화면 활동
4
11월 15
5235
4
10월 15
9395
1
10월 15
5551
3
9월 15
6160
0
9월 15
47