Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在更新 hr.job 表中的父表状态时遇到问题。
我继承了“hr.job”表,我想更新“状态”字段
我有一个名为:“job_req_tbl”的表继承了“hr_job”
两者都有相同的字段名为“状态”
在我的 web_app 屏幕中有一个名为 "Confirm" 的按钮,当用户单击它时,我希望 'hr_job' > 'state' 值从 'open' 到 'recruit'
我已经用以下代码解决了:
@api.multi def action_click(self): self.hr_job.state = 'recruit'