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

Hello, Iam trying this to call onchange in account invoice state field

from openerp import models, fields, api 
import logging
_logger = logging.getLogger(__name__)

class invoice(models.Model):
_inherit = 'account.invoice'

@api.onchange('state')
 def _check_onchange_invoice_state(self): 
_logger.info('=======================================================')
_logger.info(self.id)
_logger.info('=======================================================')

I now this field have "track_visibility" and I don't know if I can used or not but I really need it. Any help?

I also try @api.onchange('write_date') but nothing happens :(.

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

I recommend you to read the documentation of api@onchange and api@depend.
https://www.odoo.com/documentation/12.0/reference/orm.html#module-odoo.api
In both cases, you should probably use api@depends

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
0
ก.พ. 16
5391
2
มี.ค. 15
5284
1
ก.ค. 19
3277
Onchange date plus 2 day แก้ไขแล้ว
2
พ.ย. 16
5991
Onchange get weekday name แก้ไขแล้ว
1
ก.ย. 16
7934