跳至內容
選單
此問題已被標幟
1 回覆
2122 瀏覽次數

How can i make multi sequence based on another field

for example i have field named prefix and field named sequence 
the user can write any thing in prefix field
for example if the user write xx in prefix , then the sequence will be xx0001 
if he enter xx again then the sequence will be xx0002 , if he enter ff then the sequence will be ff0001......
the user can write any thing in prefix field , this field isn't selection it is Char field
any idea to make this?

頭像
捨棄
最佳答案

Hi,

This can be achieved by inheriting the write method of your model and concatenating this two field values. 

def write(self, vals):
if vals.get('prefix'):
sequence = self.env['ir.sequence'].next_by_code('sale.order') or _('New')
vals['sequence'] = vals['prefix'] + sequence
return super().write(vals)

Thanks

頭像
捨棄
作者

but this will make one sequence
xx001
ff002

作者

i need xx001
ff001
xx002
hh001
hh002
ff002

相關帖文 回覆 瀏覽次數 活動
3
10月 24
14037
0
10月 24
2459
1
5月 25
2357
1
9月 24
1299
1
10月 23
2478