Ir al contenido
Menú
Se marcó esta pregunta
2 Respuestas
20971 Vistas

Hello, i've one doubt:

I created a field called ' niu ' to increase its value for each product type stockable.

niu = fields.Char(string="NIU", compute="_niu_validation", defalut=" ", readonly=True)

With the attribute compute = "_ niu_validation " I call the method of the same name . In this , I want to validate that the product type is stockable type .

@api.depends('product_id.product_tmpl_id.type')

def _niu_validation(self):

if 'product_id.product_tmpl_id.type' == 'product':

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

return super(SaleOrderLine,self)

<?xml version="1.0" encoding="utf-8"?>

<openerp>

<data noupdate="1">

On the other hand I created the render sequence for ' niu ' field in sale.order.line model.

<!-- Sequence for sale.order.line -->

<record id="seq_sale_order_line" model="ir.sequence">

<field name="name">NIU Sequence</field>

<field name="code">sale.order.line</field>

<field name="prefix">00</field>

<field name="padding">3</field>

</record>

</data>

</openerp>

And in the view , I want for each product type stockable, the field 'niu' increase its value.

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

Please I need help because I 've been a long time on this and I can't do it on my own. I hope your help , advice , recommendations. Thank you very much to all.

Avatar
Descartar
Mejor respuesta

Hello James,

Try Below field definition and code for create sequence automatically.


Field Definition :-

niu = fields.Char('NIU', readonly=True, select=True, copy=False, default='New')


Create Method :-

@api.model

def create(self, vals):

    if vals.get('name', 'New') == 'New':

        vals['name'] = self.env['ir.sequence'].next_by_code('model.name') or 'New'

    result = super(ModelName, self).create(vals)

    return result


Hope it works for you.

Thanks,

Avatar
Descartar
Mejor respuesta

can we do the same thing with studio, and use the compute to run some python code?

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
0
sept 24
953
3
ago 24
1968
0
feb 24
1289
0
feb 24
914
1
ene 24
3300