콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
7083 화면

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
6052
0
8월 15
3821
4
3월 15
11635
3
11월 22
7619
1
3월 15
6500