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

my code is as follow:

class FormFeedback(models.Model):
    _name = 'form.feedback'
    _description = "Form Feedback"

    feedback_type = fields.Char(string="Type", require=True)
    feedback_description = fields.Char(string="Description", require=True)
    feedback_date = fields.date(string="Date", require=True)
    obstetrics_feedback = fields.Many2one('ec.medical.obstetrics', string='Obstetrics')
    
    
    ------------------------------------------------------------------------------------------------------

class OehObstetrics(models.Model):
    _name = 'ec.medical.obstetrics'
    _inherit = ['ec.medical.patient.gfields', 'ec.medical.patient.summery']
    _description = 'Obstetrics of Patient'

    previous_obs_files = fields.One2many('ec.medical.obstetrics', 'obs_file_inverse', store=False,
                                         compute='fetch_previous_obs_files')
    obs_file_inverse = fields.Many2one('ec.medical.obstetrics')
    feedbacks = fields.One2many('form.feedback', 'obstetrics_feedback',string='Feedback')

頭像
捨棄
最佳答案

Hello Tangent,

Have you imported OehObstetrics class first?

If yes then you should first load Form Feedback class(or file if you created different file).

Here It seems "obstetrics_feedback" is not created so the system can not access it.

Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
3
11月 23
18021
3
11月 24
25908
1
4月 23
6578
2
12月 22
7391
1
11月 22
4507