f056974bc5
* Medical module for erpnext * Changes in core for Medical module * patient registration updated * fix - appointment invioce - fields missing * pages- indicator instead of bg-color * Lab Test field renamed service type * Department added Lab Test * procedure name in prescription * fixes sample collection * filter disabled patient * fix patient admission * updated patient age * availability check msg updated * fixes, removed procedure from invoice * sample print renamed * fixes, validation * service desk physician in filter * refactor scheduler * Appointment -field property - set only once = 1 * Appointment - Mark closed and pending buttons removed * Appointment - readonly = 1 if value set * Appointment - availabilty * Appointment - Cancel - info - cancel invoice * Appointment - set pending appointments * Dosage form - new DT * Drug Prescription - Dosage form added * Facility - Floor - removed from Fecility * Floor - removed * Lab Test Template - item creation validation * Procedure - Create Procedure * Procedure Appointment - new DT * Service Unit - Floor reference removed * Zone Fcilities - Unused DT removed * Appointment Desk - fixed * Service Desk - method pointing from procedure changed to procedure_appointment * Consultation print - got featured * Consultation - removed patient refernce to procedure prescription * Procedure Prescription - removed patient refernce * Lab Test - Changed field properties and value * Lab Test - field property changed * Lab Test - methods rewrite - lab test doc creation * Lab Test - create lab test from invoice and consultaion - got changed * Button History changed to Medical Record * Service Desk - Updated * Notification - Procedure Appointment * fix-get procedure prescription * fix field added to test prescription * msgprint on invoice creation * fix data on install * Merge branch erpnext/develop * fixes- minor * Setup wizard - Create Sensitivity * Appointment - Validate and Save if there is no schedule for Physician * Consultation - Button create vital signs and medical record * Review Type - New DocType * Review Detail and Treatment Plan - Childs - Consultation * Patient Medical Record - field Attach doc * Consultation - New Fields * Consultation - Manage new Fields - Medical record add action * Patient Relation - Child DocType - Patient * Patient - Patient Relation added * Patient - collapsible = 1 * Laboratory Settings - fields - message for lab test * Laboratory Settings - get message for lab test * SMS text for lab test and invoice test report * Procedure Stock Detail - Stock detail for Procedure and Template * Template Stage Detail - Stage detail for Procedure Template * Procedure Stage Detail - Stage detail for Procedure * Service Unit - field - warehouse * Scheduler - msg - content changed * Laboratory Settings - defualt - msg content * Invoice Test Report - msg print * Print Format-Changed-Consultation-Invoice Test Report-Lab Test * OP Settings - Expnse Account for Stock Entry in Procedure * Procedure and Procedure Template - Manage Stock Stage and Sample Collection * Procedure Appointment - Manage Stock and Stage * Lab Test - fixed - resource not find * Invoice Test Report - fixed - resource not find * Procedure - doc reload after insert * Patient Medical Record - fixed - refernce missed * Create Vital Signs -on client side * Rename module Medical to Healthcare * Remove In Patient (IP) Feature. * Rename - Procedure to Clinical Procedure * Remove spaces in Naming Series * Rename Duration to Drug Prescription Duration * Duration to Drug Prescription Duration * Merge All Settings to Healthcare Settings * Healthcare settings - import fixed * Procedure related documents are removed * Appointment Desk and Sevrvice Desk are removed * Consultation - minimal * Consultation - minimal * Consultation - minimal - patient detials in collapsible section * Message Print to Alerts * Patient - some fields removed * Patient - create consultation - message print to alerts * Consultation - show patient details updated * Setup wizard - Duration to Drug Prescritpion Duration * Healthcare Settings - patient registration - fee collection * Lab Test - Create Sales Invoice bug fixed * Healthcare menu rearranged * Healthcare Settings - Optimised and Rearragnged * Healthcare Settings - Expense account removed * Receivable account removed from patient * Patient - Optimised and Rearragnged * Removed Referring Physician * Healthcare Settings - bold headings removed * Physician - Patient - Fields are Segregated * Remove Service Unit * Remove - Service Type * Consultation invoice * Lab Test - invoice * Patient - Invoice * Rename Appointment to Patient Appointment * wip * Patient Dashboard, Physician Form cleanup * Dosage renamed to Prescription Dosage * Renamed Drug Prescription Duration to Prescription Duration * Patient Appointment booking modal * Patient Age - calculate by dob * Remove - scheduler * Consultation - Appointment to Patient Appointment * Patient Dashboard - rearranged * Patient Appointment * Removed rer_physician from lab test and consultation * Patient Appontment Changes * Appointment and Consultation - optimized * Patient Appointment - fee validity code optimized * Consultation and Patient Appointment - Invoice validate two side * fix: #13 remove relation to admission * Healthcare - Patient Portal * fix import error * domain Healthcare added on install * Removed - Invoice Test Report * Physician Schedule - menu * Consultation - patient details - re write * New Doctype-Medical Code * Consultation - Daignosis codification * Medical Code - Codification - Settings * Medical Code Standard - Medical Code - Codification - Settings * fix appointment calendar * fix appointment analytics * Menu Medical Code Standard * New Doctype - Medical Code Standard * Set Physician Role insted of IP Physician and OP Physician Role * fixed some json files * Medical code - permission to physician * Unused Childs - Work Schedule and User List - Removed * Label Procedure to Lab Test * Lab Test and Patient - code optimised * Add Item Groups - setup wizard * Healthcare Settings - add Role - Medical Administrator * Healthcare - Demo setup - Make Demo * Fee Validity - Logic Test * Test Fee Validity - Optimised * Healthcare Doctypes - Restricted to Domain Healthcare * Domainify - remove Healthcare Roles - Other Domains * Healthcare doctypes - beta checked * Codacy fixes * Codacy - fixes * Codacy - fixes * Codacy - fixes * Codacy - fixes * Codacy - fixes * Lab Test - print hide =1 for some fields * Consultation - Codification field label to Medical Coding * Codacy fixes - import frappe and etc. * Codacy fixes - import frappe in test_vital_signs * Codacy fixes * Codacy fixes * Codacy fixes and remove delete perm for patient * send_sms - import form frappe * Healthcare Settings * Lab Prescription - Consultation - Test Code - read_only = 0 * Portal fixes * Patient Appointment - filter physician - if has schedule * Physician - IP Charge - Removed * test - files * Web Form - Patient Profile - removed * Role Medical Administrator to Healthcare Administrator * WIP healthcare documentation * Coday - fixes * Travis - fixes * Lab Test Report - menu * Reorder Healthcare settings - group lab config to bottom * Sample Collection - New - allow Sample and patient Selection * Rate - similar behaviour and Label as in Item Standard Selling Rate * Healthcare documentation * Lab Test Samples to Lab Test sample * Commplaints to Complaint * Commplaints to Complaint * Antibiotics to Antibiotic * Appointment Token Number - remove * View - Medical record * Codacy fixes * update healthcare docs * Cleanup Docs - Search, quick entry, trsck change, etc. * [minor] ux changes
179 lines
6.5 KiB
Python
179 lines
6.5 KiB
Python
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
import frappe
|
|
from frappe import _
|
|
|
|
def get_domain(domain):
|
|
'''Written as a function to prevent data mutation effects'''
|
|
data = {
|
|
'Manufacturing': {
|
|
'desktop_icons': ['Item', 'BOM', 'Customer', 'Supplier', 'Sales Order',
|
|
'Production Order', 'Stock Entry', 'Purchase Order', 'Task', 'Buying', 'Selling',
|
|
'Accounts', 'HR', 'ToDo'],
|
|
'remove_roles': ['Academics User', 'Instructor', 'Physician', 'Nursing User',
|
|
'Laboratory user', 'LabTest Approver', 'Healthcare Administrator'],
|
|
'properties': [
|
|
{'doctype': 'Item', 'fieldname': 'manufacturing', 'property': 'collapsible_depends_on', 'value': 'is_stock_item'},
|
|
],
|
|
'set_value': [
|
|
['Stock Settings', None, 'show_barcode_field', 1]
|
|
],
|
|
'default_portal_role': 'Customer'
|
|
},
|
|
|
|
'Retail': {
|
|
'desktop_icons': ['POS', 'Item', 'Customer', 'Sales Invoice', 'Purchase Order',
|
|
'Warranty Claim', 'Accounts', 'Task', 'Buying', 'ToDo'],
|
|
'remove_roles': ['Manufacturing User', 'Manufacturing Manager', 'Academics User', 'Instructor',
|
|
'Physician', 'Nursing User', 'Laboratory user',
|
|
'LabTest Approver', 'Healthcare Administrator'],
|
|
'properties': [
|
|
{'doctype': 'Item', 'fieldname': 'manufacturing', 'property': 'hidden', 'value': 1},
|
|
{'doctype': 'Customer', 'fieldname': 'credit_limit_section', 'property': 'hidden', 'value': 1},
|
|
],
|
|
'set_value': [
|
|
['Stock Settings', None, 'show_barcode_field', 1]
|
|
],
|
|
'default_portal_role': 'Customer'
|
|
},
|
|
|
|
'Distribution': {
|
|
'desktop_icons': ['Item', 'Customer', 'Supplier', 'Lead', 'Sales Order', 'Task',
|
|
'Sales Invoice', 'CRM', 'Selling', 'Buying', 'Stock', 'Accounts', 'HR', 'ToDo'],
|
|
'remove_roles': ['Manufacturing User', 'Manufacturing Manager', 'Academics User', 'Instructor',
|
|
'Physician', 'Nursing User', 'Laboratory user',
|
|
'LabTest Approver', 'Healthcare Administrator'],
|
|
'set_value': [
|
|
['Stock Settings', None, 'show_barcode_field', 1]
|
|
],
|
|
'default_portal_role': 'Customer'
|
|
},
|
|
|
|
'Services': {
|
|
'desktop_icons': ['Project', 'Timesheet', 'Customer', 'Sales Order', 'Sales Invoice',
|
|
'Lead', 'Opportunity', 'Task', 'Expense Claim', 'Employee', 'HR', 'ToDo'],
|
|
'remove_roles': ['Manufacturing User', 'Manufacturing Manager', 'Academics User', 'Instructor',
|
|
'Physician', 'Nursing User', 'Laboratory user',
|
|
'LabTest Approver', 'Healthcare Administrator'],
|
|
'properties': [
|
|
{'doctype': 'Item', 'fieldname': 'is_stock_item', 'property': 'default', 'value': 0},
|
|
],
|
|
'set_value': [
|
|
['Stock Settings', None, 'show_barcode_field', 0]
|
|
],
|
|
'default_portal_role': 'Customer'
|
|
},
|
|
'Education': {
|
|
'desktop_icons': ['Student', 'Program', 'Course', 'Student Group', 'Instructor',
|
|
'Fees', 'Task', 'ToDo', 'Schools'],
|
|
'allow_roles': ['Academics User', 'Accounts User', 'Accounts Manager', 'Item Manager',
|
|
'Website Manager', 'HR User', 'HR Manager', 'Purchase User', 'Purchase Manager',
|
|
'Student', 'Projects User', 'Instructor'],
|
|
'default_portal_role': 'Student'
|
|
},
|
|
'Healthcare': {
|
|
'desktop_icons': ['Patient', 'Patient Appointment', 'Consultation', 'Lab Test', 'Healthcare',
|
|
'Accounts', 'Buying', 'Stock', 'HR', 'ToDo'],
|
|
'remove_roles': ['Manufacturing User', 'Manufacturing Manager', 'Projects User', 'Projects Manager',
|
|
'Academics User', 'Instructor'],
|
|
'default_portal_role': 'Patient'
|
|
},
|
|
}
|
|
if not domain in data:
|
|
raise 'Invalid Domain {0}'.format(domain)
|
|
return frappe._dict(data[domain])
|
|
|
|
def setup_domain(domain):
|
|
'''Setup roles, desktop icons, properties, values, portal sidebar menu based on domain'''
|
|
data = get_domain(domain)
|
|
setup_roles(data)
|
|
setup_desktop_icons(data)
|
|
setup_properties(data)
|
|
set_values(data)
|
|
setup_sidebar_items(data)
|
|
update_module_def_restrict_to_domain()
|
|
|
|
if data.get('default_portal_role'):
|
|
frappe.db.set_value('Portal Settings', None, 'default_role', data.get('default_portal_role'))
|
|
|
|
frappe.clear_cache()
|
|
|
|
def setup_desktop_icons(data):
|
|
'''set desktop icons form `data.desktop_icons`'''
|
|
from frappe.desk.doctype.desktop_icon.desktop_icon import set_desktop_icons
|
|
if data.desktop_icons:
|
|
set_desktop_icons(data.desktop_icons)
|
|
|
|
def setup_properties(data):
|
|
if data.properties:
|
|
for args in data.properties:
|
|
frappe.make_property_setter(args)
|
|
|
|
def setup_roles(data):
|
|
'''Add, remove roles from `data.allow_roles` or `data.remove_roles`'''
|
|
def remove_role(role):
|
|
frappe.db.sql('delete from `tabHas Role` where role=%s', role)
|
|
frappe.set_value('Role', role, 'disabled', 1)
|
|
|
|
if data.remove_roles:
|
|
for role in data.remove_roles:
|
|
remove_role(role)
|
|
|
|
if data.allow_roles:
|
|
# remove all roles other than allowed roles
|
|
active_domains = frappe.get_active_domains()
|
|
data.allow_roles += ['Administrator', 'Guest', 'System Manager', 'All']
|
|
for role in frappe.get_all('Role', filters = {"restrict_to_domain": ("not in", active_domains)}):
|
|
if not (role.name in data.allow_roles):
|
|
remove_role(role.name)
|
|
|
|
def set_values(data):
|
|
'''set values based on `data.set_value`'''
|
|
if data.set_value:
|
|
for args in data.set_value:
|
|
doc = frappe.get_doc(args[0], args[1] or args[0])
|
|
doc.set(args[2], args[3])
|
|
doc.save()
|
|
|
|
def setup_sidebar_items(data):
|
|
'''Enable / disable sidebar items'''
|
|
if data.allow_sidebar_items:
|
|
# disable all
|
|
frappe.db.sql('update `tabPortal Menu Item` set enabled=0')
|
|
|
|
# enable
|
|
frappe.db.sql('''update `tabPortal Menu Item` set enabled=1
|
|
where route in ({0})'''.format(', '.join(['"{0}"'.format(d) for d in data.allow_sidebar_items])))
|
|
|
|
if data.remove_sidebar_items:
|
|
# disable all
|
|
frappe.db.sql('update `tabPortal Menu Item` set enabled=1')
|
|
|
|
# enable
|
|
frappe.db.sql('''update `tabPortal Menu Item` set enabled=0
|
|
where route in ({0})'''.format(', '.join(['"{0}"'.format(d) for d in data.remove_sidebar_items])))
|
|
|
|
def reset():
|
|
from frappe.desk.page.setup_wizard.setup_wizard import add_all_roles_to
|
|
add_all_roles_to('Administrator')
|
|
|
|
frappe.db.sql('delete from `tabProperty Setter`')
|
|
|
|
def update_module_def_restrict_to_domain():
|
|
""" set the restrict to domain for the module def """
|
|
|
|
module_def_restrict_to_domain_mapper = {
|
|
"Schools": 'Education'
|
|
}
|
|
|
|
lang = frappe.db.get_single_value("System Settings", "language") or "en"
|
|
for module, domain in module_def_restrict_to_domain_mapper.iteritems():
|
|
if frappe.db.exists("Domain", _(domain, lang)):
|
|
frappe.db.set_value("Module Def", module, "restrict_to_domain", _(domain, lang))
|
|
elif frappe.db.exists("Domain", domain):
|
|
frappe.db.set_value("Module Def", module, "restrict_to_domain", domain)
|
|
else:
|
|
pass
|