Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
2 Ответы
6763 Представления

Hello,

I have the following code:

<record id="nfx_view_normal_procurement_locations_form" model="ir.ui.view">
    <field name="name">nfx_product.normal.procurement.locations.inherit</field>
    <field name="model">product.product</field>
    <field name="inherit_id" ref="stock.view_normal_procurement_locations_form"/>
    <field name="arch" type="xml">

        <group name="lot" position="before" version="7.0">
            <group string="Locations" attrs="{'invisible': [('type', '=', 'service')]}" groups="base.group_user">
                <field name="test" nolabel="1" context="{'product_id': 49}">
                    <tree string="Stock Location" context="{'product_id': 49}">
                        <!--<field name="id" invisible="1"/>-->
                        <field name="complete_name"/>
                        <!--<field name="stock_real"/>-->
                        <field name="stock_real" context="{'product_id': 49}"/>
                        <field name="stock_virtual" context="{'product_id': 49}" invisible="'product_id' not in context"/>
                    </tree>
                </field>
            </group>
        </group>

    </field>
</record>

Why the product_id 49 is not passed to the stock_real field context?

Is it possible that context is not passed to function fields?

Аватар
Отменить
Автор Лучший ответ

Answer here:

https://accounts.openerp.com/forum/Help-1/question/8598/

Аватар
Отменить
Лучший ответ

Pls. add properties options='{"always_reload": True}' <field name="stock_real" context="{'product_id': 49}" options="{"always_reload": True}"/>

Аватар
Отменить
Автор

sorry, don't work...

Related Posts Ответы Просмотры Активность
19
сент. 20
69579
7
авг. 24
26655
2
июн. 16
18082
0
февр. 25
1249
0
янв. 25
1086