Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
3532 Переглядів

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.

Аватар
Відмінити
Найкраща відповідь

Hello,

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


Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
лют. 16
3054
0
лют. 16
3700
3
січ. 18
5589
10
січ. 24
17039
0
лют. 16
3672