@ -0,0 +1,42 @@ |
|||
Medical Lab Management v15 |
|||
========================== |
|||
Helps You To Manage Medical Lab Operations. |
|||
|
|||
|
|||
Configuration |
|||
============= |
|||
* No additional configurations needed |
|||
|
|||
Company |
|||
------- |
|||
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
|||
|
|||
Credits |
|||
------- |
|||
* Developers: Anusha P P @ cybrosys |
|||
Niyas Raphy @ cybrosys |
|||
V14 Muhammad P @ cybrosys |
|||
V15 Mily Shajan @ cybrosys |
|||
|
|||
Contacts |
|||
-------- |
|||
* Mail Contact : odoo@cybrosys.com |
|||
* Website : https://cybrosys.com |
|||
|
|||
Bug Tracker |
|||
----------- |
|||
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. |
|||
|
|||
Maintainer |
|||
========== |
|||
.. image:: https://cybrosys.com/images/logo.png |
|||
:target: https://cybrosys.com |
|||
|
|||
This module is maintained by Cybrosys Technologies. |
|||
|
|||
For support and more information, please visit `Our Website <https://cybrosys.com/>`__ |
|||
|
|||
Further information |
|||
=================== |
|||
HTML Description: `<static/description/index.html>`__ |
|||
|
@ -0,0 +1,23 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Anusha P P @ cybrosys and Niyas Raphy @ cybrosys(odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
from . import models |
@ -0,0 +1,55 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2021-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
{ |
|||
'name': "Medical Lab Management", |
|||
'version': '15.0.1.0.0', |
|||
'summary': """Manage Medical Lab Operations.""", |
|||
'description': """Manage Medical Lab General Operations, Odoo15, Odoo 15""", |
|||
'author': "Cybrosys Techno Solutions", |
|||
'maintainer': 'Cybrosys Techno Solutions', |
|||
'company': "Cybrosys Techno Solutions", |
|||
'website': "https://www.cybrosys.com", |
|||
'category': 'Industries', |
|||
'depends': ['base', 'mail', 'account','contacts'], |
|||
'data': [ |
|||
'security/lab_users.xml', |
|||
'security/ir.model.access.csv', |
|||
'views/res_partner.xml', |
|||
'views/lab_patient_view.xml', |
|||
'views/test_unit_view.xml', |
|||
'views/lab_test_type.xml', |
|||
'views/lab_test_content_type.xml', |
|||
'views/physician_specialty.xml', |
|||
'views/physician_details.xml', |
|||
'views/lab_request.xml', |
|||
'views/lab_appointment.xml', |
|||
'views/account_invoice.xml', |
|||
'report/report.xml', |
|||
'report/lab_test_report.xml', |
|||
'report/lab_patient_card.xml', |
|||
], |
|||
'images': ['static/description/banner.png'], |
|||
'license': 'AGPL-3', |
|||
'installable': True, |
|||
'auto_install': False, |
|||
'application': True, |
|||
} |
@ -0,0 +1,8 @@ |
|||
## Module <medical_lab_management> |
|||
|
|||
#### 10.08.2021 |
|||
#### Version 15.0.1.0.0 |
|||
#### ADD |
|||
Initial Commit |
|||
|
|||
|
@ -0,0 +1,33 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Anusha P P @ cybrosys and Niyas Raphy @ cybrosys(odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
from . import physician_speciality |
|||
from . import res_partner |
|||
from . import lab_patient |
|||
from . import testing_unit |
|||
from . import lab_test_type |
|||
from . import lab_test_content_type |
|||
from . import lab_appointment |
|||
from . import lab_request |
|||
from . import account_invoice |
|||
|
|||
|
@ -0,0 +1,37 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2021-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Anusha P P @ cybrosys and Niyas Raphy @ cybrosys(odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
from odoo import models, fields, api |
|||
|
|||
|
|||
class LabRequestInvoices(models.Model): |
|||
_inherit = 'account.move' |
|||
|
|||
is_lab_invoice = fields.Boolean(string="Is Lab Invoice") |
|||
lab_request = fields.Many2one('lab.appointment', string="Lab Appointment", help="Source Document") |
|||
|
|||
def action_invoice_paid(self): |
|||
res = super(LabRequestInvoices, self).action_invoice_paid() |
|||
lab_app_obj = self.env['lab.appointment'].search([('id', '=', self.lab_request.id)]) |
|||
for obj in lab_app_obj: |
|||
obj.write({'state': 'invoiced'}) |
|||
return res |
@ -0,0 +1,189 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Anusha P P @ cybrosys and Niyas Raphy @ cybrosys(odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
import datetime |
|||
from odoo.exceptions import UserError |
|||
from odoo import fields, models, api, _ |
|||
|
|||
|
|||
class Appointment(models.Model): |
|||
_name = 'lab.appointment' |
|||
_inherit = ['mail.thread'] |
|||
_rec_name = 'name' |
|||
_description = "Appointment" |
|||
_order = 'appointment_date' |
|||
|
|||
user_id = fields.Many2one('res.users', 'Responsible', readonly=True) |
|||
patient_id = fields.Many2one('lab.patient', string='Patient', required=True, select=True, |
|||
help='Patient Name') |
|||
name = fields.Char(string='Appointment ID', readonly=True, default=lambda self: _('New')) |
|||
date = fields.Datetime(string='Requested Date', default=lambda s: fields.Datetime.now(), |
|||
help="This is the date in which patient appointment is noted") |
|||
appointment_date = fields.Datetime(string='Appointment Date', default=lambda s: fields.Datetime.now(), |
|||
help="This is the appointment date") |
|||
physician_id = fields.Many2one('res.partner', string='Referred By', select=True) |
|||
comment = fields.Text(string='Comments') |
|||
appointment_lines = fields.One2many('lab.appointment.lines', 'test_line_appointment', string="Test Request") |
|||
|
|||
request_count = fields.Integer(compute="_compute_state", string='# of Requests', copy=False, default=0) |
|||
inv_count = fields.Integer(compute="_compute_state", string='# of Invoices', copy=False, default=0) |
|||
state = fields.Selection([ |
|||
('draft', 'Draft'), |
|||
('confirm', 'Confirmed'), |
|||
('request_lab', 'Lab Requested'), |
|||
('completed', 'Test Result'), |
|||
('to_invoice', 'To Invoice'), |
|||
('invoiced', 'Done'), |
|||
('cancel', 'Cancelled'), |
|||
], string='Status', readonly=True, copy=False, index=True, track_visibility='onchange', default='draft', |
|||
) |
|||
|
|||
priority = fields.Selection([ |
|||
('0', 'Low'), |
|||
('1', 'Normal'), |
|||
('2', 'High') |
|||
], size=1) |
|||
|
|||
_defaults = { |
|||
'priority': '0', |
|||
} |
|||
|
|||
@api.model |
|||
def create(self, vals): |
|||
if vals: |
|||
vals['name'] = self.env['ir.sequence'].next_by_code('lab.appointment') or _('New') |
|||
result = super(Appointment, self).create(vals) |
|||
return result |
|||
|
|||
def _compute_state(self): |
|||
for obj in self: |
|||
obj.request_count = self.env['lab.request'].search_count([('app_id', '=', obj.id)]) |
|||
obj.inv_count = self.env['account.move'].search_count([('lab_request', '=', obj.id)]) |
|||
|
|||
def create_invoice(self): |
|||
invoice_obj = self.env["account.move"] |
|||
invoice_line_obj = self.env["account.move.line"] |
|||
journal = self.env['account.journal'].search([('type', '=', 'sale')], limit=1) |
|||
prd_account_id = journal.default_account_id.id |
|||
for lab in self: |
|||
lab.write({'state': 'to_invoice'}) |
|||
if lab.patient_id: |
|||
curr_invoice = { |
|||
'partner_id': lab.patient_id.patient.id, |
|||
'state': 'draft', |
|||
'move_type': 'out_invoice', |
|||
'invoice_date': str(datetime.datetime.now()), |
|||
'invoice_origin': "Lab Test# : " + lab.name, |
|||
'lab_request': lab.id, |
|||
'is_lab_invoice': True, |
|||
} |
|||
|
|||
inv_ids = invoice_obj.create(curr_invoice) |
|||
inv_id = inv_ids.id |
|||
|
|||
if inv_ids: |
|||
journal = self.env['account.journal'].search([('type', '=', 'sale')], limit=1) |
|||
prd_account_id = journal.default_account_id.id |
|||
list_value = [] |
|||
if lab.appointment_lines: |
|||
for line in lab.appointment_lines: |
|||
list_value.append((0,0, { |
|||
'name': line.lab_test.lab_test, |
|||
'price_unit': line.cost, |
|||
'quantity': 1.0, |
|||
'account_id': prd_account_id, |
|||
'move_id': inv_id, |
|||
})) |
|||
print(list_value) |
|||
inv_ids.write({'invoice_line_ids': list_value}) |
|||
|
|||
self.write({'state': 'invoiced'}) |
|||
view_id = self.env.ref('account.view_move_form').id |
|||
return { |
|||
'view_mode': 'form', |
|||
'res_model': 'account.move', |
|||
'view_id': view_id, |
|||
'type': 'ir.actions.act_window', |
|||
'name': _('Lab Invoices'), |
|||
'res_id': inv_id |
|||
} |
|||
|
|||
def action_request(self): |
|||
if self.appointment_lines: |
|||
for line in self.appointment_lines: |
|||
data = self.env['lab.test'].search([('lab_test', '=', line.lab_test.lab_test)]) |
|||
self.env['lab.request'].create({'lab_request_id': self.name, |
|||
'app_id': self.id, |
|||
'lab_requestor': self.patient_id.id, |
|||
'lab_requesting_date': self.appointment_date, |
|||
'test_request': line.lab_test.id, |
|||
'request_line': [(6, 0, [x.id for x in data.test_lines])], |
|||
}) |
|||
self.state = 'request_lab' |
|||
else: |
|||
raise UserError(_('Please Select Lab Test.')) |
|||
|
|||
def confirm_appointment(self): |
|||
|
|||
message_body = "Dear " + self.patient_id.patient.name + "," + "<br>Your Appointment Has been Confirmed " \ |
|||
+ "<br>Appointment ID : " + self.name + "<br>Date : " + str(self.appointment_date) + \ |
|||
'<br><br>Thank you' |
|||
|
|||
template_obj = self.env['mail.mail'] |
|||
template_data = { |
|||
'subject': 'Appointment Confirmation', |
|||
'body_html': message_body, |
|||
'email_from': self.env.user.company_id.email, |
|||
'email_to': self.patient_id.email |
|||
} |
|||
template_id = template_obj.create(template_data) |
|||
template_obj.send(template_id) |
|||
self.write({'state': 'confirm'}) |
|||
|
|||
def cancel_appointment(self): |
|||
return self.write({'state': 'cancel'}) |
|||
|
|||
|
|||
class LabAppointmentLines(models.Model): |
|||
_name = 'lab.appointment.lines' |
|||
_description = 'Lab Appointment ' |
|||
|
|||
lab_test = fields.Many2one('lab.test', string="Test") |
|||
cost = fields.Float(string="Cost") |
|||
requesting_date = fields.Date(string="Date") |
|||
test_line_appointment = fields.Many2one('lab.appointment', string="Appointment") |
|||
|
|||
@api.onchange('lab_test') |
|||
def cost_update(self): |
|||
if self.lab_test: |
|||
self.cost = self.lab_test.test_cost |
|||
|
|||
|
|||
class LabPatientInherit(models.Model): |
|||
_inherit = 'lab.patient' |
|||
|
|||
app_count = fields.Integer(compute="_compute_state", string='# of Appointments', copy=False, default=0) |
|||
|
|||
def _compute_state(self): |
|||
for obj in self: |
|||
obj.app_count = self.env['lab.appointment'].search_count([('patient_id', '=', obj.id)]) |
|||
|
@ -0,0 +1,79 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Anusha P P @ cybrosys and Niyas Raphy @ cybrosys(odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
from dateutil.relativedelta import relativedelta |
|||
from odoo import models, fields, api, _ |
|||
|
|||
|
|||
class LabPatient(models.Model): |
|||
_name = 'lab.patient' |
|||
_rec_name = 'patient' |
|||
_description = 'Patient' |
|||
|
|||
patient = fields.Many2one('res.partner', string='Partner', required=True) |
|||
patient_image = fields.Binary(string='Photo') |
|||
patient_id = fields.Char(string='Patient ID', readonly=True) |
|||
name = fields.Char(string='Patient ID', default=lambda self: _('New')) |
|||
title = fields.Selection([ |
|||
('ms', 'Miss'), |
|||
('mister', 'Mister'), |
|||
('mrs', 'Mrs'), |
|||
], string='Title', default='mister', required=True) |
|||
emergency_contact = fields.Many2one( |
|||
'res.partner', string='Emergency Contact') |
|||
gender = fields.Selection( |
|||
[('m', 'Male'), ('f', 'Female'), |
|||
('ot', 'Other')], 'Gender', required=True) |
|||
dob = fields.Date(string='Date Of Birth', required=True) |
|||
age = fields.Char(string='Age', compute='compute_age') |
|||
blood_group = fields.Selection( |
|||
[('A+', 'A+ve'), ('B+', 'B+ve'), ('O+', 'O+ve'), ('AB+', 'AB+ve'), |
|||
('A-', 'A-ve'), ('B-', 'B-ve'), ('O-', 'O-ve'), ('AB-', 'AB-ve')], |
|||
'Blood Group') |
|||
visa_info = fields.Char(string='Visa Info', size=64) |
|||
id_proof_number = fields.Char(string='ID Proof Number') |
|||
note = fields.Text(string='Note') |
|||
date = fields.Datetime(string='Date Requested', default=lambda s: fields.Datetime.now(), invisible=True) |
|||
phone = fields.Char(string="Phone", required=True) |
|||
email = fields.Char(string="Email", required=True) |
|||
|
|||
def compute_age(self): |
|||
for data in self: |
|||
if data.dob: |
|||
dob = fields.Datetime.from_string(data.dob) |
|||
date = fields.Datetime.from_string(data.date) |
|||
delta = relativedelta(date, dob) |
|||
data.age = str(delta.years) + ' years' |
|||
else: |
|||
data.age = '' |
|||
|
|||
@api.model |
|||
def create(self, vals): |
|||
sequence = self.env['ir.sequence'].next_by_code('lab.patient') |
|||
vals['name'] = sequence or _('New') |
|||
result = super(LabPatient, self).create(vals) |
|||
return result |
|||
|
|||
@api.onchange('patient') |
|||
def detail_get(self): |
|||
self.phone = self.patient.phone |
|||
self.email = self.patient.email |
@ -0,0 +1,128 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Anusha P P @ cybrosys and Niyas Raphy @ cybrosys(odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
import datetime |
|||
from odoo import models, fields, api, _ |
|||
from odoo.exceptions import ValidationError |
|||
|
|||
|
|||
class LabRequest(models.Model): |
|||
_name = 'lab.request' |
|||
_inherit = ['mail.thread'] |
|||
_rec_name = 'lab_request_id' |
|||
_description = 'Lab Request' |
|||
|
|||
name = fields.Char(string='Lab Test', size=16, readonly=True, required=True, help="Lab result ID", default=lambda *a: '#') |
|||
lab_request_id = fields.Char(string='Appointment ID', help="Lab appointment ID") |
|||
app_id = fields.Many2one('lab.appointment', string='Appointment') |
|||
lab_requestor = fields.Many2one('lab.patient', string='Patient', required=True, select=True, |
|||
help='Patient Name') |
|||
test_request = fields.Many2one('lab.test', string='Test') |
|||
lab_requesting_date = fields.Datetime(string='Requested Date') |
|||
comment = fields.Text('Comment') |
|||
request_line = fields.One2many('lab.test.attribute', 'test_request_reverse', string="Test Lines") |
|||
state = fields.Selection([ |
|||
('draft', 'Draft'), |
|||
('sample_collection', 'Sample Collected'), |
|||
('test_in_progress', 'Test In Progress'), |
|||
('completed', 'Completed'), |
|||
('cancel', 'Cancelled'), |
|||
|
|||
], string='Status', readonly=True, copy=False, index=True, track_visibility='onchange', default='draft') |
|||
|
|||
@api.model |
|||
def create(self, vals): |
|||
sequence = self.env['ir.sequence'].next_by_code('lab.request') |
|||
vals['name'] = sequence or '/' |
|||
return super(LabRequest, self).create(vals) |
|||
|
|||
def set_to_sample_collection(self): |
|||
return self.write({'state': 'sample_collection'}) |
|||
|
|||
def set_to_test_in_progress(self): |
|||
return self.write({'state': 'test_in_progress'}) |
|||
|
|||
def cancel_lab_test(self): |
|||
return self.write({'state': 'cancel'}) |
|||
|
|||
def set_to_test_completed(self): |
|||
if not self.request_line: |
|||
raise ValidationError(_("No Result Lines Entered !")) |
|||
req_obj = self.env['lab.request'].search_count([('app_id', '=', self.app_id.id), |
|||
('id', '!=', self.id)]) |
|||
req_obj_count = self.env['lab.request'].search_count([('app_id', '=', self.app_id.id), |
|||
('id', '!=', self.id), |
|||
('state', '=', 'completed')]) |
|||
if req_obj == req_obj_count: |
|||
app_obj = self.env['lab.appointment'].search([('id', '=', self.app_id.id)]) |
|||
app_obj.write({'state': 'completed'}) |
|||
return self.write({'state': 'completed'}) |
|||
|
|||
def print_lab_test(self): |
|||
return self.env.ref('medical_lab_management.print_lab_test').report_action(self) |
|||
|
|||
def lab_invoice_create(self): |
|||
invoice_obj = self.env["account.move"] |
|||
invoice_line_obj = self.env["account.move.line"] |
|||
for lab in self: |
|||
if lab.lab_requestor: |
|||
curr_invoice = { |
|||
'partner_id': lab.lab_requestor.patient.id, |
|||
'account_id': lab.lab_requestor.patient.property_account_receivable_id.id, |
|||
'state': 'draft', |
|||
'type': 'out_invoice', |
|||
'date_invoice': datetime.datetime.now(), |
|||
'origin': "Lab Test# : " + lab.name, |
|||
'target': 'new', |
|||
'lab_request': lab.id, |
|||
'is_lab_invoice': True |
|||
} |
|||
|
|||
inv_ids = invoice_obj.create(curr_invoice) |
|||
inv_id = inv_ids.id |
|||
|
|||
if inv_ids: |
|||
journal = self.env['account.journal'].search([('type', '=', 'sale')], limit=1) |
|||
prd_account_id = journal.default_credit_account_id.id |
|||
if lab.test_request: |
|||
curr_invoice_line = { |
|||
'name': "Charge for lab test", |
|||
'price_unit': lab.test_request.test_cost or 0, |
|||
'quantity': 1.0, |
|||
'account_id': prd_account_id, |
|||
'invoice_id': inv_id, |
|||
} |
|||
|
|||
invoice_line_obj.create(curr_invoice_line) |
|||
|
|||
self.write({'state': 'invoiced'}) |
|||
form_view_ref = self.env.ref('account.view_move_form', False) |
|||
tree_view_ref = self.env.ref('account.view_move_tree', False) |
|||
|
|||
return { |
|||
'domain': "[('id', '=', " + str(inv_id) + ")]", |
|||
'name': 'Lab Invoices', |
|||
'view_mode': 'form', |
|||
'res_model': 'account.move', |
|||
'type': 'ir.actions.act_window', |
|||
'views': [(tree_view_ref.id, 'tree'), (form_view_ref.id, 'form')], |
|||
} |
@ -0,0 +1,37 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Anusha P P @ cybrosys and Niyas Raphy @ cybrosys(odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
from odoo import models, fields |
|||
|
|||
|
|||
class LabTestContentType(models.Model): |
|||
_name = 'lab.test.content_type' |
|||
_rec_name = 'content_type_name' |
|||
_description = "Content" |
|||
|
|||
content_type_name = fields.Char(string="Name", required=True, help="Content type name") |
|||
content_type_code = fields.Char(string="Code") |
|||
parent_test = fields.Many2one('lab.test', string="Test Category") |
|||
|
|||
|
|||
|
|||
|
@ -0,0 +1,47 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Anusha P P @ cybrosys and Niyas Raphy @ cybrosys(odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
from odoo import models, fields |
|||
|
|||
|
|||
class LabTestType(models.Model): |
|||
_name = 'lab.test' |
|||
_description = "Lab Test" |
|||
_rec_name = 'lab_test' |
|||
_inherit = ['mail.thread'] |
|||
|
|||
lab_test = fields.Char(string="Test Name", required=True, help="Name of lab test ") |
|||
lab_test_code = fields.Char(string="Test Code", required=True) |
|||
test_lines = fields.One2many('lab.test.attribute', 'test_line_reverse', string="Attribute") |
|||
test_cost = fields.Float(string="Cost", required=True) |
|||
|
|||
|
|||
class LabTestAttribute(models.Model): |
|||
_name = 'lab.test.attribute' |
|||
_description = "Lab Test Attributes" |
|||
|
|||
test_content = fields.Many2one('lab.test.content_type', string="Content") |
|||
result = fields.Char(string="Result") |
|||
unit = fields.Many2one('test.unit', string="Unit") |
|||
interval = fields.Char(string="Reference Intervals") |
|||
test_line_reverse = fields.Many2one('lab.test', string="Attribute") |
|||
test_request_reverse = fields.Many2one('lab.request', string="Request") |
@ -0,0 +1,35 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Anusha P P @ cybrosys and Niyas Raphy @ cybrosys(odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
from odoo import models, fields |
|||
|
|||
|
|||
class PhysicianSpeciality(models.Model): |
|||
_name = 'physician.speciality' |
|||
_description = 'Medical Specialty' |
|||
|
|||
code = fields.Char(string='ID') |
|||
name = fields.Char(string='Specialty', help='Name of the specialty', required=True) |
|||
|
|||
_sql_constraints = [ |
|||
('name_uniq', 'UNIQUE(name)', 'Name must be unique!'), |
|||
] |
@ -0,0 +1,35 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Anusha P P @ cybrosys and Niyas Raphy @ cybrosys(odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
from odoo import models, fields |
|||
|
|||
|
|||
class ResPartnerPatient(models.Model): |
|||
_inherit = 'res.partner' |
|||
_description = "Patient" |
|||
|
|||
is_patient = fields.Boolean(string='Is Patient') |
|||
is_physician = fields.Boolean(string='Is Physician') |
|||
speciality = fields.Many2one('physician.speciality', string='Speciality') |
|||
hospital = fields.Many2one('res.partner', string='Hospital') |
|||
|
|||
|
@ -0,0 +1,32 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Anusha P P @ cybrosys and Niyas Raphy @ cybrosys(odoo@cybrosys.com) |
|||
# |
|||
# You can modify it under the terms of the GNU AFFERO |
|||
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|||
# (AGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
from odoo import models, fields |
|||
|
|||
|
|||
class TestingUnit(models.Model): |
|||
_name = 'test.unit' |
|||
_rec_name = 'code' |
|||
_description = "Test Unit" |
|||
|
|||
unit = fields.Char(string="Unit", required=True) |
|||
code = fields.Char(string="code", required=True) |
@ -0,0 +1,63 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<data> |
|||
<template id="report_patient_label"> |
|||
<t t-call="web.html_container"> |
|||
<t t-call="web.external_layout"> |
|||
<t t-foreach="docs" t-as="o"> |
|||
<div class="page"> |
|||
<div class="oe_structure"/> |
|||
<div class="row"> |
|||
<div class="col-xs-2" style="margin:auto;"> |
|||
</div> |
|||
<center> |
|||
<br/> |
|||
<div class="col-xs-8" style="margin:auto"> |
|||
<table class="table table-condensed" style="border: 3px solid black !important;"> |
|||
<tr> |
|||
<td width="40%"> |
|||
<p style="text-align:center;padding-top:10px;"> |
|||
<img t-if="not o.patient_image" t-att-src="'/web/static/src/img/placeholder.png'" height="120" border="1" width="120"/> |
|||
<img t-if="o.patient_image" t-att-src="'data:image/png;base64,%s' %o.patient_image" height="120" border="1" width="120"/> |
|||
</p> |
|||
<p style="text-align:center;"> |
|||
<strong><span t-field="o.patient.name"/></strong> |
|||
</p> |
|||
</td> |
|||
<td width="60%"> |
|||
<table> |
|||
<tr> |
|||
<td> |
|||
<p style="text-align:right;"><strong>Patient ID :</strong></p> |
|||
<p style="text-align:right;"><strong>Sex :</strong></p> |
|||
<p style="text-align:right;"><strong>Age :</strong></p> |
|||
</td> |
|||
<td> |
|||
<p style="text-align:left;" t-field="o.name"/> |
|||
<t t-if="o.gender=='m'"> |
|||
<p style="text-align:left;">Male</p> |
|||
</t> |
|||
<t t-if="o.gender=='ot'"> |
|||
<p style="text-align:left;">Other</p> |
|||
</t> |
|||
<t t-if="o.gender=='f'"> |
|||
<p style="text-align:left;">Female</p> |
|||
</t> |
|||
<p style="text-align:left;" t-field="o.age"/> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</div> |
|||
</center> |
|||
</div> |
|||
</div> |
|||
<p style="page-break-after:always"></p> |
|||
</t> |
|||
</t> |
|||
</t> |
|||
</template> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,50 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<data> |
|||
<template id="report_patient_labtest"> |
|||
<t t-call="web.html_container"> |
|||
<t t-call="web.external_layout"> |
|||
<t t-foreach="docs" t-as="o"> |
|||
<div class="page"> |
|||
<br /> |
|||
<h3 style="text-decoration:underline;text-align:center;"><b>Lab Test Report</b></h3> |
|||
<br/> |
|||
<br/> |
|||
<table width="99%" style="margin-left:50px;margin-top:5px;border: None solid black;"> |
|||
<tr> |
|||
<td style="width:50px;height:25px" ><span>Patient: </span><span t-att-style="style" t-esc="o.lab_requestor.patient.name"/></td> |
|||
<td style="width:50px;height:25px" ><span>Test : </span><span t-att-style="style" t-esc="o.test_request.lab_test"/></td> |
|||
<td style="width:50px;height:25px" ><span>Date: </span><span t-att-style="style" t-esc="o.lab_requesting_date"/></td> |
|||
</tr> |
|||
</table> |
|||
<br/> |
|||
<br/> |
|||
<table width="99%" style="border:1px solid black;padding-left:1.16cm;"> |
|||
<thead> |
|||
<th style="border:1px solid black;text-align:center;" width="13%" class="td4">Content</th> |
|||
<th style="border:1px solid black;text-align:center;" width="13%" class="td4">Unit</th> |
|||
<th style="border:1px solid black;text-align:center;" width="13%" class="td4">Normal Range</th> |
|||
<th style="border:1px solid black;text-align:center;" width="13%" class="td4">Result</th> |
|||
</thead> |
|||
<tbody> |
|||
<t t-foreach="o.request_line" t-as="l"> |
|||
<tr style="border:1px solid black"> |
|||
<td style="border:1px solid black;text-align:center;"><span t-esc="l.test_content.content_type_name" style="font-size:16px;"/></td> |
|||
<td style="border:1px solid black;text-align:center;"><span t-esc="l.unit.code" style="font-size:16px;"/></td> |
|||
<td style="border:1px solid black;text-align:center;"><span t-esc="l.interval" style="font-size:16px;"/></td> |
|||
<td style="border:1px solid black;text-align:center;"><span t-esc="l.result" style="font-size:16px;"/></td> |
|||
</tr> |
|||
</t> |
|||
</tbody> |
|||
</table> |
|||
<br/> |
|||
<br/> |
|||
</div> |
|||
<p style="page-break-after:always"></p> |
|||
</t> |
|||
</t> |
|||
</t> |
|||
</template> |
|||
</data> |
|||
|
|||
</odoo> |
@ -0,0 +1,23 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<data> |
|||
<record id="print_lab_test" model="ir.actions.report"> |
|||
<field name="name">Lab Test Result</field> |
|||
<field name="model">lab.request</field> |
|||
<field name="report_type">qweb-pdf</field> |
|||
<field name="report_name">medical_lab_management.report_patient_labtest</field> |
|||
<field name="report_file">medical_lab_management.report_patient_labtest</field> |
|||
</record> |
|||
|
|||
<report |
|||
string="Patient Card" |
|||
id="action_report_patient_label" |
|||
model="lab.patient" |
|||
report_type="qweb-pdf" |
|||
name="medical_lab_management.report_patient_label" |
|||
file="medical_lab_management.report_patient_label" |
|||
|
|||
/> |
|||
|
|||
</data> |
|||
</odoo> |
|
@ -0,0 +1,20 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<record model="ir.module.category" id="module_category_lab_management"> |
|||
<field name="name">Lab Management</field> |
|||
</record> |
|||
|
|||
<record id="group_lab_management_user" model="res.groups"> |
|||
<field name="name">Lab User</field> |
|||
<field name="category_id" ref="module_category_lab_management"/> |
|||
<field name="implied_ids" eval="[(4, ref('base.group_user'))]"/> |
|||
</record> |
|||
|
|||
<record id="group_lab_management_technician" model="res.groups"> |
|||
<field name="name">Lab Manager</field> |
|||
<field name="category_id" ref="module_category_lab_management"/> |
|||
<field name="implied_ids" eval="[(4, ref('group_lab_management_user'))]"/> |
|||
<field name="users" eval="[(4, ref('base.user_root')), (4, ref('base.user_admin'))]"/> |
|||
</record> |
|||
|
|||
</odoo> |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 60 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 52 KiB |
After Width: | Height: | Size: 54 KiB |
After Width: | Height: | Size: 74 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 76 KiB |
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 85 KiB |
After Width: | Height: | Size: 202 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 76 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 174 KiB |
After Width: | Height: | Size: 78 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 17 KiB |
@ -0,0 +1,845 @@ |
|||
|
|||
<div class="container" style="padding: 1rem !important; margin-bottom: 1rem !important;"> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between" |
|||
style="border-bottom: 1px solid #d5d5d5;"> |
|||
<div class="my-3"> |
|||
<img src="./assets/icons/logo.png" style="width: auto !important; height: 40px !important;"> |
|||
</div> |
|||
<div class="my-3 d-flex align-items-center"> |
|||
<div |
|||
style="background-color: #7C7BAD !important; color: #fff !important; font-weight: 600 !important; padding: 5px 15px 8px !important; margin: 0 5px !important;"> |
|||
<i class="fa fa-check mr-1"></i>Community |
|||
</div> |
|||
<div |
|||
style="background-color: #875A7B !important; color: #fff !important; font-weight: 600 !important; padding: 5px 15px 8px !important; margin: 0 5px !important;"> |
|||
<i class="fa fa-check mr-1"></i>Enterprise |
|||
</div> |
|||
|
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="container" style="padding: 0rem 1.5rem 4rem !important"> |
|||
<div class="row" style="height: 900px !important;"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12" |
|||
style="padding: 4rem 1rem !important; background-color: #714B67 !important; height: 600px !important; border-radius: 20px !important;"> |
|||
<h1 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #FFFFFF !important; font-size: 3.5rem !important; text-align: center !important;"> |
|||
Medical Lab Management</h1> |
|||
<p |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 300 !important; color: #FFFFFF !important; font-size: 1.4rem !important; text-align: center !important;"> |
|||
Manage Lab Activities |
|||
</p> |
|||
<img src="./assets/screenshots/hero.gif" class="img-responsive" width="100%" height="auto" /> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="row"> |
|||
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin-bottom: 2rem !important"> |
|||
<h2 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
|||
<i class="fa fa-compass mr-2"></i>Explore this module |
|||
</h2> |
|||
</div> |
|||
<div class="col-md-6"> |
|||
<a href="#overview" style="text-decoration: none !important;"> |
|||
<div class="row" |
|||
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> |
|||
<div class="col-8"> |
|||
<h3 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> |
|||
Overview</h3> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> |
|||
Learn more about this module</p> |
|||
</div> |
|||
<div class="col-4 text-right d-flex justify-content-end align-items-center"> |
|||
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> |
|||
</div> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-md-6"> |
|||
<a href="#features" style="text-decoration: none !important;"> |
|||
<div class="row" |
|||
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> |
|||
<div class="col-8"> |
|||
<h3 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> |
|||
Features</h3> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> |
|||
View features of this module</p> |
|||
</div> |
|||
<div class="col-4 text-right d-flex justify-content-end align-items-center"> |
|||
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> |
|||
</div> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-md-6"> |
|||
<a href="#screenshots" style="text-decoration: none !important;"> |
|||
<div class="row" |
|||
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> |
|||
<div class="col-8"> |
|||
<h3 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> |
|||
Screenshots</h3> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> |
|||
See key screenshots of this module</p> |
|||
</div> |
|||
<div class="col-4 text-right d-flex justify-content-end align-items-center"> |
|||
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> |
|||
</div> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-md-6"> |
|||
<a href="#video" style="text-decoration: none !important;"> |
|||
<div class="row" |
|||
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> |
|||
<div class="col-8"> |
|||
<h3 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> |
|||
Video</h3> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> |
|||
Watch tutorial video on this module</p> |
|||
</div> |
|||
<div class="col-4 text-right d-flex justify-content-end align-items-center"> |
|||
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> |
|||
</div> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
|
|||
|
|||
<div class="row" id="overview"> |
|||
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> |
|||
<h2 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
|||
<i class="fa fa-pie-chart mr-2"></i>Overview |
|||
</h2> |
|||
</div> |
|||
|
|||
<div class="col-mg-12 pl-3"> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important; line-height: 30px !important;"> |
|||
This app helps the user to systematically perform the activities of a Medical Laboratory. |
|||
The app simplifies the activities like Patient Management, Appointment Management, Test Requests Management, Lab Results Management, and so on.</p> |
|||
|
|||
</div> |
|||
</div> |
|||
|
|||
|
|||
<div class="row" id="features"> |
|||
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> |
|||
<h2 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
|||
<i class="fa fa-star mr-2"></i>Features |
|||
</h2> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Community & Enterprise Support</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Available in Odoo 15.0 Community and Enterprise.</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Manage Patients</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Manage each patients in detail.</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Issue Patient Card</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Gives a patient report.</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Manage Referrals of Patients</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Manages refered persons of each patients.</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Manage Appointments</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Manages appointments for each patients.</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Mail Notification For Appointments</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Gives a notification mail when appointment is confirmed</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Manage Lab Requests</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Manage lab requests of each patients.</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Print Lab Test Result Of Patient</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Detailed Lab Report of each patients</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="row" id="screenshots"> |
|||
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> |
|||
<h2 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
|||
<i class="fa fa-image mr-2"></i>Screenshots |
|||
</h2> |
|||
</div> |
|||
<div class="col-lg-12 my-2"> |
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Create Patients.</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
It creates each patients for lab test. |
|||
</p> |
|||
<img src="assets/screenshots/cr_patient1.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
|
|||
|
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Go to Laboratory -> Patient -> Print -> Patient Card.</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Issues Patient card . |
|||
</p> |
|||
<img src="assets/screenshots/patient_card2.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Create Appointments</h4> |
|||
|
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Go to Laboratory -> Appointments->Create Appointments. |
|||
</p> |
|||
<img src="assets/screenshots/appointment3.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Mail Notification For Appointments</h4> |
|||
|
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
When we confirm the appointment the appointment details will be sent through E-Mail. |
|||
</p> |
|||
<img src="assets/screenshots/mail.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Lab Request</h4> |
|||
|
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
creates lab request of each patients |
|||
</p> |
|||
<img src="assets/screenshots/lab_request5.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Lab Test Result</h4> |
|||
|
|||
<p class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Issues Lab Test Result Report</p> |
|||
|
|||
<img src="assets/screenshots/lab report6.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
|
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">Create invoice for lab test. |
|||
</h4> |
|||
|
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Invoices are created for each lab test. |
|||
</p> |
|||
|
|||
<img src="assets/screenshots/draft invoice7.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
|
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> You can see today's appointments here. |
|||
</h4> |
|||
|
|||
|
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Here,we can view today's appointments of all patients. |
|||
</p> |
|||
|
|||
<img src="assets/screenshots/today appo8.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
|
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">Go to Laboratory -> Configuration -> Lab test.. |
|||
</h4> |
|||
|
|||
|
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Create Lab tests. |
|||
</p> |
|||
|
|||
|
|||
<img src="assets/screenshots/lab test9.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">Go to Laboratory -> Configuration -> Test Contents. |
|||
</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Create Lab test contents. |
|||
</p> |
|||
|
|||
<img src="assets/screenshots/test content10.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">Go to Laboratory -> Configuration -> Testing Unit. |
|||
</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Create Lab test units. |
|||
</p> |
|||
|
|||
<img src="assets/screenshots/testing unit11.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> Referral Physician . |
|||
</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
We can add referral physician details. |
|||
</p> |
|||
|
|||
<img src="assets/screenshots/physician12.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
|
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
There are two type of User Access |
|||
</p> |
|||
|
|||
|
|||
<img src="assets/screenshots/lab user1.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
<img src="assets/screenshots/lab user2.png" class="img-responsive img-thumbnail border" |
|||
width="100%" height="auto" /> |
|||
</div> |
|||
|
|||
|
|||
|
|||
</div> |
|||
|
|||
<!-- <div class="row" id="video">--> |
|||
<!-- <div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important">--> |
|||
<!-- <h2--> |
|||
<!-- style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;">--> |
|||
<!-- <i class="fa fa-image mr-2"></i>Video--> |
|||
<!-- </h2>--> |
|||
<!-- </div>--> |
|||
<!-- <div class="col-12 d-flex justify-content-center">--> |
|||
<!-- <div class="s_panel_video" data-video-id="LOQDtQbcVS0">--> |
|||
<!-- <img class="img-fluid s_tooltip_tabs_tooltip_image s_figure_link pb0"--> |
|||
<!-- src="assets/screenshots/library-management-youtube.png" alt="Cybrosys Cover Video"--> |
|||
<!-- style="max-width:100%">--> |
|||
<!-- </div>--> |
|||
<!-- </div>--> |
|||
<!-- </div>--> |
|||
|
|||
<!-- SUGGESTED PRODUCTS --> |
|||
<div class="row"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center" |
|||
style="text-align: center; padding: 2.5rem 1rem !important;"> |
|||
<h2 style="color: #212529 !important;">Suggested Products</h2> |
|||
<hr |
|||
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> |
|||
|
|||
<div id="demo1" class="row carousel slide" data-ride="carousel"> |
|||
<!-- The slideshow --> |
|||
<div class="carousel-inner"> |
|||
<div class="carousel-item active" style="min-height:0px"> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/14.0/export_stockinfo_xls/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/export_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/14.0/dashboard_pos/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/pos_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/14.0/product_approval_management/" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/approval_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="carousel-item" style="min-height:0px"> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/14.0/base_account_budget/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/budget_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/14.0/shopify_odoo_connector/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/shopify_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/14.0/odoo11_magento2/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/magento_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- Left and right controls --> |
|||
<a class="carousel-control-prev" href="#demo1" data-slide="prev" |
|||
style="left:-25px;width: 35px;color: #000;"> <span class="carousel-control-prev-icon"><i |
|||
class="fa fa-chevron-left" style="font-size:24px"></i></span> </a> <a |
|||
class="carousel-control-next" href="#demo1" data-slide="next" |
|||
style="right:-25px;width: 35px;color: #000;"> |
|||
<span class="carousel-control-next-icon"><i class="fa fa-chevron-right" |
|||
style="font-size:24px"></i></span> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF SUGGESTED PRODUCTS --> |
|||
|
|||
<!-- OUR SERVICES --> |
|||
<section class="container" style="margin-top: 6rem !important;"> |
|||
<div class="row"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
|||
<h2 style="color: #212529 !important;">Our Services</h2> |
|||
<hr |
|||
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #1dd1a1 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/cogs.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Customization</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #ff6b6b !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/wrench.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Implementation</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #6462CD !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/lifebuoy.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Support</h6> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #ffa801 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/user.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Hire |
|||
Odoo |
|||
Developer</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #54a0ff !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/puzzle.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Integration</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #6d7680 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/update.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Migration</h6> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #786fa6 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/consultation.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Consultancy</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #f8a5c2 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/training.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Implementation</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #e6be26 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/license.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Licensing Consultancy</h6> |
|||
</div> |
|||
</div> |
|||
</section> |
|||
<!-- END OF END OF OUR SERVICES --> |
|||
|
|||
<!-- OUR INDUSTRIES --> |
|||
<section class="container" style="margin-top: 6rem !important;"> |
|||
<div class="row"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
|||
<h2 style="color: #212529 !important;">Our Industries</h2> |
|||
<hr |
|||
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/trading-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Trading |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Easily procure |
|||
and |
|||
sell your products</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/pos-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
POS |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Easy |
|||
configuration |
|||
and convivial experience</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/education-black.png" class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Education |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
A platform for |
|||
educational management</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/manufacturing-black.png" class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Manufacturing |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Plan, track and |
|||
schedule your operations</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/ecom-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
E-commerce & Website |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Mobile |
|||
friendly, |
|||
awe-inspiring product pages</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/service-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Service Management |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Keep track of |
|||
services and invoice</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/restaurant-black.png" class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Restaurant |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Run your bar or |
|||
restaurant methodically</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/hotel-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 |
|||
style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Hotel Management |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
An |
|||
all-inclusive |
|||
hotel management application</p> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
</section> |
|||
|
|||
<!-- END OF END OF OUR INDUSTRIES --> |
|||
|
|||
<!-- FOOTER --> |
|||
<!-- Footer Section --> |
|||
<section class="container" style="margin: 5rem auto 2rem;"> |
|||
<div class="row" style="max-width:1540px;"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
|||
<h2 style="color: #212529 !important;">Need Help?</h2> |
|||
<hr |
|||
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> |
|||
</div> |
|||
</div> |
|||
|
|||
<!-- Contact Cards --> |
|||
<div class="row d-flex justify-content-center align-items-center" |
|||
style="max-width:1540px; margin: 0 auto 2rem auto;"> |
|||
|
|||
<div class="col-lg-12" style="padding: 0rem 3rem 2rem; border-radius: 10px; margin-right: 3rem; "> |
|||
|
|||
<div class="row mt-4"> |
|||
<div class="col-lg-6"> |
|||
<a href="mailto:odoo@cybrosys.com" target="_blank" class="btn btn-block mb-2 deep_hover" |
|||
style="text-decoration: none; background-color: #4d4d4d; color: #FFF; border-radius: 4px;"><i |
|||
class="fa fa-envelope mr-2"></i>odoo@cybrosys.com</a> |
|||
</div> |
|||
<div class="col-lg-6"> |
|||
<a href="https://api.whatsapp.com/send?phone=918606827707" target="_blank" |
|||
class="btn btn-block mb-2 deep_hover" |
|||
style="text-decoration: none; background-color: #25D366; color: #FFF; border-radius: 4px;"><i |
|||
class="fa fa-whatsapp mr-2"></i>WhatsApp</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
<!-- End of Contact Cards --> |
|||
</section> |
|||
<!-- Footer --> |
|||
<section class="oe_container" style="padding: 2rem 3rem 1rem;"> |
|||
<div class="row" style="max-width:1540px; margin: 0 auto; margin-right: 3rem; "> |
|||
<!-- Logo --> |
|||
<div class="col-lg-12 d-flex justify-content-center align-items-center" style="margin-top: 3rem;"> |
|||
<img src="https://www.cybrosys.com/images/logo.png" width="200px" height="auto" /> |
|||
</div> |
|||
<!-- End of Logo --> |
|||
<div class="col-lg-12"> |
|||
<hr |
|||
style="margin-top: 3rem;background: linear-gradient(90deg, rgba(2,0,36,0) 0%, rgba(229,229,229,1) 33%, rgba(229,229,229,1) 58%, rgba(0,212,255,0) 100%); height: 2px; border-style: none;"> |
|||
<!-- End of Footer Section --> |
|||
</div> |
|||
</div> |
|||
</section> |
|||
<!-- END OF FOOTER --> |
|||
|
|||
</div> |
@ -0,0 +1,30 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<data> |
|||
<record id="lab_invoice_cust_invoice_view" model="ir.ui.view"> |
|||
<field name="name">account.invoice.cust.invoice_form</field> |
|||
<field name="model">account.move</field> |
|||
<field name="inherit_id" ref="account.view_move_form"/> |
|||
<field name="arch" type="xml"> |
|||
<xpath expr="//field[@name='invoice_date']" position="after"> |
|||
<field name="is_lab_invoice" invisible="1"/> |
|||
<field name="lab_request" /> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="lab_invoice_cust_invoice_filter_view" model="ir.ui.view"> |
|||
<field name="name">account.invoice.cust.invoice_filter_form</field> |
|||
<field name="model">account.move</field> |
|||
<field name="inherit_id" ref="account.view_account_invoice_filter"/> |
|||
<field name="arch" type="xml"> |
|||
<xpath expr="//field[@name='date']" position="after"> |
|||
<field name="lab_request"/> |
|||
</xpath> |
|||
<xpath expr="//group/filter[@name='status']" position="after"> |
|||
<filter string="Appointment" name="appointment" domain="[]" context="{'group_by':'lab_request'}"/> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,231 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<data> |
|||
<record model="ir.actions.act_window" id="lab_invoice_action"> |
|||
<field name="name">Invoices</field> |
|||
<field name="res_model">account.move</field> |
|||
<field name="view_mode">tree,form,kanban,graph,pivot</field> |
|||
<field name="view_id" ref="account.view_move_tree"/> |
|||
<field name="domain">[('is_lab_invoice','=',True)]</field> |
|||
<field name="search_view_id" ref="account.view_account_invoice_filter"/> |
|||
<field name="help" type="html"> |
|||
<p class="oe_view_nocontent_create"> |
|||
Create Invoices. |
|||
</p> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="lab_invoice_action_view_tree" model="ir.actions.act_window.view"> |
|||
<field name="sequence">1</field> |
|||
<field name="view_mode">tree</field> |
|||
<field name="act_window_id" ref="medical_lab_management.lab_invoice_action"/> |
|||
</record> |
|||
|
|||
<record id="lab_invoice_view_form" model="ir.actions.act_window.view"> |
|||
<field name="sequence">2</field> |
|||
<field name="view_mode">form</field> |
|||
<field name="view_id" ref="account.view_move_form"/> |
|||
<field name="act_window_id" ref="medical_lab_management.lab_invoice_action"/> |
|||
</record> |
|||
|
|||
<record model="ir.ui.view" id="kanban_view_lab_appointment"> |
|||
<field name="name">Appointment Kanban</field> |
|||
<field name="model">lab.appointment</field> |
|||
<field name="arch" type="xml"> |
|||
<kanban> |
|||
<templates> |
|||
<t t-name="kanban-box"> |
|||
<div class="oe_kanban_global_click"> |
|||
<div class="oe_kanban_details"> |
|||
<strong> |
|||
<ul> |
|||
<li>Name :<field name="patient_id"/></li> |
|||
<li>Lab Request ID :<field name="name"/></li> |
|||
<li>Appointment Date :<field name="appointment_date"/></li> |
|||
</ul> |
|||
</strong> |
|||
</div> |
|||
</div> |
|||
</t> |
|||
</templates> |
|||
</kanban> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_lab_appointment_tree" model="ir.ui.view"> |
|||
<field name="name">lab.appointment.tree</field> |
|||
<field name="model">lab.appointment</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<tree string="Appointments" > |
|||
<field name="patient_id" /> |
|||
<field name="name" /> |
|||
<field name="state" /> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_lab_appointment_form" model="ir.ui.view"> |
|||
<field name="name">lab.appointment.form</field> |
|||
<field name="model">lab.appointment</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<form string="Appointment"> |
|||
<header> |
|||
<button name="confirm_appointment" states="draft" string="Confirm" type="object" class="oe_highlight" /> |
|||
<button name="action_request" states="confirm" string="Request Lab" type="object" class="oe_highlight" /> |
|||
<button name="create_invoice" states="completed" string="Create Invoice" type="object" class="oe_highlight"/> |
|||
<button name="cancel_appointment" states="draft,confirm" string="Cancelled" type="object"/> |
|||
<field name="state" widget="statusbar" statusbar_visible="draft,confirm,request_lab,completed,to_invoice,invoiced" |
|||
/> |
|||
</header> |
|||
<sheet> |
|||
<div class="oe_button_box" name="button_box"> |
|||
<button name="%(act_open_lab_request_view)d" |
|||
type="action" |
|||
class="oe_stat_button" |
|||
icon="fa-building-o" |
|||
context = "{'search_default_app_id': [active_id]}" |
|||
attrs="{'invisible': [('request_count', '=', 0)]}"> |
|||
<field name="request_count" widget="statinfo" string="Lab Requests"/> |
|||
</button> |
|||
<button name="%(lab_invoice_action)d" |
|||
type="action" |
|||
class="oe_stat_button" |
|||
icon="fa-pencil-square-o" |
|||
context = "{'search_default_lab_request': [active_id]}" |
|||
attrs="{'invisible': [('inv_count', '=', 0)]}"> |
|||
<field name="inv_count" widget="statinfo" string="Lab Invoice"/> |
|||
</button> |
|||
</div> |
|||
<group> |
|||
<group col="4" colspan="4"> |
|||
<field name="patient_id" /> |
|||
<field name="priority" widget="priority"/> |
|||
<field name="name" /> |
|||
<field name="date" /> |
|||
<field name="appointment_date" /> |
|||
<field name="physician_id" domain="[('is_physician','=',True)]" context="{'search_default_is_physician':1, 'default_is_physician':1}"/> |
|||
</group> |
|||
</group> |
|||
<notebook colspan="4"> |
|||
<page string="Lab Requests"> |
|||
<field name="appointment_lines"> |
|||
<tree string="Lab Request" editable="bottom"> |
|||
<field name="lab_test"/> |
|||
<field name="cost"/> |
|||
</tree> |
|||
</field> |
|||
</page> |
|||
<page name="Note" |
|||
string="Note"> |
|||
<field name="comment"/> |
|||
</page> |
|||
</notebook> |
|||
</sheet> |
|||
<div class="oe_chatter"> |
|||
<field name="message_follower_ids" widget="mail_followers"/> |
|||
<field name="message_ids" widget="mail_thread"/> |
|||
</div> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_lab_appointment_search" model="ir.ui.view"> |
|||
<field name="name">lab.appointment.search</field> |
|||
<field name="model">lab.appointment</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<search string="Appointment"> |
|||
<field name="patient_id" /> |
|||
<field name="date" /> |
|||
<field name="name" /> |
|||
<field name="physician_id" /> |
|||
<newline /> |
|||
<group expand="0" string="Group By..."> |
|||
<filter name="patient_id" string="Patient" |
|||
domain="[]" context="{'group_by':'patient_id'}" /> |
|||
<filter name="date" string="Date" |
|||
domain="[]" context="{'group_by':'date'}" /> |
|||
<filter name="appointment_date" string="Appointment date" |
|||
domain="[]" context="{'group_by':'appointment_date'}" /> |
|||
<filter name="physician_id" string="Physician" |
|||
domain="[]" context="{'group_by':'physician_id'}" /> |
|||
</group> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
|
|||
<record model="ir.actions.act_window" id="act_open_lab_appointment_view"> |
|||
<field name="name">Appointments</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">lab.appointment</field> |
|||
<field name="view_mode">tree,form,kanban</field> |
|||
<field name="search_view_id" ref="view_lab_appointment_search" /> |
|||
<field name="domain">[]</field> |
|||
<field name="context">{}</field> |
|||
<field name="help" type="html"> |
|||
<p class="oe_view_nocontent_create"> |
|||
Create Appointments. |
|||
</p> |
|||
</field> |
|||
</record> |
|||
|
|||
|
|||
<record model="ir.actions.act_window" id="act_open_lab_appointment_view_2"> |
|||
<field name="name">Appointments</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">lab.appointment</field> |
|||
<field name="view_mode">tree,form</field> |
|||
<field name="search_view_id" ref="view_lab_appointment_search" /> |
|||
<field name="domain">[('appointment_date', '>=',((datetime.date.today()- datetime.timedelta(days=0)).strftime('%Y-%m-%d 00:00:00'))), |
|||
('appointment_date', '<=',((datetime.date.today()- datetime.timedelta(days=0)).strftime('%Y-%m-%d 23:59:59')))] |
|||
</field> |
|||
<field name="context">{}</field> |
|||
<field name="help" type="html"> |
|||
<p class="oe_view_nocontent_create"> |
|||
Create Appointments. |
|||
</p> |
|||
</field> |
|||
</record> |
|||
|
|||
<record model="ir.sequence" id="seq_lab_appointment"> |
|||
<field name="name">Appointment </field> |
|||
<field name="code">lab.appointment</field> |
|||
<field name="prefix">ID</field> |
|||
<field name="padding">3</field> |
|||
<field name="company_id" eval="False" /> |
|||
</record> |
|||
|
|||
|
|||
|
|||
<menuitem id="menu_lab_appointment" name="Appointments" sequence="11" |
|||
parent="menu_root_lab" groups="group_lab_management_user,group_lab_management_technician"/> |
|||
<menuitem id="menu_lab_appointment_child" name="Appointments" sequence="10" |
|||
parent="menu_lab_appointment" action="act_open_lab_appointment_view" |
|||
groups="group_lab_management_user,group_lab_management_technician"/> |
|||
<menuitem id="menu_lab_appointment_child_2" name=" Today's Appointments" sequence="11" |
|||
groups="group_lab_management_user,group_lab_management_technician" |
|||
parent="menu_lab_appointment" action="act_open_lab_appointment_view_2"/> |
|||
|
|||
<record id="view_lab_patient_form_inherit" model="ir.ui.view"> |
|||
<field name="name">lab.patient.form</field> |
|||
<field name="model">lab.patient</field> |
|||
<field name="inherit_id" ref="medical_lab_management.view_lab_patient_form" /> |
|||
<field name="arch" type="xml"> |
|||
<data> |
|||
<xpath expr="//div[@name='button_box']" position="inside"> |
|||
<button name="%(act_open_lab_appointment_view)d" |
|||
type="action" |
|||
class="oe_stat_button" |
|||
icon="fa-building-o" |
|||
context = "{'search_default_patient_id': [active_id], 'default_patient_id':[active_id]}" > |
|||
<field name="app_count" widget="statinfo" string="Appointments"/> |
|||
|
|||
</button> |
|||
</xpath> |
|||
</data> |
|||
</field> |
|||
</record> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,159 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<data> |
|||
<menuitem id="menu_root_lab" name="Laboratory" sequence="40" |
|||
groups="group_lab_management_user,group_lab_management_technician"/> |
|||
<record model="ir.ui.view" id="kanban_view_patient"> |
|||
<field name="name">Patient Kanban</field> |
|||
<field name="model">lab.patient</field> |
|||
<field name="arch" type="xml"> |
|||
<kanban> |
|||
<field name='id'/> |
|||
<templates> |
|||
<t t-name="kanban-box"> |
|||
<div class="oe_kanban_global_click"> |
|||
<div class="o_kanban_image"> |
|||
<img t-att-src="kanban_image('lab.patient', 'patient_image', record.id.value)"/> |
|||
</div> |
|||
<div class="oe_kanban_details"> |
|||
<strong> |
|||
<ul> |
|||
<li>Name :<field name="patient"/></li> |
|||
<li>Patient ID :<field name="name"/></li> |
|||
</ul> |
|||
</strong> |
|||
</div> |
|||
</div> |
|||
</t> |
|||
</templates> |
|||
</kanban> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_lab_patient_tree" model="ir.ui.view"> |
|||
<field name="name">lab.patient.tree</field> |
|||
<field name="model">lab.patient</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<tree string="Patient"> |
|||
<field name="title" /> |
|||
<field name="patient" /> |
|||
<field name="name" /> |
|||
<field name="phone"/> |
|||
<field name="email"/> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_lab_patient_form" model="ir.ui.view"> |
|||
<field name="name">lab.patient.form</field> |
|||
<field name="model">lab.patient</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<form string="Patient"> |
|||
<sheet> |
|||
<div class="oe_button_box" name="button_box"> |
|||
</div> |
|||
<field name="patient_image" widget="image" class="oe_avatar"/> |
|||
<div name="title_name" class="oe_title"> |
|||
<h3> |
|||
<field name="title" |
|||
style="width: 30%%" /> |
|||
</h3> |
|||
<h1> |
|||
<table> |
|||
<tr> |
|||
<td> |
|||
<field name="patient" |
|||
required="1" |
|||
placeholder="FullName" |
|||
style="padding-right:10px" |
|||
domain="[('is_patient','=',True)]" context="{'search_default_is_patient':1, 'default_is_patient':1, 'default_customer':1}" |
|||
/> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</h1> |
|||
</div> |
|||
<group> |
|||
<group> |
|||
<field name="name" /> |
|||
<field name="gender" /> |
|||
<field name="dob" /> |
|||
<field name="age"/> |
|||
<field name="phone"/> |
|||
</group> |
|||
<group> |
|||
<field name="visa_info"/> |
|||
<field name="id_proof_number"/> |
|||
<field name="date" invisible="1"/> |
|||
<field name="blood_group"/> |
|||
<field name="email"/> |
|||
</group> |
|||
</group> |
|||
<notebook> |
|||
<page string="Note"> |
|||
<group> |
|||
<field name="note"/> |
|||
</group> |
|||
</page> |
|||
</notebook> |
|||
</sheet> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_lab_patient_search" model="ir.ui.view"> |
|||
<field name="name">lab.patient.search</field> |
|||
<field name="model">lab.patient</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<search string="Patient"> |
|||
<field name="patient" /> |
|||
<field name="blood_group" /> |
|||
<field name="name" /> |
|||
<newline /> |
|||
<group expand="0" string="Group By..."> |
|||
<filter name="blood_group" string="Blood Group" |
|||
domain="[]" context="{'group_by':'blood_group'}" /> |
|||
<filter name="name" string="Patient ID" |
|||
domain="[]" context="{'group_by':'name'}" /> |
|||
<filter name="patient" string="Patient" |
|||
domain="[]" context="{'group_by':'patient'}" /> |
|||
</group> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
|
|||
<record model="ir.actions.act_window" id="act_open_lab_patient_view"> |
|||
<field name="name">Patients</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">lab.patient</field> |
|||
<field name="view_mode">kanban,tree,form</field> |
|||
<field name="search_view_id" ref="view_lab_patient_search" /> |
|||
<field name="domain">[]</field> |
|||
<field name="context">{}</field> |
|||
<field name="help" type="html"> |
|||
<p class="oe_view_nocontent_create"> |
|||
Create Patients. |
|||
</p> |
|||
</field> |
|||
</record> |
|||
|
|||
<record model="ir.sequence" id="seq_lab_patient"> |
|||
<field name="name">Patient</field> |
|||
<field name="code">lab.patient</field> |
|||
<field name="prefix">PID</field> |
|||
<field name="padding">3</field> |
|||
<field name="company_id" eval="False" /> |
|||
</record> |
|||
|
|||
<menuitem id="menu_lab_patient" name="Patient" sequence="10" |
|||
parent="menu_root_lab" groups="group_lab_management_user,group_lab_management_technician"/> |
|||
<menuitem id="menu_lab_patient_child" name="Patient" sequence="10" |
|||
parent="menu_lab_patient" action="act_open_lab_patient_view" |
|||
groups="group_lab_management_user,group_lab_management_technician"/> |
|||
|
|||
|
|||
</data> |
|||
</odoo> |
@ -0,0 +1,120 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<data> |
|||
<record id="view_lab_request_tree" model="ir.ui.view"> |
|||
<field name="name">lab.request.tree</field> |
|||
<field name="model">lab.request</field> |
|||
<field name="arch" type="xml"> |
|||
<tree string="Lab Request"> |
|||
<field name="name" /> |
|||
<field name="lab_requestor" /> |
|||
<field name="lab_request_id" /> |
|||
<field name="test_request" /> |
|||
<field name="state" /> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
<record id="view_lab_reques_form" model="ir.ui.view"> |
|||
<field name="name">lab.request.form</field> |
|||
<field name="model">lab.request</field> |
|||
<field name="arch" type="xml"> |
|||
<form string="Lab Request"> |
|||
<header> |
|||
<button name="set_to_sample_collection" states="draft" string="Sample Collection" type="object" class="oe_highlight"/> |
|||
<button name="set_to_test_in_progress" states="sample_collection" string="Test In Progress" type="object" class="oe_highlight"/> |
|||
<button name="set_to_test_completed" states="test_in_progress" string="Complete Test" type="object" class="oe_highlight"/> |
|||
<button name="print_lab_test" states="completed,invoiced" string="Print Lab Test" type="object" class="oe_highlight"/> |
|||
<button name="cancel_lab_test" states="draft" string="Cancel" type="object"/> |
|||
<field name="state" widget="statusbar" statusbar_visible="draft,sample_collection,test_in_progress,completed" statusbar_colors='{"Completed":"blue","Test In Progress":"red","Invoiced":"grey"}'/> |
|||
</header> |
|||
<sheet> |
|||
<div class="oe_left" style="width: 500px;"> |
|||
<div class="oe_title" style="width: 390px;"> |
|||
<label class="oe_edit_only" for="name"/> |
|||
<h1><field name="name" class="oe_inline"/></h1> |
|||
</div> |
|||
</div> |
|||
<group> |
|||
<group col="4" colspan="4"> |
|||
<field name="lab_requestor" attrs="{'readonly': [('state', '!=', 'draft')]}"/> |
|||
<field name="lab_request_id"/> |
|||
<field name="lab_requesting_date" /> |
|||
<field name="test_request"/> |
|||
<field name="app_id" invisible="1"/> |
|||
</group> |
|||
</group> |
|||
<notebook colspan="4"> |
|||
<page string="Test lines"> |
|||
<field name="request_line"> |
|||
<tree string="Test lines" editable="bottom"> |
|||
<field name="test_content" /> |
|||
<field name="unit"/> |
|||
<field name="interval"/> |
|||
<field name="result"/> |
|||
</tree> |
|||
</field> |
|||
</page> |
|||
<page name="Note" |
|||
string="Note"> |
|||
<field name="comment"/> |
|||
</page> |
|||
</notebook> |
|||
</sheet> |
|||
<div class="oe_chatter"> |
|||
<field name="message_follower_ids" widget="mail_followers" groups="base.group_user"/> |
|||
<field name="message_ids" widget="mail_thread"/> |
|||
</div> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
<record id="view_lab_requester_search" model="ir.ui.view"> |
|||
<field name="name">lab.request.search</field> |
|||
<field name="model">lab.request</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<search string="Lab Request"> |
|||
<field name="lab_requestor" /> |
|||
<field name="lab_request_id" /> |
|||
<field name="app_id" /> |
|||
<newline /> |
|||
<group expand="0" string="Group By..."> |
|||
<filter name="lab_requestor" string="Patient" |
|||
domain="[]" context="{'group_by':'lab_requestor'}" /> |
|||
<filter name="lab_request_id" string="Date" |
|||
domain="[]" context="{'group_by':'lab_request_id'}" /> |
|||
</group> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
|
|||
<record model="ir.actions.act_window" id="act_open_lab_request_view"> |
|||
<field name="name">Lab Request</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">lab.request</field> |
|||
<field name="view_mode">tree,form</field> |
|||
<field name="search_view_id" ref="view_lab_requester_search" /> |
|||
<field name="domain">[]</field> |
|||
<field name="context">{}</field> |
|||
<field name="help" type="html"> |
|||
<p class="oe_view_nocontent_create"> |
|||
Create Lab request. |
|||
</p> |
|||
</field> |
|||
</record> |
|||
|
|||
<record model="ir.sequence" id="seq_lab_request"> |
|||
<field name="name">Lab Request</field> |
|||
<field name="code">lab.request</field> |
|||
<field name="prefix">LR</field> |
|||
<field name="padding">3</field> |
|||
<field name="company_id" eval="False" /> |
|||
</record> |
|||
|
|||
<menuitem id="menu_lab_request" name="Lab Request" sequence="12" |
|||
parent="menu_root_lab" |
|||
groups="group_lab_management_user,group_lab_management_technician"/> |
|||
<menuitem id="menu_lab_request_child" name="Lab Request" sequence="10" |
|||
parent="menu_lab_request" action="act_open_lab_request_view" |
|||
groups="group_lab_management_user,group_lab_management_technician"/> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,72 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<data> |
|||
<record id="view_lab_content_tree" model="ir.ui.view"> |
|||
<field name="name">lab.test.content_type.tree</field> |
|||
<field name="model">lab.test.content_type</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<tree string="Contents"> |
|||
<field name="content_type_name" /> |
|||
<field name="content_type_code" /> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_lab_content_form" model="ir.ui.view"> |
|||
<field name="name">lab.test.content_type.form</field> |
|||
<field name="model">lab.test.content_type</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<form string="Contents"> |
|||
<sheet> |
|||
<group> |
|||
<group col="4" colspan="4"> |
|||
<field name="content_type_name" /> |
|||
<field name="content_type_code" /> |
|||
</group> |
|||
</group> |
|||
</sheet> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_lab_content_search" model="ir.ui.view"> |
|||
<field name="name">lab.test.content_type.search</field> |
|||
<field name="model">lab.test.content_type</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<search string="Test Content"> |
|||
<field name="content_type_name" /> |
|||
<field name="content_type_code" /> |
|||
<newline /> |
|||
<group expand="0" string="Group By..."> |
|||
<filter name="content_type_name" string="Content" |
|||
domain="[]" context="{'group_by':'content_type_name'}" /> |
|||
<filter name="content_type_code" string="Content Code" |
|||
domain="[]" context="{'group_by':'content_type_code'}" /> |
|||
</group> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
|
|||
<record model="ir.actions.act_window" id="act_open_lab_content_view"> |
|||
<field name="name">Test Contents</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">lab.test.content_type</field> |
|||
<field name="view_mode">tree,form</field> |
|||
<field name="domain">[]</field> |
|||
<field name="search_view_id" ref="view_lab_content_search" /> |
|||
<field name="context">{}</field> |
|||
<field name="help" type="html"> |
|||
<p class="oe_view_nocontent_create"> |
|||
Create Test Contents. |
|||
</p> |
|||
</field> |
|||
</record> |
|||
|
|||
<menuitem id="menu_lab_content" name="Test Content" sequence="10" |
|||
parent="configuration_id" action="act_open_lab_content_view" |
|||
groups="group_lab_management_user,group_lab_management_technician"/> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,102 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<data> |
|||
<record id="view_lab_test_tree" model="ir.ui.view"> |
|||
<field name="name">lab.test.tree</field> |
|||
<field name="model">lab.test</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<tree string="Lab Test"> |
|||
<field name="lab_test" /> |
|||
<field name="lab_test_code" /> |
|||
<field name="test_cost" /> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_lab_test_form" model="ir.ui.view"> |
|||
<field name="name">lab.test.form</field> |
|||
<field name="model">lab.test</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<form string="Lab Test"> |
|||
<sheet> |
|||
<group> |
|||
<group col="4" colspan="4"> |
|||
<field name="lab_test" /> |
|||
<field name="lab_test_code"/> |
|||
<field name="test_cost" /> |
|||
</group> |
|||
</group> |
|||
<notebook> |
|||
<page string="Lab Test Type" style="overflow-x:scroll;"> |
|||
<group> |
|||
<field name="test_lines" nolabel="1"> |
|||
<tree string="Lab Test Type" editable="bottom"> |
|||
<field name="test_content" /> |
|||
<field name="unit"/> |
|||
<field name="interval"/> |
|||
</tree> |
|||
</field> |
|||
</group> |
|||
</page> |
|||
</notebook> |
|||
</sheet> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_lab_test_search" model="ir.ui.view"> |
|||
<field name="name">lab.test.search</field> |
|||
<field name="model">lab.test</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<search string="Lab Test"> |
|||
<field name="lab_test" /> |
|||
<newline /> |
|||
<group expand="0" string="Group By..."> |
|||
<filter name="lab_test" string="Test" |
|||
domain="[]" context="{'group_by':'lab_test'}" /> |
|||
</group> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
|
|||
<record model="ir.actions.act_window" id="act_open_lab_test_view"> |
|||
<field name="name">Lab Test</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">lab.test</field> |
|||
<field name="view_mode">tree,form</field> |
|||
<field name="search_view_id" ref="view_lab_test_search" /> |
|||
<field name="domain">[]</field> |
|||
<field name="context">{}</field> |
|||
<field name="help" type="html"> |
|||
<p class="oe_view_nocontent_create"> |
|||
Create Lab Tests. |
|||
</p> |
|||
</field> |
|||
</record> |
|||
|
|||
<menuitem id="menu_lab_test" name="Lab Test" sequence="1" |
|||
parent="configuration_id" action="act_open_lab_test_view" |
|||
groups="group_lab_management_user,group_lab_management_technician"/> |
|||
|
|||
<record id="view_lab_test_attribute_form" model="ir.ui.view"> |
|||
<field name="name">lab.test.attribute.form</field> |
|||
<field name="model">lab.test.attribute</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<form string="Lab Test Type Attribute"> |
|||
<group> |
|||
<group col="4" colspan="4"> |
|||
<field name="test_content" /> |
|||
<field name="result"/> |
|||
<field name="unit" /> |
|||
<field name="interval"/> |
|||
</group> |
|||
</group> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,26 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<data> |
|||
<record model="ir.actions.act_window" id="action_physician"> |
|||
<field name="name">Physician</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">res.partner</field> |
|||
<field name="view_mode">tree,form</field> |
|||
<field name="domain">[('is_physician','=',1)]</field> |
|||
<field name="context">{'default_customer':0, 'default_supplier':0 , 'default_is_physician':1}</field> |
|||
<field name="filter" eval="True"/> |
|||
<field name="help" type="html"> |
|||
<p class="oe_view_nocontent_create"> |
|||
Click to add physician. |
|||
</p> |
|||
</field> |
|||
</record> |
|||
|
|||
<menuitem id="menu_physician" name="Referrals From" sequence="18" |
|||
parent="menu_root_lab" |
|||
groups="group_lab_management_user,group_lab_management_technician"/> |
|||
<menuitem id="menu_physician_child" name="Physician" sequence="1" |
|||
parent="menu_physician" action="action_physician" |
|||
groups="group_lab_management_user,group_lab_management_technician"/> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,18 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<data> |
|||
<record id="physician_speciality_view_form" model="ir.ui.view"> |
|||
<field name="name">physician.speciality.form</field> |
|||
<field name="model">physician.speciality</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<form string="Specialty"> |
|||
<group> |
|||
<field name="code" /> |
|||
<field name="name" /> |
|||
</group> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,22 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<data> |
|||
<record id="view_res_partner_inherit" model="ir.ui.view"> |
|||
<field name="name">res.partner.form</field> |
|||
<field name="model">res.partner</field> |
|||
<field name="inherit_id" ref="base.view_partner_form"/> |
|||
<field name="arch" type="xml"> |
|||
<notebook position="inside"> |
|||
<page string="Lab" groups="base.group_user"> |
|||
<group> |
|||
<field name="is_patient"/> |
|||
<field name="is_physician"/> |
|||
<field name="speciality" attrs="{'invisible': [('is_physician', '=', False)]}"/> |
|||
<field name="hospital" attrs="{'invisible': [('is_physician', '=', False)]}"/> |
|||
</group> |
|||
</page> |
|||
</notebook> |
|||
</field> |
|||
</record> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,71 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<data> |
|||
<record id="view_test_unit_tree" model="ir.ui.view"> |
|||
<field name="name">test.unit.tree</field> |
|||
<field name="model">test.unit</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<tree string="Test Unit"> |
|||
<field name="unit" /> |
|||
<field name="code" /> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
<record id="view_test_unit_form" model="ir.ui.view"> |
|||
<field name="name">test.unit.form</field> |
|||
<field name="model">test.unit</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<form string="Test Unit"> |
|||
<sheet> |
|||
<group> |
|||
<group> |
|||
<field name="unit" /> |
|||
</group> |
|||
<group> |
|||
<field name="code" /> |
|||
</group> |
|||
</group> |
|||
</sheet> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
<record id="view_test_unit_search" model="ir.ui.view"> |
|||
<field name="name">test.unit.search</field> |
|||
<field name="model">test.unit</field> |
|||
<field name="priority" eval="8" /> |
|||
<field name="arch" type="xml"> |
|||
<search string="Testing Unit"> |
|||
<field name="unit" /> |
|||
<group expand="0" string="Group By..."> |
|||
<filter name="unit" string="Blood Group"></filter> |
|||
</group> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
<record model="ir.actions.act_window" id="act_open_test_unit_view"> |
|||
<field name="name">Testing Units</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">test.unit</field> |
|||
<field name="view_mode">tree,form</field> |
|||
<field name="search_view_id" ref="view_test_unit_search" /> |
|||
<field name="domain">[]</field> |
|||
<field name="context">{}</field> |
|||
<field name="help" type="html"> |
|||
<p class="oe_view_nocontent_create"> |
|||
Create Testing Units. |
|||
</p> |
|||
</field> |
|||
</record> |
|||
<menuitem id="configuration_id" |
|||
name="Configuration" |
|||
parent="menu_root_lab" |
|||
sequence="100"/> |
|||
<menuitem name="Testing Unit" |
|||
id="test_unit_conf" |
|||
parent="configuration_id" |
|||
action="act_open_test_unit_view" |
|||
sequence="20" /> |
|||
</data> |
|||
</odoo> |