跳至內容
選單
此問題已被標幟
2 回覆
7091 瀏覽次數

Hi,

I want inherit the class stock_return_picking(osv.osv_memory):

In this class exist the function view_init (def view_init(self, cr, uid, fields_list, context=None):).

I want overwrite all of this function, is possible?

I'm trying do this:

class stock_return_picking(osv.osv_memory):
    _name = 'stock.return.picking'
    _inherit = "stock.return.picking"
    _description = 'Return Picking'



def view_init(self, cr, uid, fields_list, context=None):
        """
         Creates view dynamically and adding fields at runtime.
         @param self: The object pointer.
         @param cr: A database cursor
         @param uid: ID of the user currently logged in
         @param context: A standard dictionary
         @return: New arch of view with new columns.
        """
        if context is None:
            context = {}
        res = super(stock_return_picking, self).view_init(cr, uid, fields_list, context=context)
        record_id = context and context.get('active_id', False)
        if record_id:
            pick_obj = self.pool.get('stock.picking')
            pick = pick_obj.browse(cr, uid, record_id, context=context)


           My code here


            if pick.state not in ['done','confirmed','assigned']:
                raise osv.except_osv(_('Warning!'), _("You may only return pickings that are Confirmed, Available, Shipped or Delivered!"))
            valid_lines = 0
            return_history = self.get_return_history(cr, uid, record_id, context)
            for m  in pick.move_lines:
                if m.state == 'done' and m.product_qty * m.product_uom.factor > return_history.get(m.id, 0):
                    valid_lines += 1
            if not valid_lines:
                raise osv.except_osv(_('Warning!'), _("No products to return (only lines in Done state and not fully returned yet can be returned)!"))
        return res

But the function doesn't do nothing because is not called.

Anyone helps me?

頭像
捨棄
最佳答案

Get rid of the _name = 'stock.return.picking' line, and make sure that function is properly tabbed over to be within the class declaration (assuming that's not just a copy/paste error).

頭像
捨棄
最佳答案

yes, you can inherit osv.osv_memory. Please refer 'base_setup' module for example...

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
3月 16
6053
0
8月 15
3824
4
3月 15
11638
3
11月 22
7619
1
3月 15
6502