Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
7615 Zobrazení

v7.0, in Settings-Configeration-Sale with "Product properties on order lines" ticked.

Then open a quotation or sale order, click the line item; In the pop-up window, click product name, the product inform opened in the background main window, But the pop-up window stay unclosed.

Is it a usability issue?

Which I want is to open the product inform in a new pop-up window or in the main window with pop-up closed. Is this configurable?

Avatar
Zrušit
Nejlepší odpověď

Hey Youring,

Actually its not a visibility issue but is a functionaliyt or you can say feature of OpenERP.

If you want to display product information you may create a button which will return action of current product.

Example:

    return {
        'name': 'Product',
        'view_type': 'form',
        'view_mode': 'form',
        'res_model': 'product.product',
        'type': 'ir.actions.act_window',
        'nodestroy': True,
        'target': 'new',
        'res_id': your_product_id
    }

Avatar
Zrušit