@ -0,0 +1,18 @@ |
|||||
|
Access Restriction By IP V14 |
||||
|
============================ |
||||
|
|
||||
|
This module will restrict users access to his account from the specified IP only. If user access his |
||||
|
account from non-specified IP, login will be restricted and a warning message will be displayed in |
||||
|
login page. |
||||
|
|
||||
|
If no IP is specified for a user, then there will not be restriction by IP. He can access from any IP. |
||||
|
|
||||
|
|
||||
|
Credits |
||||
|
======= |
||||
|
Cybrosys Techno Solutions |
||||
|
|
||||
|
Author |
||||
|
------ |
||||
|
* Niyas Raphy <odoo@cybrosys.com> |
||||
|
* V14 Muhammad P <odoo@cybrosys.com> |
@ -0,0 +1,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Niyas Raphy(<https://www.cybrosys.com>) |
||||
|
# you can modify it under the terms of the GNU LESSER |
||||
|
# 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 LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
||||
|
# GENERAL PUBLIC LICENSE (AGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
from . import controllers |
||||
|
from . import models |
||||
|
|
||||
|
|
@ -0,0 +1,37 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# Copyright (C) 2020-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# you can modify it under the terms of the GNU LESSER |
||||
|
# 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 LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
||||
|
# GENERAL PUBLIC LICENSE (AGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
{ |
||||
|
'name': 'Access Restriction By IP', |
||||
|
'summary': """User Can Access His Account Only From Specified IP Address""", |
||||
|
'version': '14.0.1.0.0', |
||||
|
'description': """User Can Access His Account Only From Specified IP Address""", |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'website': 'https://www.cybrosys.com', |
||||
|
'category': 'Tools', |
||||
|
'depends': ['base', 'mail'], |
||||
|
'license': 'AGPL-3', |
||||
|
'data': [ |
||||
|
'security/ir.model.access.csv', |
||||
|
'views/allowed_ips_view.xml', |
||||
|
], |
||||
|
'images': ['static/description/banner.png'], |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
} |
||||
|
|
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Niyas Raphy(<https://www.cybrosys.com>) |
||||
|
# you can modify it under the terms of the GNU LESSER |
||||
|
# 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 LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
||||
|
# GENERAL PUBLIC LICENSE (AGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
from . import main |
||||
|
|
@ -0,0 +1,89 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# Copyright (C) 2020-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Niyas Raphy(<https://www.cybrosys.com>) |
||||
|
# you can modify it under the terms of the GNU LESSER |
||||
|
# 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 LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
||||
|
# GENERAL PUBLIC LICENSE (AGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
from odoo.addons.web.controllers import main |
||||
|
from odoo.http import request |
||||
|
from odoo.exceptions import Warning |
||||
|
import odoo |
||||
|
import odoo.modules.registry |
||||
|
from odoo.tools.translate import _ |
||||
|
from odoo import http |
||||
|
|
||||
|
|
||||
|
class Home(main.Home): |
||||
|
|
||||
|
@http.route('/web/login', type='http', auth="public") |
||||
|
def web_login(self, redirect=None, **kw): |
||||
|
main.ensure_db() |
||||
|
request.params['login_success'] = False |
||||
|
if request.httprequest.method == 'GET' and redirect and request.session.uid: |
||||
|
return http.redirect_with_hash(redirect) |
||||
|
|
||||
|
if not request.uid: |
||||
|
request.uid = odoo.SUPERUSER_ID |
||||
|
|
||||
|
values = request.params.copy() |
||||
|
try: |
||||
|
values['databases'] = http.db_list() |
||||
|
except odoo.exceptions.AccessDenied: |
||||
|
values['databases'] = None |
||||
|
if request.httprequest.method == 'POST': |
||||
|
old_uid = request.uid |
||||
|
ip_address = request.httprequest.environ['REMOTE_ADDR'] |
||||
|
if request.params['login']: |
||||
|
user_rec = request.env['res.users'].sudo().search( |
||||
|
[('login', '=', request.params['login'])]) |
||||
|
if user_rec.allowed_ips: |
||||
|
ip_list = [] |
||||
|
for rec in user_rec.allowed_ips: |
||||
|
ip_list.append(rec.ip_address) |
||||
|
if ip_address in ip_list: |
||||
|
try: |
||||
|
uid = request.session.authenticate( |
||||
|
request.session.db, |
||||
|
request.params[ |
||||
|
'login'], |
||||
|
request.params[ |
||||
|
'password']) |
||||
|
request.params['login_success'] = True |
||||
|
return http.redirect_with_hash( |
||||
|
self._login_redirect(uid, redirect=redirect)) |
||||
|
except odoo.exceptions.AccessDenied as e: |
||||
|
request.uid = old_uid |
||||
|
if e.args == odoo.exceptions.AccessDenied().args: |
||||
|
values['error'] = _("Wrong login/password") |
||||
|
else: |
||||
|
request.uid = old_uid |
||||
|
values['error'] = _("Not allowed to login from this IP") |
||||
|
else: |
||||
|
try: |
||||
|
uid = request.session.authenticate(request.session.db, |
||||
|
request.params[ |
||||
|
'login'], |
||||
|
request.params[ |
||||
|
'password']) |
||||
|
request.params['login_success'] = True |
||||
|
return http.redirect_with_hash( |
||||
|
self._login_redirect(uid, redirect=redirect)) |
||||
|
except odoo.exceptions.AccessDenied as e: |
||||
|
request.uid = old_uid |
||||
|
if e.args == odoo.exceptions.AccessDenied().args: |
||||
|
values['error'] = _("Wrong login/password") |
||||
|
|
||||
|
return request.render('web.login', values) |
@ -0,0 +1,5 @@ |
|||||
|
## Module <access_restriction_by_ip> |
||||
|
|
||||
|
#### 08.10.2020 |
||||
|
#### Version 14.0.1.0.0 |
||||
|
#### ADD Initial Commit for access_restriction_by_ip |
@ -0,0 +1,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Niyas Raphy(<https://www.cybrosys.com>) |
||||
|
# you can modify it under the terms of the GNU LESSER |
||||
|
# 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 LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
||||
|
# GENERAL PUBLIC LICENSE (AGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
from . import allowed_ips |
||||
|
|
||||
|
|
@ -0,0 +1,33 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Niyas Raphy(<https://www.cybrosys.com>) |
||||
|
# you can modify it under the terms of the GNU LESSER |
||||
|
# 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 LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
||||
|
# GENERAL PUBLIC LICENSE (AGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
from odoo import models, fields |
||||
|
|
||||
|
|
||||
|
class ResUsersInherit(models.Model): |
||||
|
_inherit = 'res.users' |
||||
|
|
||||
|
allowed_ips = fields.One2many('allowed.ips', 'users_ip', string='IP') |
||||
|
|
||||
|
|
||||
|
class AllowedIPs(models.Model): |
||||
|
_name = 'allowed.ips' |
||||
|
|
||||
|
users_ip = fields.Many2one('res.users', string='IP') |
||||
|
ip_address = fields.Char(string='Allowed IP') |
|
After Width: | Height: | Size: 76 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 67 KiB |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 70 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 88 KiB |
@ -0,0 +1,310 @@ |
|||||
|
<div class="row" style="margin: 0;position: relative;color: #000;background-position: center;background: #ffffff;border-bottom: 1px solid #e4e4e4;text-align: center; margin: auto; display: flex;justify-content: center;"> <a href="https://www.cybrosys.com/" target="_blank"><img src="images/cybrosys.png" style=" width: 293px; padding: 1rem 0rem; margin: auto" alt="cybrosys-logo"></a> </div> |
||||
|
<div class="row" style="margin:75px 0;position: relative;color: #000;background-position: center;background: #ffffff;border-bottom: 1px solid #e4e4e4; padding-bottom: 30px;"> |
||||
|
<div class="col-md-7 col-sm-12 col-xs-12" style="padding: 0px"> |
||||
|
<div style=" margin: 0 0 0px;padding: 20px 0 10;font-size: 23px;line-height: 35px;font-weight: 400;color: #000;border-top: 1px solid rgba(255,255,255,0.1);border-bottom: 1px solid rgba(255,255,255,0.11);text-align: left;"> |
||||
|
<h1 style="font-size: 39px;font-weight: 600;margin: 0px !important;"> Access Restriction By IP </h1> |
||||
|
<h3 style="font-size: 21px;margin-top: 8px;position: relative;">User can access his account only from specified IP's </h3> |
||||
|
</div> |
||||
|
<h2 style="font-weight: 600;font-size: 1.8rem;margin-top: 15px;">Key Highlights</h2> |
||||
|
<ul style=" padding: 0 1px; list-style: none; "> |
||||
|
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 18px;"><i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Administrator can set a IP or a group of IP address for each users </li> |
||||
|
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 18px;"><i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Users can access their account only from the specified IP's </li> |
||||
|
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 18px;"><i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Accessing system from a non-specified IP will restrict the user login </li> |
||||
|
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 18px;"><i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> A warning message will be displayed </li> |
||||
|
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 18px;"><i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> If no IP is set to user means there is not any restriction by IP </li> |
||||
|
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 18px;"><i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> IP Address for each users can be set from users form view </li> |
||||
|
|
||||
|
</ul> |
||||
|
</div> |
||||
|
<div class="col-md-5 col-sm-12 col-xs-12"> <img src="images/Ip.png" class="img-responsive" alt=""> </div> |
||||
|
</div> |
||||
|
|
||||
|
<div> |
||||
|
<section class="oe_container" style="padding: 1rem 0rem 1rem; background-color: #ffffff !important;"> |
||||
|
<div class="row py-4 px-3"> |
||||
|
<div class="w-100" style="padding-top:30px;padding-bottom:45px;border-radius: 10px;"> |
||||
|
<ul role="tablist" class="nav nav-pills justify-content-center" data-tabs="tabs" id="pills-tab" style="border: none;background: unset;"> |
||||
|
<li class="nav-item mr-1 mb-3" style="font-size: 1.05rem;font-weight: 400;transition: all .15s ease;color: #d31c22;background-color: #d31c22;box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);border: 0;font-family: 'Open Sans',sans-serif;width: 140px;border-radius: 0.30rem;"> <a id="pills-home-tab" data-toggle="pill" href="#pills-home" role="tab" aria-controls="pills-home" aria-selected="true" class="nav-link active show" style="color: #000000;line-height: 33px;border: 0;border-radius: .25rem;font-weight: 400;text-align: center; |
||||
|
color: #fff;">Overview </a> </li> |
||||
|
<li class="nav-item mr-1 mb-3" style="font-size: 1.05rem;font-weight: 400;transition: all .15s ease;color: #d31c22;background-color: #d31c22;box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);border: 0;font-family: 'Open Sans',sans-serif;width: 140px;border-radius: 0.30rem;"> <a id="pills-home-tab" data-toggle="pill" href="#pills-home1" role="tab" aria-controls="pills-home" aria-selected="true" class="nav-link " style="color: #000000;line-height: 33px;border: 0;border-radius: .25rem;font-weight: 400; text-align: center; |
||||
|
color: #fff;" >Features </a> </li> |
||||
|
<li class="nav-item mr-1 mb-3" style="font-size: 1.05rem;font-weight: 400;transition: all .15s ease;color: #ffffff;background-color: #d31c22;box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);border: 0;font-family: 'Open Sans',sans-serif;width: 140px;border-radius: 0.30rem;"> <a class="nav-link" id="pills-profile-tab" data-toggle="pill" href="#pills-profile" role="tab" aria-controls="pills-profile" aria-selected="false" style="color: #000000;line-height: 33px;border: 0;border-radius: .25rem;font-weight: 400; text-align: center; |
||||
|
color: #fff;">Screenshots </a> </li> |
||||
|
|
||||
|
</ul> |
||||
|
<div class="tab-content" id="pills-tabContent" |
||||
|
style="padding-top: 30px; padding-bottom: 30px; padding: 30px;"> |
||||
|
<div class="px-3 pt-1 tab-pane fade active show" id="pills-home" role="tabpanel" aria-labelledby=" |
||||
|
pills-home-tab"> |
||||
|
<!-- Overview--> |
||||
|
<h2 style="font-weight: 600;text-align: center;width: 100%;">Overview</h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<h3 class="oe_slogan" style="text-align: center;font-size: 19px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;opacity: 1 !important;line-height: 31px;font-weight: 400;letter-spacing: .5px;margin-bottom: 21px;"> |
||||
|
This module will restrict the users access to his account from specified IP address only </h3> |
||||
|
</div> |
||||
|
<div class="px-3 pt-1 tab-pane fade " id="pills-home1" role="tabpanel" aria-labelledby=" |
||||
|
pills-home-tab"> |
||||
|
<!-- feature tab--> |
||||
|
<h2 style="font-weight: 600;text-align: center;width: 100%;"> Access Restriction By IP </h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<ul> |
||||
|
<li class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> |
||||
|
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Administrator can set a IP or a group of IP address for each users |
||||
|
</li> |
||||
|
|
||||
|
<li class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> |
||||
|
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Users can access their account only from the specified IP's |
||||
|
</li> |
||||
|
|
||||
|
<li class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> |
||||
|
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Accessing system from a non-specified IP will restrict the user login |
||||
|
</li> |
||||
|
|
||||
|
<li class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> |
||||
|
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> A warning message will be displayed |
||||
|
</li> |
||||
|
|
||||
|
<li class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> |
||||
|
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> If no IP is set to user means there is not any restriction by IP |
||||
|
</li> |
||||
|
|
||||
|
<li class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> |
||||
|
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> IP Address for each users can be set from users form view |
||||
|
</li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
<!-- Screenshot tab--> |
||||
|
<div class="px-3 tab-pane fade" id="pills-profile" role="tabpanel" aria-labelledby="pills-profile-tab" > |
||||
|
<div class="tab-pane"> |
||||
|
<h2 style="font-weight: 600;text-align: center;width: 100%;">Screenshots</h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<div> |
||||
|
<section class="oe_container"> |
||||
|
<div id="demo" class="row carousel slide mb32" data-ride="carousel"> |
||||
|
<div class="carousel-inner"> |
||||
|
<div class="carousel-item active" style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i>Setting IP address for User </h3> |
||||
|
<p> Setting IP address for user from users form view</p> |
||||
|
<p> User will be able to access his account only from this IP's </p> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/Ip adding.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="carousel-item" style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i>User accessing his account </h3> |
||||
|
<p> On accessing account from a non specified IP </p> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/log in.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<a class="carousel-control-prev" href="#demo" 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="#demo" 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> |
||||
|
</section> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<!-- faq tab--> |
||||
|
<div class="px-2 px-lg-4 pt-3 tab-pane fade" id="pills-contact" role="tabpanel" aria-labelledby="pills-contact-tab"> |
||||
|
<ul class="list-unstyled"> |
||||
|
</ul> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
<section class="oe_container" style="padding: 2rem 3rem 1rem;"> |
||||
|
<h2 style="font-weight: 600;text-align: center;margin-bottom: 25px;width: 100%;"> Suggested Products </h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<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/12.0/project_report_pdf/" target="_blank"> |
||||
|
<div style="box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);border-radius: 10px;"> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/banner_project_report_xls_pdf.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/10.0/project_status_level_report/" target="_blank"> |
||||
|
<div style="box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);border-radius: 10px;"> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/banner_project_status_report.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/10.0/project_lifeline/" target="_blank"> |
||||
|
<div style="box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);border-radius: 10px;"> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/banner_lifeline_for_task.jpeg"> </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/10.0/project_subtask/" target="_blank"> |
||||
|
<div style="box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);border-radius: 10px;"> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/banner_subtask.jpeg"> </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/12.0/task_deadline_reminder/" target="_blank"> |
||||
|
<div style="box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);border-radius: 10px;"> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/banner_task_deadline_reminder.jpeg"> </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/10.0/project_time_spend/" target="_blank"> |
||||
|
<div style="box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);border-radius: 10px;"> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/banner_task_statusbar.jpeg"> </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> |
||||
|
</section> |
||||
|
<section class="row" style="padding: 2rem 3rem 1rem;margin:0px"> |
||||
|
<h2 style="font-weight: 600;margin-bottom: 20px;text-align: center;width: 100%;"> Our Service </h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<div class="row" style=" display: flex; justify-content: center; flex-wrap: wrap;width: 100%; "> |
||||
|
<!-- <div style="display:flex;padding-top: 20px;justify-content: space-between;"> --> |
||||
|
<div class="col-md-2 col-sm-6 col-xs-12"> |
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> <a href="https://www.cybrosys.com/odoo-customization-and-installation/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-customization.png" style="width: 100%;border-radius: 100%;"/> </a> </div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> <a href="https://www.cybrosys.com/odoo-customization-and-installation/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Odoo Customization </a> </h3> |
||||
|
</div> |
||||
|
<div class="col-md-2 col-sm-6 col-xs-12"> |
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> <a href="https://www.cybrosys.com/odoo-erp-implementation/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-erp-implementation.png" style="width: 100%;border-radius: 100%;"/> </a> </div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> <a href="https://www.cybrosys.com/odoo-erp-implementation/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Odoo Implementation </a> </h3> |
||||
|
</div> |
||||
|
<div class="col-md-2 col-sm-6 col-xs-12"> |
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> <a href="https://www.cybrosys.com/odoo-erp-integration/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-erp-integration.png" style="width: 100%;border-radius: 100%;"/> </a> </div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> <a href="https://www.cybrosys.com/odoo-erp-integration/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Odoo Integration </a> </h3> |
||||
|
</div> |
||||
|
<div class="col-md-2 col-sm-6 col-xs-12"> |
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> <a href="https://www.cybrosys.com/odoo-erp-support/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-erp-support.png" style="width: 100%;border-radius: 100%;"/> </a> </div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> <a href="https://www.cybrosys.com/odoo-erp-support/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Odoo Support</a> </h3> |
||||
|
</div> |
||||
|
<div class="col-md-2 col-sm-6 col-xs-12"> |
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> <a href="https://www.cybrosys.com/hire-odoo-developer/" target="_blank"> <img src="https://www.cybrosys.com/images/hire-odoo-developer.png" style="width: 100%;border-radius: 100%;"/> </a> </div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> <a href="https://www.cybrosys.com/hire-odoo-developer/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Hire Odoo Developers</a> </h3> |
||||
|
</a> |
||||
|
</div> |
||||
|
<!-- </div> --> |
||||
|
</div> |
||||
|
</section> |
||||
|
<section class="row" style="padding: 2rem 3rem 1rem;margin:0px"> |
||||
|
<div class="row" style="margin: 0"> |
||||
|
<h2 style="font-weight: 600;margin-bottom: 20px;text-align: center;width: 100%;"> Our Industries</h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<!-- <div style="display:flex;justify-content: space-between;flex-wrap:wrap;"> --> |
||||
|
<div class="row" style="width: 100%"> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/best-trading-erp/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-1.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/best-trading-erp/" target="_blank" style="list-style: none; color:#000; text-decoration: none;font-family: 'Montserrat',sans-serif;"> Trading </a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px; font-family: 'Montserrat',sans-serif;"> Easily procure and sell your products. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/manufacturing-erp-software/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-2.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;" style=" margin-bottom: 10px; "> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/manufacturing-erp-software/" target="_blank" style="list-style: none; color:#000; text-decoration: none;font-family: 'Montserrat',sans-serif;"> Manufacturing</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;font-family: 'Montserrat',sans-serif;"> Plan, track and schedule your operations. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/restaurant-management/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-3.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/restaurant-management/" target="_blank" style="list-style: none; color:#000; text-decoration: none;font-family: 'Montserrat',sans-serif;"> Restaurant</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;font-family: 'Montserrat',sans-serif;"> Run your bar or restaurant methodical. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/pos/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-4.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/pos/" target="_blank" style="list-style: none; color:#000; text-decoration: none;font-family: 'Montserrat',sans-serif;"> POS</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;font-family: 'Montserrat',sans-serif;"> Easy configuring and convivial selling. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/ecommerce-website/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-5.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 0px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/ecommerce-website/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> E-commerce & Website</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px; font-family: 'Montserrat',sans-serif;"> Mobile friendly, awe-inspiring product pages. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/hotel-management-erp/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-6.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/hotel-management-erp/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Hotel Management</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px; font-family: 'Montserrat',sans-serif;"> An all-inclusive hotel management application. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/education-erp-software/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-7.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/education-erp-software/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Education</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px; font-family: 'Montserrat',sans-serif;"> A Collaborative platform for educational management. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/service-management/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-8.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/service-management/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Service Management</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px; font-family: 'Montserrat',sans-serif;"> Keep track of services and invoice accordingly. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
<section class="oe_container" style="padding: 0% 0% 6% 0%;"> |
||||
|
<center> |
||||
|
<div class="col-md-12" style="margin: auto !important; |
||||
|
width: 70%; |
||||
|
padding: 30px;"> |
||||
|
<h2 style="font-weight: 600;text-align: center;width: 100%;"> Need Any Help? </h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<h4 style="font-size:16px;"> If you have anything to share with us based on your use of this module, please let us know. We are ready to offer our support. </h4> |
||||
|
<div class="col-md-6" style="float:left; padding:20px;"> |
||||
|
<h4><i class="fa fa-envelope"></i> Email us </h4> |
||||
|
<p>odoo@cybrosys.com / info@cybrosys.com</p> |
||||
|
</div> |
||||
|
<div class="col-md-6" style="float:left; padding:20px;"> |
||||
|
<h4><i class="fa fa-phone"></i> Contact Us </h4> |
||||
|
<a href="https://www.cybrosys.com/contact/" target="_blank"> www.cybrosys.com </a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</center> |
||||
|
</section> |
||||
|
<section class="oe_container" style="padding: 0% 0% 6% 0%;"> |
||||
|
<div class="oe_slogan" style="margin-bottom: 0px;"> |
||||
|
<div style=" display: flex; justify-content: center; flex-wrap: wrap; "> |
||||
|
</div> |
||||
|
<br> |
||||
|
<img src="https://www.cybrosys.com/images/logo.png" style="width: 190px; margin-bottom: 25px;margin-top: 30px;" class="center-block"> |
||||
|
<div style=" display: flex; justify-content: center; flex-wrap: wrap; "> <a href="https://twitter.com/cybrosys" target="_blank"><i class="fa fa-2x fa-twitter" style="color:white;background: #00a0d1;width:35px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a> |
||||
|
</td> |
||||
|
<a href="https://www.linkedin.com/company/cybrosys-technologies-pvt-ltd" target="_blank"><i class="fa fa-2x fa-linkedin" style="color:white;background: #31a3d6;width:35px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a> |
||||
|
</td> |
||||
|
<a href="https://www.facebook.com/cybrosystechnologies" target="_blank"><i class="fa fa-2x fa-facebook" style="color:white;background: #3b5998;width:35px; height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a> |
||||
|
</td> |
||||
|
<a href="https://in.pinterest.com/cybrosys" target="_blank"><i class="fa fa-2x fa-pinterest" style="color:white;background: #ac0f18;width:35px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a> |
||||
|
</td> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
</div> |
@ -0,0 +1,21 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8" ?> |
||||
|
<odoo> |
||||
|
<data> |
||||
|
<record model="ir.ui.view" id="res_users_allowed_ips"> |
||||
|
<field name="name">res.users</field> |
||||
|
<field name="model">res.users</field> |
||||
|
<field name="inherit_id" ref="base.view_users_form"/> |
||||
|
<field name="arch" type="xml"> |
||||
|
<xpath expr="//page[1]" position='after'> |
||||
|
<page string="Allowed IP"> |
||||
|
<field name="allowed_ips"> |
||||
|
<tree editable="bottom" delete="1"> |
||||
|
<field name="ip_address"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</page> |
||||
|
</xpath> |
||||
|
</field> |
||||
|
</record> |
||||
|
</data> |
||||
|
</odoo> |
@ -0,0 +1,53 @@ |
|||||
|
.. image:: https://img.shields.io/badge/licence-AGPL--1-blue.svg |
||||
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html |
||||
|
:alt: License: AGPL-3 |
||||
|
|
||||
|
User Log Details |
||||
|
================ |
||||
|
|
||||
|
This module developed to record login details of user. |
||||
|
|
||||
|
Installation |
||||
|
============ |
||||
|
|
||||
|
Just select it from available modules to install it, there is no need to extra installations. |
||||
|
|
||||
|
Configuration |
||||
|
============= |
||||
|
|
||||
|
Nothing to configure. |
||||
|
|
||||
|
Company |
||||
|
------- |
||||
|
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
||||
|
|
||||
|
Credits |
||||
|
------- |
||||
|
* Developer: |
||||
|
Saritha @ cybrosys |
||||
|
Muhammad P @ 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: Your Name (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,41 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2020-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': "User Log Details", |
||||
|
'version': '14.0.1.0.0', |
||||
|
'summary': """Login User Details & IP Address""", |
||||
|
'description': """This module records login information of user""", |
||||
|
'author': "Cybrosys Techno Solutions ", |
||||
|
'company': "Cybrosys Techno Solutions ", |
||||
|
'maintainer': 'Cybrosys Techno Solutions', |
||||
|
'website': "https://www.cybrosys.com", |
||||
|
'category': 'Tools', |
||||
|
'depends': ['base'], |
||||
|
'license': 'AGPL-3', |
||||
|
'data': [ |
||||
|
'security/ir.model.access.csv', |
||||
|
'views/login_user_views.xml'], |
||||
|
'demo': [], |
||||
|
'images': ['static/description/banner.png'], |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
} |
@ -0,0 +1,6 @@ |
|||||
|
## Module <login_user_detail> |
||||
|
|
||||
|
#### 08.10.2020 |
||||
|
#### Version 14.0.1.0.0 |
||||
|
#### ADD |
||||
|
- Initial Commit for login_user_details |
@ -0,0 +1,23 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Your Name (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 login_user_details |
@ -0,0 +1,52 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Your Name (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 logging |
||||
|
from itertools import chain |
||||
|
from odoo.http import request |
||||
|
from odoo import models, fields, api |
||||
|
|
||||
|
_logger = logging.getLogger(__name__) |
||||
|
USER_PRIVATE_FIELDS = ['password'] |
||||
|
concat = chain.from_iterable |
||||
|
|
||||
|
|
||||
|
class LoginUserDetail(models.Model): |
||||
|
_inherit = 'res.users' |
||||
|
|
||||
|
@api.model |
||||
|
def _check_credentials(self, password, user_agent_env): |
||||
|
result = super(LoginUserDetail, self)._check_credentials(password, user_agent_env) |
||||
|
ip_address = request.httprequest.environ['REMOTE_ADDR'] |
||||
|
vals = {'name': self.name, |
||||
|
'ip_address': ip_address |
||||
|
} |
||||
|
self.env['login.detail'].sudo().create(vals) |
||||
|
return result |
||||
|
|
||||
|
|
||||
|
class LoginUpdate(models.Model): |
||||
|
_name = 'login.detail' |
||||
|
|
||||
|
name = fields.Char(string="User Name") |
||||
|
date_time = fields.Datetime(string="Login Date And Time", default=lambda self: fields.datetime.now()) |
||||
|
ip_address = fields.Char(string="IP Address") |
|
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 117 KiB |
After Width: | Height: | Size: 17 KiB |
@ -0,0 +1,310 @@ |
|||||
|
<section class="oe_container" style="background-image:url(https://www.cybrosys.com/images/odoo-index-header-banner.png);background-repeat:no-repeat;background-size:100%;padding: 4% 0% 2% 15%;background-position-y: -107px;"> |
||||
|
<div class="oe_row oe_spaced"> |
||||
|
<h2 class="oe_slogan" style="font-size: 35px;color: #fff;font-weight: 900;text-transform: uppercase;text-align: left;margin: 0;margin-bottom: 16px;"> |
||||
|
User Log Details |
||||
|
</h2> |
||||
|
<h3 class="oe_slogan" style="font-size: 25px;color: #fff;font-weight: 600;text-align: left;opacity: 1;margin: 0 !important;"> |
||||
|
Records User Log Details |
||||
|
</h3> |
||||
|
<h5 class="oe_slogan" style="text-align: left;background: #fff;width: 293px;padding: 10px;color: #080808 !important;opacity: 1 !important;font-weight: 600;font-size: 20px;"> |
||||
|
<a style="color: #080808 !important;" href="https://www.cybrosys.com" target="_blank">Cybrosys Technologies</a> |
||||
|
</h5> |
||||
|
<a style="color: #080808 !important;" href="https://www.cybrosys.com" target="_blank"> |
||||
|
<div style="width: 215px;margin-left: 57%;text-align: center;background: #ffffff;height: 215px;border-radius: 100%;display: flex;justify-content: center;align-items: center;box-shadow: 0 0 12px 4px #00000059;"> |
||||
|
<img src="https://www.cybrosys.com/images/cybro-logo-oca.png" alt="cybrosys technologies" style="width: 180px;"/> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</section> |
||||
|
|
||||
|
<section class="oe_container" style="padding: 3% 0% 3% 15%;"> |
||||
|
<div class="oe_row oe_spaced"> |
||||
|
<h2 class="oe_slogan" style="text-align: left;font-size: 28px;font-weight: 600;margin: 0px !important;"> |
||||
|
Overview |
||||
|
</h2> |
||||
|
<h3 class="oe_slogan" style="text-align: left;font-size: 16px;width: 90%;margin: 0;margin-top: 14px;color: #000 !important;opacity: 1 !important;line-height: 24px;"> |
||||
|
User Log Details, Record login date,IP Address of login user. |
||||
|
</h3> |
||||
|
</div> |
||||
|
</section> |
||||
|
<section class="oe_container" style="padding: 3% 0% 0% 15%;"> |
||||
|
<div class="oe_row oe_spaced"> |
||||
|
<h2 class="oe_slogan" style="text-align: left;font-size: 28px;font-weight: 600;margin: 0px !important;"> |
||||
|
Screenshots |
||||
|
</h2> |
||||
|
<h3 class="oe_slogan" style="text-align: left;padding: 5% 0% 0% 0%;font-size: 16px;width: 90%;margin: 0;margin-top: 14px;color: #000 !important;opacity: 1 !important;line-height: 24px;"> |
||||
|
<img src="https://www.cybrosys.com/images/ico-tick.png"> |
||||
|
Login Details |
||||
|
</h3> |
||||
|
<div class="oe_row oe_spaced"> |
||||
|
<img src="cybrosys-login-user-details.png" alt="" style="width: 95%;"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
|
||||
|
<section class="oe_container" style="padding: 7px 0% 0% 3%;"> |
||||
|
<div class="oe_row oe_spaced"> |
||||
|
<a style="color: #080808 !important;" href="https://apps.odoo.com/apps/modules/browse?search=cybrosys" target="_blank"><img src="https://www.cybrosys.com/images/view-more-apps.jpg" alt="cybrosys technologies" style="width: 100%;margin-bottom: 50px;"/></a> |
||||
|
</div> |
||||
|
</section> |
||||
|
<section class="oe_container" style="padding: 1% 0% 0% 3%;"> |
||||
|
<div class="oe_row oe_spaced"> |
||||
|
<h2 class="oe_slogan" style="text-align: left;font-size: 28px;font-weight: 600;margin: 0px !important;"> |
||||
|
Our Services |
||||
|
</h2> |
||||
|
<div style="display:flex;padding-top: 20px;justify-content: space-between;"> |
||||
|
<div style="flex-basis: 18%;"> |
||||
|
|
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> |
||||
|
<a href="https://www.cybrosys.com/odoo-customization-and-installation/" target="_blank"> |
||||
|
<img src="https://www.cybrosys.com/images/odoo-customization.png" style="width: 100%;border-radius: 100%;"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> |
||||
|
<a href="https://www.cybrosys.com/odoo-customization-and-installation/" target="_blank"> |
||||
|
Odoo Customization |
||||
|
</a> |
||||
|
</h3> |
||||
|
|
||||
|
</div> |
||||
|
<div style="flex-basis: 18%;"> |
||||
|
|
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> |
||||
|
<a href="https://www.cybrosys.com/odoo-erp-implementation/" target="_blank"> |
||||
|
<img src="https://www.cybrosys.com/images/odoo-erp-implementation.png" style="width: 100%;border-radius: 100%;"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> |
||||
|
<a href="https://www.cybrosys.com/odoo-erp-implementation/" target="_blank"> |
||||
|
Odoo Implementation </a> |
||||
|
</h3> |
||||
|
|
||||
|
</div> |
||||
|
<div style="flex-basis: 18%;"> |
||||
|
|
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> |
||||
|
<a href="https://www.cybrosys.com/odoo-erp-integration/" target="_blank"> |
||||
|
<img src="https://www.cybrosys.com/images/odoo-erp-integration.png" style="width: 100%;border-radius: 100%;"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> |
||||
|
<a href="https://www.cybrosys.com/odoo-erp-integration/" target="_blank"> |
||||
|
Odoo Integration |
||||
|
</a> |
||||
|
</h3> |
||||
|
|
||||
|
</div> |
||||
|
<div style="flex-basis: 18%;"> |
||||
|
|
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> |
||||
|
<a href="https://www.cybrosys.com/odoo-erp-support/" target="_blank"> |
||||
|
<img src="https://www.cybrosys.com/images/odoo-erp-support.png" style="width: 100%;border-radius: 100%;"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> |
||||
|
<a href="https://www.cybrosys.com/odoo-erp-support/" target="_blank"> |
||||
|
Odoo Support</a> |
||||
|
</h3> |
||||
|
|
||||
|
</div> |
||||
|
<div style="flex-basis: 18%;"> |
||||
|
|
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> |
||||
|
<a href="https://www.cybrosys.com/hire-odoo-developer/" target="_blank"> |
||||
|
<img src="https://www.cybrosys.com/images/hire-odoo-developer.png" style="width: 100%;border-radius: 100%;"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> |
||||
|
<a href="https://www.cybrosys.com/hire-odoo-developer/" target="_blank"> |
||||
|
Hire Odoo Developers</a> |
||||
|
</h3> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
<section class="oe_container" style="padding: 1% 0% 0% 3%;"> |
||||
|
<div class="oe_row oe_spaced"> |
||||
|
<h2 class="oe_slogan" style="text-align: left;font-size: 28px;font-weight: 600;margin: 0px !important;"> |
||||
|
Our Industries |
||||
|
</h2> |
||||
|
<div style="display:flex;justify-content: space-between;flex-wrap:wrap;"> |
||||
|
<div style="flex-basis: 32%;padding-top: 20px;"> |
||||
|
|
||||
|
<div style="width:30%; float:left;"> |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/best-trading-erp/" target="_blank"> |
||||
|
<img src="https://www.cybrosys.com/images/odoo-index-industry-1.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/best-trading-erp/" target="_blank"> |
||||
|
Trading |
||||
|
</a> |
||||
|
</h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> |
||||
|
Easily procure and sell your products. |
||||
|
</h3> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
<div style="flex-basis: 32%;padding-top: 20px;"> |
||||
|
|
||||
|
<div style="width:30%; float:left;"> |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/manufacturing-erp-software/" target="_blank"> |
||||
|
<img src="https://www.cybrosys.com/images/odoo-index-industry-2.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/manufacturing-erp-software/" target="_blank"> |
||||
|
Manufacturing</a> |
||||
|
</h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> |
||||
|
Plan, track and schedule your operations. |
||||
|
</h3> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
<div style="flex-basis: 32%;padding-top: 20px;"> |
||||
|
|
||||
|
<div style="width:30%; float:left;"> |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/restaurant-management/" target="_blank"> |
||||
|
<img src="https://www.cybrosys.com/images/odoo-index-industry-3.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/restaurant-management/" target="_blank"> |
||||
|
Restaurant</a> |
||||
|
</h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> |
||||
|
Run your bar or restaurant methodical. |
||||
|
</h3> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
<div style="flex-basis: 32%;padding-top: 20px;"> |
||||
|
|
||||
|
<div style="width:30%; float:left;"> |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/pos/" target="_blank"> |
||||
|
<img src="https://www.cybrosys.com/images/odoo-index-industry-4.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/pos/" target="_blank"> |
||||
|
POS</a> |
||||
|
</h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> |
||||
|
Easy configuring and convivial selling. |
||||
|
</h3> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
<div style="flex-basis: 32%;padding-top: 20px;"> |
||||
|
|
||||
|
<div style="width:30%; float:left;"> |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/ecommerce-website/" target="_blank"> |
||||
|
<img src="https://www.cybrosys.com/images/odoo-index-industry-5.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 0px;margin-left: 16px;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/ecommerce-website/" target="_blank"> |
||||
|
E-commerce & Website</a> |
||||
|
</h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> |
||||
|
Mobile friendly, awe-inspiring product pages. |
||||
|
</h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div style="flex-basis: 32%;padding-top: 20px;"> |
||||
|
|
||||
|
<div style="width:30%; float:left;"> |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/hotel-management-erp/" target="_blank"> |
||||
|
<img src="https://www.cybrosys.com/images/odoo-index-industry-6.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/hotel-management-erp/" target="_blank"> |
||||
|
Hotel Management</a> |
||||
|
</h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> |
||||
|
An all-inclusive hotel management application. |
||||
|
</h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div style="flex-basis: 32%;padding-top: 20px;"> |
||||
|
|
||||
|
<div style="width:30%; float:left;"> |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/education-erp-software/" target="_blank"> |
||||
|
<img src="https://www.cybrosys.com/images/odoo-index-industry-7.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/education-erp-software/" target="_blank"> |
||||
|
Education</a> |
||||
|
</h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> |
||||
|
A Collaborative platform for educational management. |
||||
|
</h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div style="flex-basis: 32%;padding-top: 20px;"> |
||||
|
|
||||
|
<div style="width:30%; float:left;"> |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/service-management/" target="_blank"> |
||||
|
<img src="https://www.cybrosys.com/images/odoo-index-industry-8.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> |
||||
|
<a href="https://www.cybrosys.com/odoo/industries/service-management/" target="_blank"> |
||||
|
Service Management</a> |
||||
|
</h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> |
||||
|
Keep track of services and invoice accordingly. |
||||
|
</h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
<section class="oe_container" style="background-image:url(https://www.cybrosys.com/images/odoo-index-footer-bg.png); background-repeat:no-repeat; background-size:100%;padding: 13% 0% 6% 0%;"> |
||||
|
<div class="oe_slogan" style="margin-top:10px !important;margin-bottom: 0px;"> |
||||
|
<div> |
||||
|
<a style="color: #5c5c5c !important;border-radius: 0;background: none;border: none;background: #fff;box-shadow: 0 10px 40px 0 rgba(62,57,107,0.07), 0 2px 9px 0 rgba(62, 57, 107, 0.05);border-radius: 30px;font-size: 12px;padding: 9px 26px;margin-right: 9px;width: 200px;text-transform: capitalize;" class="btn btn-primary btn-lg mt8" style="color: #FFFFFF !important;border-radius: 0;" href="mailto:odoo@cybrosys.com"><i class="fa fa-envelope"></i> Email us </a> |
||||
|
<a style="color: #5c5c5c !important;border-radius: 0;background: none;border: none;background: #fff;box-shadow: 0 10px 40px 0 rgba(62,57,107,0.07), 0 2px 9px 0 rgba(62, 57, 107, 0.05);border-radius: 30px;font-size: 12px;padding: 9px 26px;margin-right: 9px;width: 200px;text-transform: capitalize;" class="btn btn-primary btn-lg mt8" style="color: #FFFFFF !important;border-radius: 0;" href="https://www.cybrosys.com/contact/"><i class="fa fa-phone"></i> Contact Us </a> |
||||
|
<a style="color: #5c5c5c !important;border-radius: 0;background: none;border: none;background: #fff;box-shadow: 0 10px 40px 0 rgba(62,57,107,0.07), 0 2px 9px 0 rgba(62, 57, 107, 0.05);border-radius: 30px;font-size: 12px;padding: 9px 26px;margin-right: 9px;width: 200px;text-transform: capitalize;" class="btn btn-primary btn-lg mt8" style="color: #FFFFFF !important;border-radius: 0;" href="https://www.cybrosys.com/contact/"><i class="fa fa-check-square"></i> Request Customization </a> |
||||
|
</div> |
||||
|
<br> |
||||
|
<img src="https://www.cybrosys.com/images/logo.png" style="width: 190px; margin-bottom: 25px;margin-top: 30px;" class="center-block"> |
||||
|
<div> |
||||
|
<a href="https://twitter.com/cybrosys" target="_blank"><i class="fa fa-2x fa-twitter" style="color:white;background: #00a0d1;width:35px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a></td> |
||||
|
<a href="https://www.linkedin.com/company/cybrosys-technologies-pvt-ltd" target="_blank"><i class="fa fa-2x fa-linkedin" style="color:white;background: #31a3d6;width:35px;padding-left: 3px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a></td> |
||||
|
<a href="https://www.facebook.com/cybrosystechnologies" target="_blank"><i class="fa fa-2x fa-facebook" style="color:white;background: #3b5998;width:35px; ;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a></td> |
||||
|
<a href="https://plus.google.com/106641282743045431892/about" target="_blank"><i class="fa fa-2x fa-google-plus" style="color:white;background: #c53c2c;width:35px;padding-left: 3px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a></td> |
||||
|
<a href="https://in.pinterest.com/cybrosys" target="_blank"><i class="fa fa-2x fa-pinterest" style="color:white;background: #ac0f18;width:35px;padding-left: 3px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a></td> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
|
After Width: | Height: | Size: 117 KiB |
@ -0,0 +1,42 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<data> |
||||
|
<record model="ir.ui.view" id="login_user_detail_form_view"> |
||||
|
<field name="name">Login User Details</field> |
||||
|
<field name="model">login.detail</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<form> |
||||
|
<sheet> |
||||
|
<group> |
||||
|
<field name="name"/> |
||||
|
<field name="date_time"/> |
||||
|
<field name="ip_address"/> |
||||
|
</group> |
||||
|
</sheet> |
||||
|
</form> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<record model="ir.ui.view" id="login_user_detail_tree_view"> |
||||
|
<field name="name">Login User Details</field> |
||||
|
<field name="model">login.detail</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<tree> |
||||
|
<field name="name"/> |
||||
|
<field name="date_time"/> |
||||
|
<field name="ip_address"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<record model="ir.actions.act_window" id="login_user_detail_action_window"> |
||||
|
<field name="name">Login User Details</field> |
||||
|
<field name="res_model">login.detail</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
</record> |
||||
|
|
||||
|
<menuitem name="Login Details" id="login_user_detail.menu_1_list" parent="base.menu_users" |
||||
|
action="login_user_detail_action_window"/> |
||||
|
|
||||
|
</data> |
||||
|
</odoo> |
@ -0,0 +1,41 @@ |
|||||
|
Medical Lab Management v14 |
||||
|
========================== |
||||
|
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 |
||||
|
|
||||
|
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) 2020-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': '14.0.1.0.0', |
||||
|
'summary': """Manage Medical Lab Operations.""", |
||||
|
'description': """Manage Medical Lab General Operations, Odoo13, Odoo 13""", |
||||
|
'author': "Cybrosys Techno Solutions", |
||||
|
'maintainer': 'Cybrosys Techno Solutions', |
||||
|
'company': "Cybrosys Techno Solutions", |
||||
|
'website': "https://www.cybrosys.com", |
||||
|
'category': 'Industries', |
||||
|
'depends': ['base', 'mail', 'account'], |
||||
|
'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> |
||||
|
|
||||
|
#### 08.10.2020 |
||||
|
#### Version 14.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) 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, 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,199 @@ |
|||||
|
# -*- 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_credit_account_id.id |
||||
|
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, |
||||
|
# 'account_id': lab.patient_id.patient.property_account_receivable_id.id, |
||||
|
'state': 'draft', |
||||
|
'move_type': 'out_invoice', |
||||
|
'invoice_date': str(datetime.datetime.now()), |
||||
|
'invoice_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_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}) |
||||
|
# invoice_line_obj.update({ |
||||
|
# 'name': line.lab_test.lab_test, |
||||
|
# 'price_unit': line.cost, |
||||
|
# 'quantity': 1.0, |
||||
|
# 'account_id': prd_account_id, |
||||
|
# 'move_id': inv_id, |
||||
|
# }) |
||||
|
|
||||
|
|
||||
|
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' |
||||
|
|
||||
|
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,46 @@ |
|||||
|
# -*- 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' |
||||
|
|
||||
|
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,34 @@ |
|||||
|
# -*- 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' |
||||
|
|
||||
|
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,32 @@ |
|||||
|
<?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> |
||||
|
|
||||
|
|
||||
|
<!-- <record id="action_report_patient_label" model="ir.actions.report">--> |
||||
|
<!-- <field name="name">Patient Card</field>--> |
||||
|
<!-- <field name="model">lab.patient</field>--> |
||||
|
<!-- <field name="report_type">qweb-pdf</field>--> |
||||
|
<!-- <field name="report_name">medical_lab_management.report_patient_label</field>--> |
||||
|
<!-- <field name="report_file">medical_lab_management.report_patient_label</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: 86 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 74 KiB |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 67 KiB |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 70 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: 35 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 |
@ -0,0 +1,393 @@ |
|||||
|
<div class="row" style="margin: 0;position: relative;color: #000;background-position: center;background: #ffffff;border-bottom: 1px solid #e4e4e4;text-align: center; margin: auto; display: flex;justify-content: center;"> <a href="https://www.cybrosys.com/" target="_blank"><img src="images/cybrosys.png" style=" width: 293px; padding: 1rem 0rem; margin: auto" alt="cybrosys-logo"></a> </div> |
||||
|
<div class="row" style="margin:75px 0;position: relative;color: #000;background-position: center;background: #ffffff;border-bottom: 1px solid #e4e4e4; padding-bottom: 30px;"> |
||||
|
<div class="col-md-7 col-sm-12 col-xs-12" style="padding: 0px"> |
||||
|
<div style=" margin: 0 0 0px;padding: 20px 0 10;font-size: 23px;line-height: 35px;font-weight: 400;color: #000;border-top: 1px solid rgba(255,255,255,0.1);border-bottom: 1px solid rgba(255,255,255,0.11);text-align: left;"> |
||||
|
<h1 style="font-size: 39px;font-weight: 600;margin: 0px !important;">Medical Lab Management </h1> |
||||
|
<h3 style="font-size: 21px;margin-top: 8px;position: relative;">Manage Lab Activities </h3> |
||||
|
</div> |
||||
|
<h2 style="font-weight: 600;font-size: 1.8rem;margin-top: 15px;">Key Highlights</h2> |
||||
|
<ul style=" padding: 0 1px; list-style: none; "> |
||||
|
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 18px;"><i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Manage Patients </li> |
||||
|
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 18px;"><i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Issue Patient Card </li> |
||||
|
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 18px;"><i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Manage Referrals of Patients </li> |
||||
|
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 18px;"><i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Manage Appointments </li> |
||||
|
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 18px;"><i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Mail Notification For Appointments </li> |
||||
|
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 18px;"><i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Manage Lab Requests </li> |
||||
|
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 18px;"><i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Print Lab Test Result Of Patient </li> |
||||
|
|
||||
|
</ul> |
||||
|
</div> |
||||
|
<div class="col-md-5 col-sm-12 col-xs-12"><img src="images/l1.png" class="img-responsive" alt=""></div> |
||||
|
</div> |
||||
|
|
||||
|
<div> |
||||
|
<section class="oe_container" style="padding: 1rem 0rem 1rem; background-color: #ffffff !important;"> |
||||
|
<div class="row py-4 px-3"> |
||||
|
<div class="w-100" style="padding-top:30px;padding-bottom:45px;border-radius: 10px;"> |
||||
|
<ul role="tablist" class="nav nav-pills justify-content-center" data-tabs="tabs" id="pills-tab" style="border: none;background: unset;"> |
||||
|
<li class="nav-item mr-1 mb-3" style="font-size: 1.05rem;font-weight: 400;transition: all .15s ease;color: #d31c22;background-color: #d31c22;box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);border: 0;font-family: 'Open Sans',sans-serif;width: 140px;border-radius: 0.30rem;"> <a id="pills-home-tab" data-toggle="pill" href="#pills-home" role="tab" aria-controls="pills-home" aria-selected="true" class="nav-link active show" style="color: #000000;line-height: 33px;border: 0;border-radius: .25rem;font-weight: 400;text-align: center; |
||||
|
color: #fff;">Overview </a> </li> |
||||
|
<li class="nav-item mr-1 mb-3" style="font-size: 1.05rem;font-weight: 400;transition: all .15s ease;color: #d31c22;background-color: #d31c22;box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);border: 0;font-family: 'Open Sans',sans-serif;width: 140px;border-radius: 0.30rem;"> <a id="pills-home-tab" data-toggle="pill" href="#pills-home1" role="tab" aria-controls="pills-home" aria-selected="true" class="nav-link " style="color: #000000;line-height: 33px;border: 0;border-radius: .25rem;font-weight: 400; text-align: center; |
||||
|
color: #fff;" >Features </a> </li> |
||||
|
<li class="nav-item mr-1 mb-3" style="font-size: 1.05rem;font-weight: 400;transition: all .15s ease;color: #ffffff;background-color: #d31c22;box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);border: 0;font-family: 'Open Sans',sans-serif;width: 140px;border-radius: 0.30rem;"> <a class="nav-link" id="pills-profile-tab" data-toggle="pill" href="#pills-profile" role="tab" aria-controls="pills-profile" aria-selected="false" style="color: #000000;line-height: 33px;border: 0;border-radius: .25rem;font-weight: 400; text-align: center; |
||||
|
color: #fff;">Screenshots </a> </li> |
||||
|
|
||||
|
</ul> |
||||
|
<div class="tab-content" id="pills-tabContent" |
||||
|
style="padding-top: 30px; padding-bottom: 30px; padding: 30px;"> |
||||
|
<div class="px-3 pt-1 tab-pane fade active show" id="pills-home" role="tabpanel" aria-labelledby=" |
||||
|
pills-home-tab"> |
||||
|
<!-- Overview--> |
||||
|
<h2 style="font-weight: 600;text-align: center;width: 100%;">Overview</h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<h3 class="oe_slogan" style="text-align: center;font-size: 19px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;opacity: 1 !important;line-height: 31px;font-weight: 400;letter-spacing: .5px;margin-bottom: 21px;"> |
||||
|
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. </h3> |
||||
|
</div> |
||||
|
<div class="px-3 pt-1 tab-pane fade " id="pills-home1" role="tabpanel" aria-labelledby=" |
||||
|
pills-home-tab"> |
||||
|
<!-- feature tab--> |
||||
|
<h2 style="font-weight: 600;text-align: center;width: 100%;"> Medical Lab Management </h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<ul> |
||||
|
<li class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> |
||||
|
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Manage Patients |
||||
|
</li> |
||||
|
|
||||
|
<li class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> |
||||
|
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Issue Patient Card |
||||
|
</li> |
||||
|
|
||||
|
<li class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> |
||||
|
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Manage Referrals of Patients |
||||
|
</li> |
||||
|
|
||||
|
<li class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> |
||||
|
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Manage Appointments |
||||
|
</li> |
||||
|
|
||||
|
<li class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> |
||||
|
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Mail Notification For Appointments |
||||
|
</li> |
||||
|
|
||||
|
<li class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> |
||||
|
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Manage Lab Requests |
||||
|
</li> |
||||
|
|
||||
|
|
||||
|
<li class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> |
||||
|
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Print Lab Test Result Of Patient |
||||
|
</li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
<!-- Screenshot tab--> |
||||
|
<div class="px-3 tab-pane fade" id="pills-profile" role="tabpanel" aria-labelledby="pills-profile-tab" > |
||||
|
<div class="tab-pane"> |
||||
|
<h2 style="font-weight: 600;text-align: center;width: 100%;">Screenshots</h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<div> |
||||
|
<section class="oe_container"> |
||||
|
<div id="demo" class="row carousel slide mb32" data-ride="carousel"> |
||||
|
<div class="carousel-inner"> |
||||
|
<div class="carousel-item active" style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i>Create patients. </h3> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/cr_patient1.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="carousel-item " style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i>Go to Laboratory -> Patient -> Print -> Patient Card.</h3> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/patient_card2.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="carousel-item " style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i>Go to Laboratory -> Appointments->Create Appointments. </h3> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/appointment3.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="carousel-item " style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i>When we confirm the appointment the appointment details will be sent through E-Mail. </h3> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/mail.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="carousel-item " style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Lab Request </h3> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/lab_request5.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="carousel-item " style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i>Lab Test Result </h3> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/lab report6.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="carousel-item " style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Create invoice for lab test. </h3> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/draft invoice7.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="carousel-item " style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i>You can see today's appointments here. </h3> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/today appo8.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="carousel-item " style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i>Go to Laboratory -> Configuration -> Lab test. </h3> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/lab test9.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="carousel-item " style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> Go to Laboratory -> Configuration -> Test Contents. </h3> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/test content10.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="carousel-item " style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i>Go to Laboratory -> Configuration -> Testing Unit. </h3> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/testing unit11.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="carousel-item " style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i>We can add referral physician details. </h3> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/physician12.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<div class="carousel-item " style="min-height: 0px;"> |
||||
|
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> |
||||
|
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i>There are two type </h3> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/lab user1.png"> </div> |
||||
|
<p> </p> |
||||
|
<div style=""> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/lab user1.png"> </div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<a class="carousel-control-prev" href="#demo" 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="#demo" 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> |
||||
|
</section> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<!-- faq tab--> |
||||
|
<div class="px-2 px-lg-4 pt-3 tab-pane fade" id="pills-contact" role="tabpanel" aria-labelledby="pills-contact-tab"> |
||||
|
<ul class="list-unstyled"> |
||||
|
</ul> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
<section class="oe_container" style="padding: 2rem 3rem 1rem;"> |
||||
|
<h2 style="font-weight: 600;text-align: center;margin-bottom: 25px;width: 100%;"> Suggested Products </h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<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/12.0/project_report_pdf/" target="_blank"> |
||||
|
<div style="box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);border-radius: 10px;"> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/banner_project_report_xls_pdf.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/10.0/project_status_level_report/" target="_blank"> |
||||
|
<div style="box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);border-radius: 10px;"> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/banner_project_status_report.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/10.0/project_lifeline/" target="_blank"> |
||||
|
<div style="box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);border-radius: 10px;"> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/banner_lifeline_for_task.jpeg"> </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/10.0/project_subtask/" target="_blank"> |
||||
|
<div style="box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);border-radius: 10px;"> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/banner_subtask.jpeg"> </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/12.0/task_deadline_reminder/" target="_blank"> |
||||
|
<div style="box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);border-radius: 10px;"> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/banner_task_deadline_reminder.jpeg"> </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/10.0/project_time_spend/" target="_blank"> |
||||
|
<div style="box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);border-radius: 10px;"> <img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" src="images/banner_task_statusbar.jpeg"> </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> |
||||
|
</section> |
||||
|
<section class="row" style="padding: 2rem 3rem 1rem;margin:0px"> |
||||
|
<h2 style="font-weight: 600;margin-bottom: 20px;text-align: center;width: 100%;"> Our Service </h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<div class="row" style=" display: flex; justify-content: center; flex-wrap: wrap;width: 100%; "> |
||||
|
<!-- <div style="display:flex;padding-top: 20px;justify-content: space-between;"> --> |
||||
|
<div class="col-md-2 col-sm-6 col-xs-12"> |
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> <a href="https://www.cybrosys.com/odoo-customization-and-installation/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-customization.png" style="width: 100%;border-radius: 100%;"/> </a> </div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> <a href="https://www.cybrosys.com/odoo-customization-and-installation/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Odoo Customization </a> </h3> |
||||
|
</div> |
||||
|
<div class="col-md-2 col-sm-6 col-xs-12"> |
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> <a href="https://www.cybrosys.com/odoo-erp-implementation/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-erp-implementation.png" style="width: 100%;border-radius: 100%;"/> </a> </div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> <a href="https://www.cybrosys.com/odoo-erp-implementation/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Odoo Implementation </a> </h3> |
||||
|
</div> |
||||
|
<div class="col-md-2 col-sm-6 col-xs-12"> |
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> <a href="https://www.cybrosys.com/odoo-erp-integration/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-erp-integration.png" style="width: 100%;border-radius: 100%;"/> </a> </div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> <a href="https://www.cybrosys.com/odoo-erp-integration/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Odoo Integration </a> </h3> |
||||
|
</div> |
||||
|
<div class="col-md-2 col-sm-6 col-xs-12"> |
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> <a href="https://www.cybrosys.com/odoo-erp-support/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-erp-support.png" style="width: 100%;border-radius: 100%;"/> </a> </div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> <a href="https://www.cybrosys.com/odoo-erp-support/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Odoo Support</a> </h3> |
||||
|
</div> |
||||
|
<div class="col-md-2 col-sm-6 col-xs-12"> |
||||
|
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> <a href="https://www.cybrosys.com/hire-odoo-developer/" target="_blank"> <img src="https://www.cybrosys.com/images/hire-odoo-developer.png" style="width: 100%;border-radius: 100%;"/> </a> </div> |
||||
|
<h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> <a href="https://www.cybrosys.com/hire-odoo-developer/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Hire Odoo Developers</a> </h3> |
||||
|
</a> |
||||
|
</div> |
||||
|
<!-- </div> --> |
||||
|
</div> |
||||
|
</section> |
||||
|
<section class="row" style="padding: 2rem 3rem 1rem;margin:0px"> |
||||
|
<div class="row" style="margin: 0"> |
||||
|
<h2 style="font-weight: 600;margin-bottom: 20px;text-align: center;width: 100%;"> Our Industries</h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<!-- <div style="display:flex;justify-content: space-between;flex-wrap:wrap;"> --> |
||||
|
<div class="row" style="width: 100%"> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/best-trading-erp/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-1.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/best-trading-erp/" target="_blank" style="list-style: none; color:#000; text-decoration: none;font-family: 'Montserrat',sans-serif;"> Trading </a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px; font-family: 'Montserrat',sans-serif;"> Easily procure and sell your products. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/manufacturing-erp-software/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-2.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;" style=" margin-bottom: 10px; "> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/manufacturing-erp-software/" target="_blank" style="list-style: none; color:#000; text-decoration: none;font-family: 'Montserrat',sans-serif;"> Manufacturing</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;font-family: 'Montserrat',sans-serif;"> Plan, track and schedule your operations. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/restaurant-management/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-3.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/restaurant-management/" target="_blank" style="list-style: none; color:#000; text-decoration: none;font-family: 'Montserrat',sans-serif;"> Restaurant</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;font-family: 'Montserrat',sans-serif;"> Run your bar or restaurant methodical. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/pos/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-4.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/pos/" target="_blank" style="list-style: none; color:#000; text-decoration: none;font-family: 'Montserrat',sans-serif;"> POS</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;font-family: 'Montserrat',sans-serif;"> Easy configuring and convivial selling. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/ecommerce-website/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-5.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 0px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/ecommerce-website/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> E-commerce & Website</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px; font-family: 'Montserrat',sans-serif;"> Mobile friendly, awe-inspiring product pages. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/hotel-management-erp/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-6.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/hotel-management-erp/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Hotel Management</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px; font-family: 'Montserrat',sans-serif;"> An all-inclusive hotel management application. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/education-erp-software/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-7.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/education-erp-software/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Education</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px; font-family: 'Montserrat',sans-serif;"> A Collaborative platform for educational management. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 col-xs-12" style=" margin-bottom: 10px; "> |
||||
|
<div > |
||||
|
<div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> <a href="https://www.cybrosys.com/odoo/industries/service-management/" target="_blank"> <img src="https://www.cybrosys.com/images/odoo-index-industry-8.png" alt="Odoo Industry" style=" border-radius: 100%;width:100%;"/> </a> </div> |
||||
|
</div> |
||||
|
<div style="width:70%;float:left;"> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> <a href="https://www.cybrosys.com/odoo/industries/service-management/" target="_blank" style="list-style: none; color:#000; text-decoration: none; font-family: 'Montserrat',sans-serif;"> Service Management</a> </h3> |
||||
|
<h3 class="oe_slogan" style=" text-align: left;font-size: 12px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px; font-family: 'Montserrat',sans-serif;"> Keep track of services and invoice accordingly. </h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
<section class="oe_container" style="padding: 0% 0% 6% 0%;"> |
||||
|
<center> |
||||
|
<div class="col-md-12" style="margin: auto !important; |
||||
|
width: 70%; |
||||
|
padding: 30px;"> |
||||
|
<h2 style="font-weight: 600;text-align: center;width: 100%;"> Need Any Help? </h2> |
||||
|
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> |
||||
|
<h4 style="font-size:16px;"> If you have anything to share with us based on your use of this module, please let us know. We are ready to offer our support. </h4> |
||||
|
<div class="col-md-6" style="float:left; padding:20px;"> |
||||
|
<h4><i class="fa fa-envelope"></i> Email us </h4> |
||||
|
<p>odoo@cybrosys.com / info@cybrosys.com</p> |
||||
|
</div> |
||||
|
<div class="col-md-6" style="float:left; padding:20px;"> |
||||
|
<h4><i class="fa fa-phone"></i> Contact Us </h4> |
||||
|
<a href="https://www.cybrosys.com/contact/" target="_blank"> www.cybrosys.com </a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</center> |
||||
|
</section> |
||||
|
<section class="oe_container" style="padding: 0% 0% 6% 0%;"> |
||||
|
<div class="oe_slogan" style="margin-bottom: 0px;"> |
||||
|
<div style=" display: flex; justify-content: center; flex-wrap: wrap; "> |
||||
|
</div> |
||||
|
<br> |
||||
|
<img src="https://www.cybrosys.com/images/logo.png" style="width: 190px; margin-bottom: 25px;margin-top: 30px;" class="center-block"> |
||||
|
<div style=" display: flex; justify-content: center; flex-wrap: wrap; "> <a href="https://twitter.com/cybrosys" target="_blank"><i class="fa fa-2x fa-twitter" style="color:white;background: #00a0d1;width:35px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a> |
||||
|
</td> |
||||
|
<a href="https://www.linkedin.com/company/cybrosys-technologies-pvt-ltd" target="_blank"><i class="fa fa-2x fa-linkedin" style="color:white;background: #31a3d6;width:35px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a> |
||||
|
</td> |
||||
|
<a href="https://www.facebook.com/cybrosystechnologies" target="_blank"><i class="fa fa-2x fa-facebook" style="color:white;background: #3b5998;width:35px; height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a> |
||||
|
</td> |
||||
|
<a href="https://in.pinterest.com/cybrosys" target="_blank"><i class="fa fa-2x fa-pinterest" style="color:white;background: #ac0f18;width:35px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a> |
||||
|
</td> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
</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> |
@ -0,0 +1,40 @@ |
|||||
|
Sale Discount on Total Amount |
||||
|
============================= |
||||
|
Discount on Total in Sale and Invoice With Discount Limit and Approval |
||||
|
|
||||
|
Configuration |
||||
|
============= |
||||
|
* No additional configurations needed |
||||
|
|
||||
|
Company |
||||
|
------- |
||||
|
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
||||
|
|
||||
|
Credits |
||||
|
------- |
||||
|
* Developer: Faslu Rahman@cybrosys |
||||
|
V14: Muhammed P@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,24 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Faslu Rahman(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 |
||||
|
from . import reports |
||||
|
|
@ -0,0 +1,54 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2020-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Faslu Rahman(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/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
|
||||
|
{ |
||||
|
'name': 'Sale Discount on Total Amount', |
||||
|
'version': '14.0.1.0.0', |
||||
|
'category': 'Sales Management', |
||||
|
'summary': "Discount on Total in Sale and Invoice With Discount Limit and Approval", |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'website': 'http://www.cybrosys.com', |
||||
|
'description': """ |
||||
|
|
||||
|
Sale Discount for Total Amount |
||||
|
======================= |
||||
|
Module to manage discount on total amount in Sale. |
||||
|
as an specific amount or percentage |
||||
|
""", |
||||
|
'depends': ['sale', |
||||
|
'account', 'delivery' |
||||
|
], |
||||
|
'data': [ |
||||
|
'views/sale_view.xml', |
||||
|
'views/account_invoice_view.xml', |
||||
|
'views/invoice_report.xml', |
||||
|
'views/sale_order_report.xml', |
||||
|
'views/res_config_view.xml', |
||||
|
|
||||
|
], |
||||
|
'images': ['static/description/banner.png'], |
||||
|
'license': 'AGPL-3', |
||||
|
'application': True, |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
} |
@ -0,0 +1,9 @@ |
|||||
|
## Module <inventory_barcode_scanning> |
||||
|
|
||||
|
#### 08.10.2020 |
||||
|
#### Version 14.0.1.0.0 |
||||
|
#### ADD |
||||
|
Initial commit for Sale Discount On Total Amount |
||||
|
|
||||
|
|
||||
|
|
@ -0,0 +1,25 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Faslu Rahman(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 sale |
||||
|
from . import account_invoice |
||||
|
from . import discount_approval |
||||
|
|
@ -0,0 +1,176 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Faslu Rahman(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 api, fields, models |
||||
|
|
||||
|
|
||||
|
class AccountInvoice(models.Model): |
||||
|
_inherit = "account.move" |
||||
|
|
||||
|
@api.depends( |
||||
|
'line_ids.matched_debit_ids.debit_move_id.move_id.line_ids.amount_residual', |
||||
|
'line_ids.matched_debit_ids.debit_move_id.move_id.line_ids.amount_residual_currency', |
||||
|
'line_ids.matched_credit_ids.credit_move_id.move_id.line_ids.amount_residual', |
||||
|
'line_ids.matched_credit_ids.credit_move_id.move_id.line_ids.amount_residual_currency', |
||||
|
'line_ids.debit', |
||||
|
'line_ids.credit', |
||||
|
'line_ids.currency_id', |
||||
|
'line_ids.amount_currency', |
||||
|
'line_ids.amount_residual', |
||||
|
'line_ids.amount_residual_currency', |
||||
|
'line_ids.payment_id.state', |
||||
|
'line_ids.full_reconcile_id') |
||||
|
def _compute_amount(self): |
||||
|
for move in self: |
||||
|
|
||||
|
if move.payment_state == 'invoicing_legacy': |
||||
|
# invoicing_legacy state is set via SQL when setting setting field |
||||
|
# invoicing_switch_threshold (defined in account_accountant). |
||||
|
# The only way of going out of this state is through this setting, |
||||
|
# so we don't recompute it here. |
||||
|
move.payment_state = move.payment_state |
||||
|
continue |
||||
|
|
||||
|
total_untaxed = 0.0 |
||||
|
total_untaxed_currency = 0.0 |
||||
|
total_tax = 0.0 |
||||
|
total_tax_currency = 0.0 |
||||
|
total_to_pay = 0.0 |
||||
|
total_residual = 0.0 |
||||
|
total_residual_currency = 0.0 |
||||
|
total = 0.0 |
||||
|
total_currency = 0.0 |
||||
|
currencies = set() |
||||
|
|
||||
|
for line in move.line_ids: |
||||
|
if line.currency_id: |
||||
|
currencies.add(line.currency_id) |
||||
|
|
||||
|
if move.is_invoice(include_receipts=True): |
||||
|
# === Invoices === |
||||
|
|
||||
|
if not line.exclude_from_invoice_tab: |
||||
|
# Untaxed amount. |
||||
|
total_untaxed += line.balance |
||||
|
total_untaxed_currency += line.amount_currency |
||||
|
total += line.balance |
||||
|
total_currency += line.amount_currency |
||||
|
elif line.tax_line_id: |
||||
|
# Tax amount. |
||||
|
total_tax += line.balance |
||||
|
total_tax_currency += line.amount_currency |
||||
|
total += line.balance |
||||
|
total_currency += line.amount_currency |
||||
|
elif line.account_id.user_type_id.type in ('receivable', 'payable'): |
||||
|
# Residual amount. |
||||
|
total_to_pay += line.balance |
||||
|
total_residual += line.amount_residual |
||||
|
total_residual_currency += line.amount_residual_currency |
||||
|
else: |
||||
|
# === Miscellaneous journal entry === |
||||
|
if line.debit: |
||||
|
total += line.balance |
||||
|
total_currency += line.amount_currency |
||||
|
|
||||
|
if move.move_type == 'entry' or move.is_outbound(): |
||||
|
sign = 1 |
||||
|
else: |
||||
|
sign = -1 |
||||
|
if move.discount_type == 'percent': |
||||
|
move.amount_discount = sum((line.quantity * line.price_unit * line.discount) / 100 for line in move.invoice_line_ids) |
||||
|
else: |
||||
|
move.amount_discount = move.discount_rate |
||||
|
move.amount_untaxed = sign * (total_untaxed_currency if len(currencies) == 1 else total_untaxed) |
||||
|
move.amount_tax = sign * (total_tax_currency if len(currencies) == 1 else total_tax) |
||||
|
move.amount_total = sign * (total_currency if len(currencies) == 1 else total) |
||||
|
move.amount_residual = -sign * (total_residual_currency if len(currencies) == 1 else total_residual) |
||||
|
move.amount_untaxed_signed = -total_untaxed |
||||
|
move.amount_tax_signed = -total_tax |
||||
|
move.amount_total_signed = abs(total) if move.move_type == 'entry' else -total |
||||
|
move.amount_residual_signed = total_residual |
||||
|
|
||||
|
currency = len(currencies) == 1 and currencies.pop() or move.company_id.currency_id |
||||
|
|
||||
|
# Compute 'payment_state'. |
||||
|
new_pmt_state = 'not_paid' if move.move_type != 'entry' else False |
||||
|
|
||||
|
if move.is_invoice(include_receipts=True) and move.state == 'posted': |
||||
|
|
||||
|
if currency.is_zero(move.amount_residual): |
||||
|
if all(payment.is_matched for payment in move._get_reconciled_payments()): |
||||
|
new_pmt_state = 'paid' |
||||
|
else: |
||||
|
new_pmt_state = move._get_invoice_in_payment_state() |
||||
|
elif currency.compare_amounts(total_to_pay, total_residual) != 0: |
||||
|
new_pmt_state = 'partial' |
||||
|
|
||||
|
if new_pmt_state == 'paid' and move.move_type in ('in_invoice', 'out_invoice', 'entry'): |
||||
|
reverse_type = move.move_type == 'in_invoice' and 'in_refund' or move.move_type == 'out_invoice' and 'out_refund' or 'entry' |
||||
|
reverse_moves = self.env['account.move'].search( |
||||
|
[('reversed_entry_id', '=', move.id), ('state', '=', 'posted'), ('move_type', '=', reverse_type)]) |
||||
|
|
||||
|
# We only set 'reversed' state in cas of 1 to 1 full reconciliation with a reverse entry; otherwise, we use the regular 'paid' state |
||||
|
reverse_moves_full_recs = reverse_moves.mapped('line_ids.full_reconcile_id') |
||||
|
if reverse_moves_full_recs.mapped('reconciled_line_ids.move_id').filtered(lambda x: x not in ( |
||||
|
reverse_moves + reverse_moves_full_recs.mapped('exchange_move_id'))) == move: |
||||
|
new_pmt_state = 'reversed' |
||||
|
|
||||
|
move.payment_state = new_pmt_state |
||||
|
|
||||
|
discount_type = fields.Selection([('percent', 'Percentage'), ('amount', 'Amount')], string='Discount Type', |
||||
|
readonly=True, states={'draft': [('readonly', False)]}, default='percent') |
||||
|
discount_rate = fields.Float('Discount Amount', digits=(16, 2), readonly=True, |
||||
|
states={'draft': [('readonly', False)]}) |
||||
|
amount_discount = fields.Monetary(string='Discount', store=True, readonly=True, compute='_compute_amount', |
||||
|
track_visibility='always') |
||||
|
|
||||
|
@api.onchange('discount_type', 'discount_rate', 'invoice_line_ids') |
||||
|
def supply_rate(self): |
||||
|
for inv in self: |
||||
|
if inv.discount_type == 'percent': |
||||
|
for line in inv.line_ids: |
||||
|
line.discount = inv.discount_rate |
||||
|
line._onchange_price_subtotal() |
||||
|
else: |
||||
|
total = discount = 0.0 |
||||
|
for line in inv.invoice_line_ids: |
||||
|
total += (line.quantity * line.price_unit) |
||||
|
if inv.discount_rate != 0: |
||||
|
discount = (inv.discount_rate / total) * 100 |
||||
|
else: |
||||
|
discount = inv.discount_rate |
||||
|
for line in inv.line_ids: |
||||
|
line.discount = discount |
||||
|
line._onchange_price_subtotal() |
||||
|
|
||||
|
inv._compute_invoice_taxes_by_group() |
||||
|
# |
||||
|
|
||||
|
def button_dummy(self): |
||||
|
self.supply_rate() |
||||
|
return True |
||||
|
|
||||
|
|
||||
|
class AccountInvoiceLine(models.Model): |
||||
|
_inherit = "account.move.line" |
||||
|
|
||||
|
discount = fields.Float(string='Discount (%)', digits=(16, 20), default=0.0) |