Se rendre au contenu
Menu
Cette question a été signalée
2 Réponses
6765 Vues

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?

Avatar
Ignorer
Auteur Meilleure réponse

Answer here:

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

Avatar
Ignorer
Meilleure réponse

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

Avatar
Ignorer
Auteur

sorry, don't work...

Publications associées Réponses Vues Activité
19
sept. 20
69579
7
août 24
26655
2
juin 16
18082
0
févr. 25
1249
0
janv. 25
1086