Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
3008 มุมมอง

By 'activate develper mode' of openerp, I created a model, sequece and sequence code, set the Code of sequence code to model name, but it doesn't work.

x_name of model always show 'false'. How to let the x_name have the value set by the sequence ?

อวตาร
ละทิ้ง
ผู้เขียน คำตอบที่ดีที่สุด

define a sever action with the type of Python Code, code as: 

object.write({'x_name':self.pool.get('ir.sequence').next_by_code(cr, uid, 'x_my_order', context=context)})

call the action in the workflow start node.

อวตาร
ละทิ้ง