Skip to Content
Menu
This question has been flagged
1 Reply
3142 Views

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')

Avatar
Discard
Best Answer

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

Avatar
Discard
Related Posts Replies Views Activity
3
Nov 23
17992
3
Nov 24
25879
1
Apr 23
6550
2
Dec 22
7374
1
Nov 22
4493