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

HI, 

i have 2 states in my form view statusbar, Draft and Sent. default state is draft. when i click save button ( in form view), the status should change into Sent. How i do this ? please help

頭像
捨棄
最佳答案

Hi,

You can override the create method or write method and change the state to the required state.

please refer this

    
    @api.model
def create(self,vals):
vals['state'] = 'sent'
    return super(ClassName, self).create(vals)

   
    @api.multi
def write(self,vals):
vals['state'] = 'sent'
    return super(ClassName, self).write(vals)



Thanks

頭像
捨棄
作者

thanks

相關帖文 回覆 瀏覽次數 活動
1
3月 21
6255
1
2月 21
3650
3
1月 20
8287
0
4月 19
2444
1
3月 19
4765