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

Hello everybody ,
I'm a noob on odoo development and in english. I'm sorry if I use wrong terms.

I will try to explain my problem.

My client create many of sale order and it is boring for him to see the sale order he just create. He would like when he click on save button a new view of sale order (like when he click on create button)
I have override the function create of sale order in my custom module and try to return a new views of sale order.

It does not work, I'don't know if is the good way.

Thx for your help

This is my code :

from openerp.osv import  osv, fields
class sale_order(osv.osv):
    _inherit = "sale.order"
    def create(self, cr, uid, vals, context=None):
        super(sale_order, self).create(cr, uid, vals, context=context)
        return {
            'type': 'ir.actions.act_window',
            'view_type': 'form',
            'view_mode': 'form',
            'res_model': 'sale.order',
            'context': context,
            'target': 'new',
        }

Alex

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
3
čvc 21
13848
1
bře 15
6812
0
bře 15
3038
2
čvc 23
2595
0
čvc 19
2505