mirror of
https://github.com/bringout/odoomates.git
synced 2026-04-22 04:12:03 +02:00
56 lines
1.9 KiB
Python
56 lines
1.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import api, fields, models, _
|
|
|
|
|
|
class CreateAppointmentWizard(models.TransientModel):
|
|
_name = "create.appointment.wizard"
|
|
_description = "Create Appointment Wizard"
|
|
|
|
@api.model
|
|
def default_get(self, fields):
|
|
res = super(CreateAppointmentWizard, self).default_get(fields)
|
|
if self._context.get('active_id'):
|
|
res['patient_id'] = self._context.get('active_id')
|
|
return res
|
|
|
|
date_appointment = fields.Date(string='Date', required=False)
|
|
patient_id = fields.Many2one('hospital.patient', string="Patient", required=True)
|
|
|
|
def action_create_appointment(self):
|
|
vals = {
|
|
'patient_id': self.patient_id.id,
|
|
'doctor_id': 2,
|
|
'date_appointment': self.date_appointment
|
|
}
|
|
appointment_rec = self.env['hospital.appointment'].create(vals)
|
|
return {
|
|
'name': _('Appointment'),
|
|
'type': 'ir.actions.act_window',
|
|
'view_mode': 'form',
|
|
'res_model': 'hospital.appointment',
|
|
'res_id': appointment_rec.id,
|
|
}
|
|
|
|
# def action_view_appointment(self):
|
|
# # action = self.env.ref('om_hospital.action_hospital_appointment').read()[0]
|
|
# # action['domain'] = [('patient_id', '=', self.patient_id.id)]
|
|
# # return action
|
|
#
|
|
# action = self.env['ir.actions.actions']._for_xml_id("om_hospital.action_hospital_appointment")
|
|
# action['domain'] = [('patient_id', '=', self.patient_id.id)]
|
|
# return action
|
|
#
|
|
# # return {
|
|
# # 'type': 'ir.actions.act_window',
|
|
# # 'name': 'Appointments',
|
|
# # 'res_model': 'hospital.appointment',
|
|
# # 'view_type': 'form',
|
|
# # 'domain': [('patient_id', '=', self.patient_id.id)],
|
|
# # 'view_mode': 'tree,form',
|
|
# # 'target': 'current',
|
|
# # }
|
|
# # return action
|
|
|
|
|
|
|