Skip to Content
Menu
This question has been flagged
1 Reply
2558 Views

Hello, I created a custom field in the odoo GUI. A field assigned a sequence.The idea is that incremental increase its field single value when selecting a product of stockable type . CUSTOM FIELD NAME = 'x_niu'

At the view I generated the sequence , but for all products , not just for stockables products:

Image: http://en.zimagez.com/zimage/werfwrwerwerwer.php

I have created a method to allocate the sequence but not the custom field validation is performed : product.type =='product'         (stockable product).

_defaults = {

    'x_niu':lambda obj, cr, uid, context: obj.pool.get('ir.sequence').get(cr, uid, 'sale.order.line'),

}

def create(self, cr, uid, vals, context=None):

    if vals.get('x_niu') == None and product_id.type == 'product':

        vals['x_niu'] = self.pool.get('ir.sequence').get(cr, uid, 'sale.order.line')

    return super(SaleOrderLine,self).create(cr, uid, vals, context)


def copy (self, cr, uid, id, default=None, context=None):

    default.update({

         'x_niu': self.pool.get('ir.sequence').get(cr, uid, 'sale.order.line')

    })

    return super(res_partner, self).copy(cr, uid, id, default, context)

I hope you can help me with this problem is not how to solve it . Thanks so much.

Avatar
Discard
Best Answer

Hello,

Try to remove the _defaults dict. Because this will call the sequence every time a new record created without checking the product type.


Avatar
Discard
Related Posts Replies Views Activity
0
Feb 16
2439
0
Feb 16
3014
3
Jan 18
4695
10
Jan 24
15734
0
Feb 16
2769