mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-22 22:49:19 +00:00
Merge branch 'develop' into woocommerce-shipping
This commit is contained in:
@@ -924,7 +924,7 @@ var get_healthcare_services_to_invoice = function(frm) {
|
|||||||
if(patient && patient!=selected_patient){
|
if(patient && patient!=selected_patient){
|
||||||
selected_patient = patient;
|
selected_patient = patient;
|
||||||
var method = "erpnext.healthcare.utils.get_healthcare_services_to_invoice";
|
var method = "erpnext.healthcare.utils.get_healthcare_services_to_invoice";
|
||||||
var args = {patient: patient};
|
var args = {patient: patient, company: frm.doc.company};
|
||||||
var columns = (["service", "reference_name", "reference_type"]);
|
var columns = (["service", "reference_name", "reference_type"]);
|
||||||
get_healthcare_items(frm, true, $results, $placeholder, method, args, columns);
|
get_healthcare_items(frm, true, $results, $placeholder, method, args, columns);
|
||||||
}
|
}
|
||||||
@@ -1068,7 +1068,11 @@ var get_drugs_to_invoice = function(frm) {
|
|||||||
description:'Quantity will be calculated only for items which has "Nos" as UoM. You may change as required for each invoice item.',
|
description:'Quantity will be calculated only for items which has "Nos" as UoM. You may change as required for each invoice item.',
|
||||||
get_query: function(doc) {
|
get_query: function(doc) {
|
||||||
return {
|
return {
|
||||||
filters: { patient: dialog.get_value("patient"), docstatus: 1 }
|
filters: {
|
||||||
|
patient: dialog.get_value("patient"),
|
||||||
|
company: frm.doc.company,
|
||||||
|
docstatus: 1
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"actions": [],
|
||||||
"allow_events_in_timeline": 1,
|
"allow_events_in_timeline": 1,
|
||||||
"allow_import": 1,
|
"allow_import": 1,
|
||||||
"autoname": "naming_series:",
|
"autoname": "naming_series:",
|
||||||
@@ -447,7 +448,7 @@
|
|||||||
"idx": 5,
|
"idx": 5,
|
||||||
"image_field": "image",
|
"image_field": "image",
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2020-04-08 22:26:11.687110",
|
"modified": "2020-05-11 20:27:45.868960",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "CRM",
|
"module": "CRM",
|
||||||
"name": "Lead",
|
"name": "Lead",
|
||||||
@@ -504,15 +505,6 @@
|
|||||||
"read": 1,
|
"read": 1,
|
||||||
"report": 1,
|
"report": 1,
|
||||||
"role": "Sales User"
|
"role": "Sales User"
|
||||||
},
|
|
||||||
{
|
|
||||||
"email": 1,
|
|
||||||
"export": 1,
|
|
||||||
"print": 1,
|
|
||||||
"read": 1,
|
|
||||||
"report": 1,
|
|
||||||
"role": "Guest",
|
|
||||||
"share": 1
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"search_fields": "lead_name,lead_owner,status",
|
"search_fields": "lead_name,lead_owner,status",
|
||||||
|
|||||||
@@ -43,7 +43,8 @@ frappe.ui.form.on('Clinical Procedure', {
|
|||||||
return {
|
return {
|
||||||
filters: {
|
filters: {
|
||||||
'is_group': false,
|
'is_group': false,
|
||||||
'allow_appointments': true
|
'allow_appointments': true,
|
||||||
|
'company': frm.doc.company
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
@@ -158,11 +159,13 @@ frappe.ui.form.on('Clinical Procedure', {
|
|||||||
age = __('{0} as on {1}', [age, data.message.age_as_on]);
|
age = __('{0} as on {1}', [age, data.message.age_as_on]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
frm.set_value('patient_name', data.message.patient_name);
|
||||||
frm.set_value('patient_age', age);
|
frm.set_value('patient_age', age);
|
||||||
frm.set_value('patient_sex', data.message.sex);
|
frm.set_value('patient_sex', data.message.sex);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
frm.set_value('patient_name', '');
|
||||||
frm.set_value('patient_age', '');
|
frm.set_value('patient_age', '');
|
||||||
frm.set_value('patient_sex', '');
|
frm.set_value('patient_sex', '');
|
||||||
}
|
}
|
||||||
@@ -177,15 +180,35 @@ frappe.ui.form.on('Clinical Procedure', {
|
|||||||
name: frm.doc.appointment
|
name: frm.doc.appointment
|
||||||
},
|
},
|
||||||
callback: function(data) {
|
callback: function(data) {
|
||||||
frm.set_value('patient', data.message.patient);
|
let values = {
|
||||||
frm.set_value('procedure_template', data.message.procedure_template);
|
'patient':data.message.patient,
|
||||||
frm.set_value('medical_department', data.message.department);
|
'procedure_template': data.message.procedure_template,
|
||||||
frm.set_value('start_date', data.message.appointment_date);
|
'medical_department': data.message.department,
|
||||||
frm.set_value('start_time', data.message.appointment_time);
|
'practitioner': data.message.practitioner,
|
||||||
frm.set_value('notes', data.message.notes);
|
'start_date': data.message.appointment_date,
|
||||||
frm.set_value('service_unit', data.message.service_unit);
|
'start_time': data.message.appointment_time,
|
||||||
|
'notes': data.message.notes,
|
||||||
|
'service_unit': data.message.service_unit,
|
||||||
|
'company': data.message.company
|
||||||
|
};
|
||||||
|
frm.set_value(values);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
let values = {
|
||||||
|
'patient': '',
|
||||||
|
'patient_name': '',
|
||||||
|
'patient_sex': '',
|
||||||
|
'patient_age': '',
|
||||||
|
'medical_department': '',
|
||||||
|
'procedure_template': '',
|
||||||
|
'start_date': '',
|
||||||
|
'start_time': '',
|
||||||
|
'notes': '',
|
||||||
|
'service_unit': '',
|
||||||
|
'inpatient_record': ''
|
||||||
|
};
|
||||||
|
frm.set_value(values);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -234,9 +257,11 @@ frappe.ui.form.on('Clinical Procedure', {
|
|||||||
name: frm.doc.practitioner
|
name: frm.doc.practitioner
|
||||||
},
|
},
|
||||||
callback: function (data) {
|
callback: function (data) {
|
||||||
frappe.model.set_value(frm.doctype,frm.docname, 'medical_department',data.message.department);
|
frappe.model.set_value(frm.doctype,frm.docname, 'practitioner_name', data.message.practitioner_name);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
frappe.model.set_value(frm.doctype,frm.docname, 'practitioner_name', '');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -284,14 +309,6 @@ frappe.ui.form.on('Clinical Procedure', {
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
cur_frm.set_query('procedure_template', function(doc) {
|
|
||||||
return {
|
|
||||||
filters: {
|
|
||||||
'medical_department': doc.medical_department
|
|
||||||
}
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
frappe.ui.form.on('Clinical Procedure Item', {
|
frappe.ui.form.on('Clinical Procedure Item', {
|
||||||
qty: function(frm, cdt, cdn) {
|
qty: function(frm, cdt, cdn) {
|
||||||
let d = locals[cdt][cdn];
|
let d = locals[cdt][cdn];
|
||||||
|
|||||||
@@ -7,28 +7,32 @@
|
|||||||
"editable_grid": 1,
|
"editable_grid": 1,
|
||||||
"engine": "InnoDB",
|
"engine": "InnoDB",
|
||||||
"field_order": [
|
"field_order": [
|
||||||
"inpatient_record",
|
|
||||||
"naming_series",
|
"naming_series",
|
||||||
"procedure_template",
|
"title",
|
||||||
"appointment",
|
"appointment",
|
||||||
|
"procedure_template",
|
||||||
|
"column_break_30",
|
||||||
|
"company",
|
||||||
|
"invoiced",
|
||||||
|
"section_break_6",
|
||||||
"patient",
|
"patient",
|
||||||
|
"patient_name",
|
||||||
"patient_sex",
|
"patient_sex",
|
||||||
"patient_age",
|
"patient_age",
|
||||||
"prescription",
|
"inpatient_record",
|
||||||
"medical_department",
|
"notes",
|
||||||
"practitioner",
|
|
||||||
"column_break_7",
|
"column_break_7",
|
||||||
"status",
|
"status",
|
||||||
|
"practitioner",
|
||||||
|
"practitioner_name",
|
||||||
|
"medical_department",
|
||||||
"service_unit",
|
"service_unit",
|
||||||
"warehouse",
|
|
||||||
"start_date",
|
"start_date",
|
||||||
"start_time",
|
"start_time",
|
||||||
"sample",
|
"sample",
|
||||||
"invoiced",
|
|
||||||
"notes",
|
|
||||||
"company",
|
|
||||||
"consumables_section",
|
"consumables_section",
|
||||||
"consume_stock",
|
"consume_stock",
|
||||||
|
"warehouse",
|
||||||
"items",
|
"items",
|
||||||
"section_break_24",
|
"section_break_24",
|
||||||
"invoice_separately_as_consumables",
|
"invoice_separately_as_consumables",
|
||||||
@@ -36,6 +40,9 @@
|
|||||||
"consumable_total_amount",
|
"consumable_total_amount",
|
||||||
"column_break_27",
|
"column_break_27",
|
||||||
"consumption_details",
|
"consumption_details",
|
||||||
|
"sb_refs",
|
||||||
|
"column_break_34",
|
||||||
|
"prescription",
|
||||||
"amended_from"
|
"amended_from"
|
||||||
],
|
],
|
||||||
"fields": [
|
"fields": [
|
||||||
@@ -56,15 +63,15 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "appointment",
|
"fieldname": "appointment",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"in_list_view": 1,
|
"in_standard_filter": 1,
|
||||||
"label": "Appointment",
|
"label": "Appointment",
|
||||||
"options": "Patient Appointment"
|
"options": "Patient Appointment",
|
||||||
|
"set_only_once": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fetch_from": "inpatient_record.patient",
|
|
||||||
"fieldname": "patient",
|
"fieldname": "patient",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"in_list_view": 1,
|
"in_standard_filter": 1,
|
||||||
"label": "Patient",
|
"label": "Patient",
|
||||||
"options": "Patient",
|
"options": "Patient",
|
||||||
"reqd": 1
|
"reqd": 1
|
||||||
@@ -88,17 +95,20 @@
|
|||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"hidden": 1,
|
"hidden": 1,
|
||||||
"label": "Procedure Prescription",
|
"label": "Procedure Prescription",
|
||||||
"options": "Procedure Prescription"
|
"options": "Procedure Prescription",
|
||||||
|
"read_only": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "medical_department",
|
"fieldname": "medical_department",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
|
"in_standard_filter": 1,
|
||||||
"label": "Medical Department",
|
"label": "Medical Department",
|
||||||
"options": "Medical Department"
|
"options": "Medical Department"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "practitioner",
|
"fieldname": "practitioner",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
|
"in_standard_filter": 1,
|
||||||
"label": "Healthcare Practitioner",
|
"label": "Healthcare Practitioner",
|
||||||
"options": "Healthcare Practitioner"
|
"options": "Healthcare Practitioner"
|
||||||
},
|
},
|
||||||
@@ -208,6 +218,7 @@
|
|||||||
"read_only": 1
|
"read_only": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"depends_on": "eval:!doc.__islocal",
|
||||||
"fieldname": "status",
|
"fieldname": "status",
|
||||||
"fieldtype": "Select",
|
"fieldtype": "Select",
|
||||||
"in_list_view": 1,
|
"in_list_view": 1,
|
||||||
@@ -226,6 +237,8 @@
|
|||||||
"read_only": 1
|
"read_only": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"collapsible": 1,
|
||||||
|
"collapsible_depends_on": "consume_stock",
|
||||||
"fieldname": "consumables_section",
|
"fieldname": "consumables_section",
|
||||||
"fieldtype": "Section Break",
|
"fieldtype": "Section Break",
|
||||||
"label": "Consumables"
|
"label": "Consumables"
|
||||||
@@ -237,11 +250,51 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "section_break_24",
|
"fieldname": "section_break_24",
|
||||||
"fieldtype": "Section Break"
|
"fieldtype": "Section Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "column_break_30",
|
||||||
|
"fieldtype": "Column Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "section_break_6",
|
||||||
|
"fieldtype": "Section Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"collapsible": 1,
|
||||||
|
"fieldname": "sb_refs",
|
||||||
|
"fieldtype": "Section Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "patient_name",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "Patient Name",
|
||||||
|
"read_only": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "practitioner_name",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Practitioner Name",
|
||||||
|
"read_only": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "column_break_34",
|
||||||
|
"fieldtype": "Column Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"allow_on_submit": 1,
|
||||||
|
"fieldname": "title",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"hidden": 1,
|
||||||
|
"label": "Title",
|
||||||
|
"no_copy": 1,
|
||||||
|
"print_hide": 1,
|
||||||
|
"read_only": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"is_submittable": 1,
|
"is_submittable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2020-03-02 11:44:27.970651",
|
"modified": "2020-04-27 21:36:23.796924",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Healthcare",
|
"module": "Healthcare",
|
||||||
"name": "Clinical Procedure",
|
"name": "Clinical Procedure",
|
||||||
@@ -257,11 +310,27 @@
|
|||||||
"report": 1,
|
"report": 1,
|
||||||
"role": "Nursing User",
|
"role": "Nursing User",
|
||||||
"share": 1,
|
"share": 1,
|
||||||
|
"submit": 1,
|
||||||
|
"write": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cancel": 1,
|
||||||
|
"create": 1,
|
||||||
|
"delete": 1,
|
||||||
|
"email": 1,
|
||||||
|
"export": 1,
|
||||||
|
"print": 1,
|
||||||
|
"read": 1,
|
||||||
|
"report": 1,
|
||||||
|
"role": "Physician",
|
||||||
|
"share": 1,
|
||||||
|
"submit": 1,
|
||||||
"write": 1
|
"write": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"restrict_to_domain": "Healthcare",
|
"restrict_to_domain": "Healthcare",
|
||||||
"sort_field": "modified",
|
"sort_field": "modified",
|
||||||
"sort_order": "DESC",
|
"sort_order": "DESC",
|
||||||
|
"title_field": "title",
|
||||||
"track_changes": 1
|
"track_changes": 1
|
||||||
}
|
}
|
||||||
@@ -16,6 +16,7 @@ from frappe.model.mapper import get_mapped_doc
|
|||||||
class ClinicalProcedure(Document):
|
class ClinicalProcedure(Document):
|
||||||
def validate(self):
|
def validate(self):
|
||||||
self.set_status()
|
self.set_status()
|
||||||
|
self.set_title()
|
||||||
if self.consume_stock:
|
if self.consume_stock:
|
||||||
self.set_actual_qty()
|
self.set_actual_qty()
|
||||||
|
|
||||||
@@ -37,7 +38,7 @@ class ClinicalProcedure(Document):
|
|||||||
template = frappe.get_doc('Clinical Procedure Template', self.procedure_template)
|
template = frappe.get_doc('Clinical Procedure Template', self.procedure_template)
|
||||||
if template.sample:
|
if template.sample:
|
||||||
patient = frappe.get_doc('Patient', self.patient)
|
patient = frappe.get_doc('Patient', self.patient)
|
||||||
sample_collection = create_sample_doc(template, patient, None)
|
sample_collection = create_sample_doc(template, patient, None, self.company)
|
||||||
frappe.db.set_value('Clinical Procedure', self.name, 'sample', sample_collection.name)
|
frappe.db.set_value('Clinical Procedure', self.name, 'sample', sample_collection.name)
|
||||||
self.reload()
|
self.reload()
|
||||||
|
|
||||||
@@ -50,6 +51,9 @@ class ClinicalProcedure(Document):
|
|||||||
elif self.docstatus == 2:
|
elif self.docstatus == 2:
|
||||||
self.status = 'Cancelled'
|
self.status = 'Cancelled'
|
||||||
|
|
||||||
|
def set_title(self):
|
||||||
|
self.title = _('{0} - {1}').format(self.patient_name or self.patient, self.procedure_template)[:100]
|
||||||
|
|
||||||
def complete_procedure(self):
|
def complete_procedure(self):
|
||||||
if self.consume_stock and self.items:
|
if self.consume_stock and self.items:
|
||||||
stock_entry = make_stock_entry(self)
|
stock_entry = make_stock_entry(self)
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
{
|
{
|
||||||
"actions": [],
|
"actions": [],
|
||||||
"allow_copy": 1,
|
|
||||||
"allow_import": 1,
|
"allow_import": 1,
|
||||||
"allow_rename": 1,
|
"allow_rename": 1,
|
||||||
"autoname": "naming_series:",
|
"autoname": "naming_series:",
|
||||||
@@ -51,17 +50,20 @@
|
|||||||
"fieldname": "first_name",
|
"fieldname": "first_name",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"label": "First Name",
|
"label": "First Name",
|
||||||
|
"no_copy": 1,
|
||||||
"reqd": 1
|
"reqd": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "middle_name",
|
"fieldname": "middle_name",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"label": "Middle Name (Optional)"
|
"label": "Middle Name (Optional)",
|
||||||
|
"no_copy": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "last_name",
|
"fieldname": "last_name",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"label": "Last Name"
|
"label": "Last Name",
|
||||||
|
"no_copy": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "image",
|
"fieldname": "image",
|
||||||
@@ -226,6 +228,7 @@
|
|||||||
"in_list_view": 1,
|
"in_list_view": 1,
|
||||||
"in_standard_filter": 1,
|
"in_standard_filter": 1,
|
||||||
"label": "Full Name",
|
"label": "Full Name",
|
||||||
|
"no_copy": 1,
|
||||||
"read_only": 1,
|
"read_only": 1,
|
||||||
"search_index": 1
|
"search_index": 1
|
||||||
},
|
},
|
||||||
@@ -233,6 +236,7 @@
|
|||||||
"fieldname": "naming_series",
|
"fieldname": "naming_series",
|
||||||
"fieldtype": "Select",
|
"fieldtype": "Select",
|
||||||
"label": "Series",
|
"label": "Series",
|
||||||
|
"no_copy": 1,
|
||||||
"options": "HLC-PRAC-.YYYY.-",
|
"options": "HLC-PRAC-.YYYY.-",
|
||||||
"report_hide": 1,
|
"report_hide": 1,
|
||||||
"set_only_once": 1
|
"set_only_once": 1
|
||||||
|
|||||||
@@ -240,7 +240,7 @@
|
|||||||
"label": "Patient Registration"
|
"label": "Patient Registration"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"default": "Hello {{doc.patient}}, Thank you for registering with {{doc.company}}. Your ID is {{doc.id}} . Please note this ID for future reference. \nThank You, Get well soon!",
|
"default": "Hello {{doc.patient}}, Thank you for registering with {{doc.company}}. Your ID is {{doc.name}} . Please note this ID for future reference. \nThank You!",
|
||||||
"depends_on": "send_registration_msg",
|
"depends_on": "send_registration_msg",
|
||||||
"fieldname": "registration_msg",
|
"fieldname": "registration_msg",
|
||||||
"fieldtype": "Small Text",
|
"fieldtype": "Small Text",
|
||||||
@@ -254,7 +254,7 @@
|
|||||||
"label": "Appointment Confirmation"
|
"label": "Appointment Confirmation"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"default": "Hello {{doc.patient}}, You have scheduled an appointment with {{doc.practitioner}} by {{doc.start_dt}} at {{doc.company}}.\nThank you, Good day!",
|
"default": "Hello {{doc.patient}}, You have scheduled an appointment with {{doc.practitioner}} on {{doc.appointment_datetime}} at {{doc.company}}.\nThank you, Good day!",
|
||||||
"depends_on": "send_appointment_confirmation",
|
"depends_on": "send_appointment_confirmation",
|
||||||
"fieldname": "appointment_confirmation_msg",
|
"fieldname": "appointment_confirmation_msg",
|
||||||
"fieldtype": "Small Text",
|
"fieldtype": "Small Text",
|
||||||
@@ -276,7 +276,7 @@
|
|||||||
"label": "Appointment Reminder"
|
"label": "Appointment Reminder"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"default": "Hello {{doc.patient}}, You have an appointment with {{doc.practitioner}} by {{doc.appointment_time}} at {{doc.company}}.\nThank you, Good day!\n",
|
"default": "Hello {{doc.patient}}, You have an appointment with {{doc.practitioner}} by {{doc.appointment_datetime}} at {{doc.company}}.\nThank you, Good day!\n",
|
||||||
"depends_on": "send_appointment_reminder",
|
"depends_on": "send_appointment_reminder",
|
||||||
"fieldname": "appointment_reminder_msg",
|
"fieldname": "appointment_reminder_msg",
|
||||||
"fieldtype": "Small Text",
|
"fieldtype": "Small Text",
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,6 @@ import unittest
|
|||||||
from frappe.utils import now_datetime, today
|
from frappe.utils import now_datetime, today
|
||||||
from frappe.utils.make_random import get_random
|
from frappe.utils.make_random import get_random
|
||||||
from erpnext.healthcare.doctype.inpatient_record.inpatient_record import admit_patient, discharge_patient, schedule_discharge
|
from erpnext.healthcare.doctype.inpatient_record.inpatient_record import admit_patient, discharge_patient, schedule_discharge
|
||||||
from erpnext.healthcare.doctype.patient_appointment.test_patient_appointment import create_patient
|
|
||||||
|
|
||||||
class TestInpatientRecord(unittest.TestCase):
|
class TestInpatientRecord(unittest.TestCase):
|
||||||
def test_admit_and_discharge(self):
|
def test_admit_and_discharge(self):
|
||||||
@@ -112,3 +111,13 @@ def get_service_unit_type():
|
|||||||
service_unit_type.save(ignore_permissions = True)
|
service_unit_type.save(ignore_permissions = True)
|
||||||
return service_unit_type.name
|
return service_unit_type.name
|
||||||
return service_unit_type
|
return service_unit_type
|
||||||
|
|
||||||
|
def create_patient():
|
||||||
|
patient = frappe.db.exists('Patient', '_Test IPD Patient')
|
||||||
|
if not patient:
|
||||||
|
patient = frappe.new_doc('Patient')
|
||||||
|
patient.first_name = '_Test IPD Patient'
|
||||||
|
patient.sex = 'Female'
|
||||||
|
patient.save(ignore_permissions=True)
|
||||||
|
patient = patient.name
|
||||||
|
return patient
|
||||||
|
|||||||
@@ -137,13 +137,13 @@ var get_lab_test_prescribed = function(frm){
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
frappe.msgprint(__("Please select Patient to get Lab Tests"));
|
frappe.msgprint(__("Please select a Patient to get Lab Tests"));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var show_lab_tests = function(frm, result){
|
var show_lab_tests = function(frm, result){
|
||||||
var d = new frappe.ui.Dialog({
|
var d = new frappe.ui.Dialog({
|
||||||
title: __("Lab Test Prescriptions"),
|
title: __("Lab Tests"),
|
||||||
fields: [
|
fields: [
|
||||||
{
|
{
|
||||||
fieldtype: "HTML", fieldname: "lab_test"
|
fieldtype: "HTML", fieldname: "lab_test"
|
||||||
@@ -161,7 +161,7 @@ var show_lab_tests = function(frm, result){
|
|||||||
<div class="col-xs-1">\
|
<div class="col-xs-1">\
|
||||||
<a data-name="%(name)s" data-lab-test="%(lab_test)s"\
|
<a data-name="%(name)s" data-lab-test="%(lab_test)s"\
|
||||||
data-encounter="%(encounter)s" data-practitioner="%(practitioner)s"\
|
data-encounter="%(encounter)s" data-practitioner="%(practitioner)s"\
|
||||||
data-invoiced="%(invoiced)s" href="#"><button class="btn btn-default btn-xs">Get Lab Test\
|
data-invoiced="%(invoiced)s" href="#"><button class="btn btn-default btn-xs">Get Lab Tests\
|
||||||
</button></a></div></div>', {name:y[0], lab_test: y[1], encounter:y[2], invoiced:y[3], practitioner:y[4], date:y[5]})).appendTo(html_field);
|
</button></a></div></div>', {name:y[0], lab_test: y[1], encounter:y[2], invoiced:y[3], practitioner:y[4], date:y[5]})).appendTo(html_field);
|
||||||
row.find("a").click(function() {
|
row.find("a").click(function() {
|
||||||
frm.doc.template = $(this).attr("data-lab-test");
|
frm.doc.template = $(this).attr("data-lab-test");
|
||||||
@@ -180,9 +180,10 @@ var show_lab_tests = function(frm, result){
|
|||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
if(!result){
|
if(!result.length){
|
||||||
var msg = "There are no Lab Test prescribed for "+frm.doc.patient;
|
var msg = __("No Lab Tests found for the Patient {0}", [frm.doc.patient_name.bold()]);
|
||||||
$(repl('<div class="col-xs-12" style="padding-top:20px;" >%(msg)s</div></div>', {msg: msg})).appendTo(html_field);
|
html_field.empty();
|
||||||
|
$(repl('<div class="col-xs-12" style="padding-top:0px;" >%(msg)s</div>', {msg: msg})).appendTo(html_field);
|
||||||
}
|
}
|
||||||
d.show();
|
d.show();
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -9,18 +9,18 @@
|
|||||||
"document_type": "Document",
|
"document_type": "Document",
|
||||||
"engine": "InnoDB",
|
"engine": "InnoDB",
|
||||||
"field_order": [
|
"field_order": [
|
||||||
"inpatient_record",
|
|
||||||
"naming_series",
|
"naming_series",
|
||||||
"invoiced",
|
|
||||||
"patient",
|
"patient",
|
||||||
"patient_name",
|
"patient_name",
|
||||||
"patient_age",
|
"patient_age",
|
||||||
"patient_sex",
|
"patient_sex",
|
||||||
"practitioner",
|
"report_preference",
|
||||||
"email",
|
"email",
|
||||||
"mobile",
|
"mobile",
|
||||||
"company",
|
"practitioner",
|
||||||
"c_b",
|
"c_b",
|
||||||
|
"inpatient_record",
|
||||||
|
"company",
|
||||||
"department",
|
"department",
|
||||||
"status",
|
"status",
|
||||||
"submitted_date",
|
"submitted_date",
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
"employee_name",
|
"employee_name",
|
||||||
"employee_designation",
|
"employee_designation",
|
||||||
"user",
|
"user",
|
||||||
"report_preference",
|
"invoiced",
|
||||||
"sb_first",
|
"sb_first",
|
||||||
"lab_test_name",
|
"lab_test_name",
|
||||||
"column_break_26",
|
"column_break_26",
|
||||||
@@ -153,7 +153,7 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "company",
|
"fieldname": "company",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"hidden": 1,
|
"in_standard_filter": 1,
|
||||||
"label": "Company",
|
"label": "Company",
|
||||||
"options": "Company",
|
"options": "Company",
|
||||||
"print_hide": 1,
|
"print_hide": 1,
|
||||||
@@ -168,6 +168,7 @@
|
|||||||
"fieldname": "department",
|
"fieldname": "department",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"ignore_user_permissions": 1,
|
"ignore_user_permissions": 1,
|
||||||
|
"in_standard_filter": 1,
|
||||||
"label": "Department",
|
"label": "Department",
|
||||||
"options": "Medical Department",
|
"options": "Medical Department",
|
||||||
"search_index": 1
|
"search_index": 1
|
||||||
@@ -427,7 +428,7 @@
|
|||||||
],
|
],
|
||||||
"is_submittable": 1,
|
"is_submittable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2020-03-23 19:37:06.617764",
|
"modified": "2020-04-04 19:16:29.131168",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Healthcare",
|
"module": "Healthcare",
|
||||||
"name": "Lab Test",
|
"name": "Lab Test",
|
||||||
|
|||||||
@@ -69,9 +69,9 @@ def create_multiple(doctype, docname):
|
|||||||
lab_test_created = create_lab_test_from_encounter(docname)
|
lab_test_created = create_lab_test_from_encounter(docname)
|
||||||
|
|
||||||
if lab_test_created:
|
if lab_test_created:
|
||||||
frappe.msgprint(_("Lab Test(s) "+lab_test_created+" created."))
|
frappe.msgprint(_("Lab Test(s) {0} created".format(lab_test_created)))
|
||||||
else:
|
else:
|
||||||
frappe.msgprint(_("No Lab Test created"))
|
frappe.msgprint(_("No Lab Tests created"))
|
||||||
|
|
||||||
def create_lab_test_from_encounter(encounter_id):
|
def create_lab_test_from_encounter(encounter_id):
|
||||||
lab_test_created = False
|
lab_test_created = False
|
||||||
@@ -87,7 +87,7 @@ def create_lab_test_from_encounter(encounter_id):
|
|||||||
for lab_test_id in lab_test_ids:
|
for lab_test_id in lab_test_ids:
|
||||||
template = get_lab_test_template(lab_test_id[1])
|
template = get_lab_test_template(lab_test_id[1])
|
||||||
if template:
|
if template:
|
||||||
lab_test = create_lab_test_doc(lab_test_id[2], encounter.practitioner, patient, template)
|
lab_test = create_lab_test_doc(lab_test_id[2], encounter.practitioner, patient, template, encounter.company)
|
||||||
lab_test.save(ignore_permissions = True)
|
lab_test.save(ignore_permissions = True)
|
||||||
frappe.db.set_value("Lab Prescription", lab_test_id[0], "lab_test_created", 1)
|
frappe.db.set_value("Lab Prescription", lab_test_id[0], "lab_test_created", 1)
|
||||||
if not lab_test_created:
|
if not lab_test_created:
|
||||||
@@ -111,7 +111,7 @@ def create_lab_test_from_invoice(invoice_name):
|
|||||||
if lab_test_created != 1:
|
if lab_test_created != 1:
|
||||||
template = get_lab_test_template(item.item_code)
|
template = get_lab_test_template(item.item_code)
|
||||||
if template:
|
if template:
|
||||||
lab_test = create_lab_test_doc(True, invoice.ref_practitioner, patient, template)
|
lab_test = create_lab_test_doc(True, invoice.ref_practitioner, patient, template, invoice.company)
|
||||||
if item.reference_dt == "Lab Prescription":
|
if item.reference_dt == "Lab Prescription":
|
||||||
lab_test.prescription = item.reference_dn
|
lab_test.prescription = item.reference_dn
|
||||||
lab_test.save(ignore_permissions = True)
|
lab_test.save(ignore_permissions = True)
|
||||||
@@ -121,7 +121,7 @@ def create_lab_test_from_invoice(invoice_name):
|
|||||||
if not lab_tests_created:
|
if not lab_tests_created:
|
||||||
lab_tests_created = lab_test.name
|
lab_tests_created = lab_test.name
|
||||||
else:
|
else:
|
||||||
lab_tests_created += ", "+lab_test.name
|
lab_tests_created += ", " + lab_test.name
|
||||||
return lab_tests_created
|
return lab_tests_created
|
||||||
|
|
||||||
def get_lab_test_template(item):
|
def get_lab_test_template(item):
|
||||||
@@ -141,7 +141,7 @@ def check_template_exists(item):
|
|||||||
return template_exists
|
return template_exists
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def create_lab_test_doc(invoiced, practitioner, patient, template):
|
def create_lab_test_doc(invoiced, practitioner, patient, template, company):
|
||||||
lab_test = frappe.new_doc("Lab Test")
|
lab_test = frappe.new_doc("Lab Test")
|
||||||
lab_test.invoiced = invoiced
|
lab_test.invoiced = invoiced
|
||||||
lab_test.practitioner = practitioner
|
lab_test.practitioner = practitioner
|
||||||
@@ -150,11 +150,12 @@ def create_lab_test_doc(invoiced, practitioner, patient, template):
|
|||||||
lab_test.patient_sex = patient.sex
|
lab_test.patient_sex = patient.sex
|
||||||
lab_test.email = patient.email
|
lab_test.email = patient.email
|
||||||
lab_test.mobile = patient.mobile
|
lab_test.mobile = patient.mobile
|
||||||
|
lab_test.report_preference = patient.report_preference
|
||||||
lab_test.department = template.department
|
lab_test.department = template.department
|
||||||
lab_test.template = template.name
|
lab_test.template = template.name
|
||||||
lab_test.lab_test_group = template.lab_test_group
|
lab_test.lab_test_group = template.lab_test_group
|
||||||
lab_test.result_date = getdate()
|
lab_test.result_date = getdate()
|
||||||
lab_test.report_preference = patient.report_preference
|
lab_test.company = company
|
||||||
return lab_test
|
return lab_test
|
||||||
|
|
||||||
def create_normals(template, lab_test):
|
def create_normals(template, lab_test):
|
||||||
@@ -190,7 +191,7 @@ def create_specials(template, lab_test):
|
|||||||
special.require_result_value = 1
|
special.require_result_value = 1
|
||||||
special.template = template.name
|
special.template = template.name
|
||||||
|
|
||||||
def create_sample_doc(template, patient, invoice):
|
def create_sample_doc(template, patient, invoice, company = None):
|
||||||
if template.sample:
|
if template.sample:
|
||||||
sample_exists = frappe.db.exists({
|
sample_exists = frappe.db.exists({
|
||||||
"doctype": "Sample Collection",
|
"doctype": "Sample Collection",
|
||||||
@@ -221,6 +222,8 @@ def create_sample_doc(template, patient, invoice):
|
|||||||
sample_collection.sample = template.sample
|
sample_collection.sample = template.sample
|
||||||
sample_collection.sample_uom = template.sample_uom
|
sample_collection.sample_uom = template.sample_uom
|
||||||
sample_collection.sample_qty = template.sample_qty
|
sample_collection.sample_qty = template.sample_qty
|
||||||
|
sample_collection.company = company
|
||||||
|
|
||||||
if(template.sample_details):
|
if(template.sample_details):
|
||||||
sample_collection.sample_details = "Test :" + (template.get("lab_test_name") or template.get("template")) +"\n"+"Collection Detials:\n\t"+template.sample_details
|
sample_collection.sample_details = "Test :" + (template.get("lab_test_name") or template.get("template")) +"\n"+"Collection Detials:\n\t"+template.sample_details
|
||||||
sample_collection.save(ignore_permissions=True)
|
sample_collection.save(ignore_permissions=True)
|
||||||
@@ -229,7 +232,7 @@ def create_sample_doc(template, patient, invoice):
|
|||||||
|
|
||||||
def create_sample_collection(lab_test, template, patient, invoice):
|
def create_sample_collection(lab_test, template, patient, invoice):
|
||||||
if(frappe.db.get_value("Healthcare Settings", None, "create_sample_collection_for_lab_test") == "1"):
|
if(frappe.db.get_value("Healthcare Settings", None, "create_sample_collection_for_lab_test") == "1"):
|
||||||
sample_collection = create_sample_doc(template, patient, invoice)
|
sample_collection = create_sample_doc(template, patient, invoice, lab_test.company)
|
||||||
if(sample_collection):
|
if(sample_collection):
|
||||||
lab_test.sample = sample_collection.name
|
lab_test.sample = sample_collection.name
|
||||||
return lab_test
|
return lab_test
|
||||||
|
|||||||
@@ -10,6 +10,8 @@ frappe.ui.form.on('Patient', {
|
|||||||
]
|
]
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
frm.set_query('customer_group', {'is_group': 0});
|
||||||
|
frm.set_query('default_price_list', { 'selling': 1});
|
||||||
|
|
||||||
if (frappe.defaults.get_default('patient_name_by') != 'Naming Series') {
|
if (frappe.defaults.get_default('patient_name_by') != 'Naming Series') {
|
||||||
frm.toggle_display('naming_series', false);
|
frm.toggle_display('naming_series', false);
|
||||||
@@ -40,6 +42,7 @@ frappe.ui.form.on('Patient', {
|
|||||||
frm.add_custom_button(__('Patient Encounter'), function () {
|
frm.add_custom_button(__('Patient Encounter'), function () {
|
||||||
create_encounter(frm);
|
create_encounter(frm);
|
||||||
}, 'Create');
|
}, 'Create');
|
||||||
|
frm.toggle_enable(['customer'], 0); // ToDo, allow change only if no transactions booked or better, add merge option
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onload: function (frm) {
|
onload: function (frm) {
|
||||||
|
|||||||
@@ -24,13 +24,20 @@
|
|||||||
"image",
|
"image",
|
||||||
"column_break_14",
|
"column_break_14",
|
||||||
"status",
|
"status",
|
||||||
"inpatient_status",
|
|
||||||
"inpatient_record",
|
"inpatient_record",
|
||||||
"customer",
|
"inpatient_status",
|
||||||
|
"report_preference",
|
||||||
"mobile",
|
"mobile",
|
||||||
"email",
|
"email",
|
||||||
"phone",
|
"phone",
|
||||||
"report_preference",
|
"customer_details_section",
|
||||||
|
"customer",
|
||||||
|
"customer_group",
|
||||||
|
"territory",
|
||||||
|
"column_break_24",
|
||||||
|
"default_currency",
|
||||||
|
"default_price_list",
|
||||||
|
"language",
|
||||||
"personal_and_social_history",
|
"personal_and_social_history",
|
||||||
"occupation",
|
"occupation",
|
||||||
"column_break_25",
|
"column_break_25",
|
||||||
@@ -52,9 +59,7 @@
|
|||||||
"surrounding_factors",
|
"surrounding_factors",
|
||||||
"other_risk_factors",
|
"other_risk_factors",
|
||||||
"more_info",
|
"more_info",
|
||||||
"patient_details",
|
"patient_details"
|
||||||
"ac_sb",
|
|
||||||
"default_currency"
|
|
||||||
],
|
],
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
@@ -67,6 +72,7 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "inpatient_status",
|
"fieldname": "inpatient_status",
|
||||||
"fieldtype": "Select",
|
"fieldtype": "Select",
|
||||||
|
"in_preview": 1,
|
||||||
"label": "Inpatient Status",
|
"label": "Inpatient Status",
|
||||||
"options": "\nAdmission Scheduled\nAdmitted\nDischarge Scheduled",
|
"options": "\nAdmission Scheduled\nAdmitted\nDischarge Scheduled",
|
||||||
"read_only": 1
|
"read_only": 1
|
||||||
@@ -101,6 +107,7 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "sex",
|
"fieldname": "sex",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
|
"in_preview": 1,
|
||||||
"label": "Gender",
|
"label": "Gender",
|
||||||
"options": "Gender",
|
"options": "Gender",
|
||||||
"reqd": 1
|
"reqd": 1
|
||||||
@@ -109,6 +116,7 @@
|
|||||||
"bold": 1,
|
"bold": 1,
|
||||||
"fieldname": "blood_group",
|
"fieldname": "blood_group",
|
||||||
"fieldtype": "Select",
|
"fieldtype": "Select",
|
||||||
|
"in_preview": 1,
|
||||||
"label": "Blood Group",
|
"label": "Blood Group",
|
||||||
"options": "\nA Positive\nA Negative\nAB Positive\nAB Negative\nB Positive\nB Negative\nO Positive\nO Negative"
|
"options": "\nA Positive\nA Negative\nAB Positive\nAB Negative\nB Positive\nB Negative\nO Positive\nO Negative"
|
||||||
},
|
},
|
||||||
@@ -116,6 +124,7 @@
|
|||||||
"bold": 1,
|
"bold": 1,
|
||||||
"fieldname": "dob",
|
"fieldname": "dob",
|
||||||
"fieldtype": "Date",
|
"fieldtype": "Date",
|
||||||
|
"in_preview": 1,
|
||||||
"label": "Date of birth"
|
"label": "Date of birth"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -142,6 +151,7 @@
|
|||||||
"fieldname": "image",
|
"fieldname": "image",
|
||||||
"fieldtype": "Attach Image",
|
"fieldtype": "Attach Image",
|
||||||
"hidden": 1,
|
"hidden": 1,
|
||||||
|
"in_preview": 1,
|
||||||
"label": "Image",
|
"label": "Image",
|
||||||
"no_copy": 1,
|
"no_copy": 1,
|
||||||
"print_hide": 1,
|
"print_hide": 1,
|
||||||
@@ -157,7 +167,8 @@
|
|||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"ignore_user_permissions": 1,
|
"ignore_user_permissions": 1,
|
||||||
"label": "Customer",
|
"label": "Customer",
|
||||||
"options": "Customer"
|
"options": "Customer",
|
||||||
|
"set_only_once": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "report_preference",
|
"fieldname": "report_preference",
|
||||||
@@ -171,7 +182,8 @@
|
|||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"in_list_view": 1,
|
"in_list_view": 1,
|
||||||
"in_standard_filter": 1,
|
"in_standard_filter": 1,
|
||||||
"label": "Mobile"
|
"label": "Mobile",
|
||||||
|
"options": "Phone"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bold": 1,
|
"bold": 1,
|
||||||
@@ -186,7 +198,8 @@
|
|||||||
"fieldname": "phone",
|
"fieldname": "phone",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"in_filter": 1,
|
"in_filter": 1,
|
||||||
"label": "Phone"
|
"label": "Phone",
|
||||||
|
"options": "Phone"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"collapsible": 1,
|
"collapsible": 1,
|
||||||
@@ -268,25 +281,25 @@
|
|||||||
"fieldname": "tobacco_past_use",
|
"fieldname": "tobacco_past_use",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"ignore_xss_filter": 1,
|
"ignore_xss_filter": 1,
|
||||||
"label": "Tobacco Consumption Habbits (Past)"
|
"label": "Tobacco Consumption (Past)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "tobacco_current_use",
|
"fieldname": "tobacco_current_use",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"ignore_xss_filter": 1,
|
"ignore_xss_filter": 1,
|
||||||
"label": "Tobacco Consumption Habbits (Present)"
|
"label": "Tobacco Consumption (Present)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "alcohol_past_use",
|
"fieldname": "alcohol_past_use",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"ignore_xss_filter": 1,
|
"ignore_xss_filter": 1,
|
||||||
"label": "Alcohol Consumption Habbits (Past)"
|
"label": "Alcohol Consumption (Past)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "alcohol_current_use",
|
"fieldname": "alcohol_current_use",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"ignore_user_permissions": 1,
|
"ignore_user_permissions": 1,
|
||||||
"label": "Alcohol Consumption Habbits (Present)"
|
"label": "Alcohol Consumption (Present)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "column_break_32",
|
"fieldname": "column_break_32",
|
||||||
@@ -320,20 +333,11 @@
|
|||||||
"ignore_xss_filter": 1,
|
"ignore_xss_filter": 1,
|
||||||
"label": "Patient Details"
|
"label": "Patient Details"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"collapsible": 1,
|
|
||||||
"fieldname": "ac_sb",
|
|
||||||
"fieldtype": "Section Break",
|
|
||||||
"label": "Account Details"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"fieldname": "default_currency",
|
"fieldname": "default_currency",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"hidden": 1,
|
"label": "Billing Currency",
|
||||||
"ignore_xss_filter": 1,
|
"options": "Currency"
|
||||||
"label": "Default Currency",
|
|
||||||
"options": "Currency",
|
|
||||||
"print_hide": 1
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "last_name",
|
"fieldname": "last_name",
|
||||||
@@ -351,13 +355,47 @@
|
|||||||
"fieldname": "middle_name",
|
"fieldname": "middle_name",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"label": "Middle Name (optional)"
|
"label": "Middle Name (optional)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"collapsible": 1,
|
||||||
|
"fieldname": "customer_details_section",
|
||||||
|
"fieldtype": "Section Break",
|
||||||
|
"label": "Customer Details"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "customer_group",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"label": "Customer Group",
|
||||||
|
"options": "Customer Group"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "territory",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"label": "Territory",
|
||||||
|
"options": "Territory"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "column_break_24",
|
||||||
|
"fieldtype": "Column Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "default_price_list",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"label": "Default Price List",
|
||||||
|
"options": "Price List"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "language",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"label": "Print Language",
|
||||||
|
"options": "Language"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"icon": "fa fa-user",
|
"icon": "fa fa-user",
|
||||||
"image_field": "image",
|
"image_field": "image",
|
||||||
"links": [],
|
"links": [],
|
||||||
"max_attachments": 50,
|
"max_attachments": 50,
|
||||||
"modified": "2020-04-06 12:55:30.807744",
|
"modified": "2020-04-25 17:24:32.146415",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Healthcare",
|
"module": "Healthcare",
|
||||||
"name": "Patient",
|
"name": "Patient",
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ from frappe.utils import cint, cstr, getdate
|
|||||||
import dateutil
|
import dateutil
|
||||||
from frappe.model.naming import set_name_by_naming_series
|
from frappe.model.naming import set_name_by_naming_series
|
||||||
from frappe.utils.nestedset import get_root_of
|
from frappe.utils.nestedset import get_root_of
|
||||||
|
from erpnext import get_default_currency
|
||||||
from erpnext.healthcare.doctype.healthcare_settings.healthcare_settings import get_receivable_account, get_income_account, send_registration_sms
|
from erpnext.healthcare.doctype.healthcare_settings.healthcare_settings import get_receivable_account, get_income_account, send_registration_sms
|
||||||
|
|
||||||
class Patient(Document):
|
class Patient(Document):
|
||||||
@@ -17,6 +18,9 @@ class Patient(Document):
|
|||||||
self.set_full_name()
|
self.set_full_name()
|
||||||
self.add_as_website_user()
|
self.add_as_website_user()
|
||||||
|
|
||||||
|
def before_insert(self):
|
||||||
|
self.set_missing_customer_details()
|
||||||
|
|
||||||
def after_insert(self):
|
def after_insert(self):
|
||||||
self.add_as_website_user()
|
self.add_as_website_user()
|
||||||
self.reload()
|
self.reload()
|
||||||
@@ -26,6 +30,25 @@ class Patient(Document):
|
|||||||
frappe.db.set_value('Patient', self.name, 'status', 'Disabled')
|
frappe.db.set_value('Patient', self.name, 'status', 'Disabled')
|
||||||
else:
|
else:
|
||||||
send_registration_sms(self)
|
send_registration_sms(self)
|
||||||
|
self.reload() # self.notify_update()
|
||||||
|
|
||||||
|
def on_update(self):
|
||||||
|
if self.customer:
|
||||||
|
customer = frappe.get_doc('Customer', self.customer)
|
||||||
|
if self.customer_group:
|
||||||
|
customer.customer_group = self.customer_group
|
||||||
|
if self.territory:
|
||||||
|
customer.territory = self.territory
|
||||||
|
|
||||||
|
customer.customer_name = self.patient_name
|
||||||
|
customer.default_price_list = self.default_price_list
|
||||||
|
customer.default_currency = self.default_currency
|
||||||
|
customer.language = self.language
|
||||||
|
customer.ignore_mandatory = True
|
||||||
|
customer.save(ignore_permissions=True)
|
||||||
|
else:
|
||||||
|
if frappe.db.get_single_value('Healthcare Settings', 'link_customer_to_patient'):
|
||||||
|
create_customer(self)
|
||||||
|
|
||||||
def set_full_name(self):
|
def set_full_name(self):
|
||||||
if self.last_name:
|
if self.last_name:
|
||||||
@@ -33,6 +56,22 @@ class Patient(Document):
|
|||||||
else:
|
else:
|
||||||
self.patient_name = self.first_name
|
self.patient_name = self.first_name
|
||||||
|
|
||||||
|
def set_missing_customer_details(self):
|
||||||
|
if not self.customer_group:
|
||||||
|
self.customer_group = frappe.db.get_single_value('Selling Settings', 'customer_group') or get_root_of('Customer Group')
|
||||||
|
if not self.territory:
|
||||||
|
self.territory = frappe.db.get_single_value('Selling Settings', 'territory') or get_root_of('Territory')
|
||||||
|
if not self.default_price_list:
|
||||||
|
self.default_price_list = frappe.db.get_single_value('Selling Settings', 'selling_price_list')
|
||||||
|
|
||||||
|
if not self.customer_group or not self.territory or not self.default_price_list:
|
||||||
|
frappe.msgprint(_('Please set defaults for Customer Group, Territory and Selling Price List in Selling Settings'), alert=True)
|
||||||
|
|
||||||
|
if not self.default_currency:
|
||||||
|
self.default_currency = get_default_currency()
|
||||||
|
if not self.language:
|
||||||
|
self.language = frappe.db.get_single_value('System Settings', 'language')
|
||||||
|
|
||||||
def add_as_website_user(self):
|
def add_as_website_user(self):
|
||||||
if self.email:
|
if self.email:
|
||||||
if not frappe.db.exists ('User', self.email):
|
if not frappe.db.exists ('User', self.email):
|
||||||
@@ -86,19 +125,15 @@ class Patient(Document):
|
|||||||
return {'invoice': sales_invoice.name}
|
return {'invoice': sales_invoice.name}
|
||||||
|
|
||||||
def create_customer(doc):
|
def create_customer(doc):
|
||||||
customer_group = frappe.db.get_single_value('Selling Settings', 'customer_group')
|
|
||||||
territory = frappe.db.get_single_value('Selling Settings', 'territory')
|
|
||||||
if not (customer_group and territory):
|
|
||||||
customer_group = get_root_of('Customer Group')
|
|
||||||
territory = get_root_of('Territory')
|
|
||||||
frappe.msgprint(_('Please set default customer group and territory in Selling Settings'), alert=True)
|
|
||||||
|
|
||||||
customer = frappe.get_doc({
|
customer = frappe.get_doc({
|
||||||
'doctype': 'Customer',
|
'doctype': 'Customer',
|
||||||
'customer_name': doc.patient_name,
|
'customer_name': doc.patient_name,
|
||||||
'customer_group': customer_group,
|
'customer_group': doc.customer_group or frappe.db.get_single_value('Selling Settings', 'customer_group'),
|
||||||
'territory' : territory,
|
'territory' : doc.territory or frappe.db.get_single_value('Selling Settings', 'territory'),
|
||||||
'customer_type': 'Individual'
|
'customer_type': 'Individual',
|
||||||
|
'default_currency': doc.default_currency,
|
||||||
|
'default_price_list': doc.default_price_list,
|
||||||
|
'language': doc.language
|
||||||
}).insert(ignore_permissions=True, ignore_mandatory=True)
|
}).insert(ignore_permissions=True, ignore_mandatory=True)
|
||||||
|
|
||||||
frappe.db.set_value('Patient', doc.name, 'customer', customer.name)
|
frappe.db.set_value('Patient', doc.name, 'customer', customer.name)
|
||||||
|
|||||||
@@ -32,8 +32,9 @@ frappe.ui.form.on('Patient Appointment', {
|
|||||||
frm.set_query('service_unit', function(){
|
frm.set_query('service_unit', function(){
|
||||||
return {
|
return {
|
||||||
filters: {
|
filters: {
|
||||||
'is_group': 0,
|
'is_group': false,
|
||||||
'allow_appointments': 1
|
'allow_appointments': true,
|
||||||
|
'company': frm.doc.company
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
@@ -127,6 +128,11 @@ frappe.ui.form.on('Patient Appointment', {
|
|||||||
patient: function(frm) {
|
patient: function(frm) {
|
||||||
if (frm.doc.patient) {
|
if (frm.doc.patient) {
|
||||||
frm.trigger('toggle_payment_fields');
|
frm.trigger('toggle_payment_fields');
|
||||||
|
} else {
|
||||||
|
frm.set_value('patient_name', '');
|
||||||
|
frm.set_value('patient_sex', '');
|
||||||
|
frm.set_value('patient_age', '');
|
||||||
|
frm.set_value('inpatient_record', '');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -230,7 +236,6 @@ let check_and_set_availability = function(frm) {
|
|||||||
d.hide();
|
d.hide();
|
||||||
frm.enable_save();
|
frm.enable_save();
|
||||||
frm.save();
|
frm.save();
|
||||||
frm.enable_save();
|
|
||||||
d.get_primary_btn().attr('disabled', true);
|
d.get_primary_btn().attr('disabled', true);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -481,6 +486,7 @@ let create_vital_signs = function(frm) {
|
|||||||
frappe.route_options = {
|
frappe.route_options = {
|
||||||
'patient': frm.doc.patient,
|
'patient': frm.doc.patient,
|
||||||
'appointment': frm.doc.name,
|
'appointment': frm.doc.name,
|
||||||
|
'company': frm.doc.company
|
||||||
};
|
};
|
||||||
frappe.new_doc('Vital Signs');
|
frappe.new_doc('Vital Signs');
|
||||||
};
|
};
|
||||||
@@ -513,6 +519,7 @@ frappe.ui.form.on('Patient Appointment', 'practitioner', function(frm) {
|
|||||||
callback: function (data) {
|
callback: function (data) {
|
||||||
frappe.model.set_value(frm.doctype, frm.docname, 'department', data.message.department);
|
frappe.model.set_value(frm.doctype, frm.docname, 'department', data.message.department);
|
||||||
frappe.model.set_value(frm.doctype, frm.docname, 'paid_amount', data.message.op_consulting_charge);
|
frappe.model.set_value(frm.doctype, frm.docname, 'paid_amount', data.message.op_consulting_charge);
|
||||||
|
frappe.model.set_value(frm.doctype, frm.docname, 'billing_item', data.message.op_consulting_charge_item);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,40 +10,44 @@
|
|||||||
"engine": "InnoDB",
|
"engine": "InnoDB",
|
||||||
"field_order": [
|
"field_order": [
|
||||||
"naming_series",
|
"naming_series",
|
||||||
|
"title",
|
||||||
|
"status",
|
||||||
"patient",
|
"patient",
|
||||||
"patient_name",
|
"patient_name",
|
||||||
"patient_sex",
|
"patient_sex",
|
||||||
"patient_age",
|
"patient_age",
|
||||||
"inpatient_record",
|
"inpatient_record",
|
||||||
"column_break_1",
|
"column_break_1",
|
||||||
"status",
|
"company",
|
||||||
|
"service_unit",
|
||||||
"procedure_template",
|
"procedure_template",
|
||||||
"get_procedure_from_encounter",
|
"get_procedure_from_encounter",
|
||||||
"procedure_prescription",
|
"procedure_prescription",
|
||||||
"therapy_type",
|
"therapy_type",
|
||||||
"get_prescribed_therapies",
|
"get_prescribed_therapies",
|
||||||
"therapy_plan",
|
"therapy_plan",
|
||||||
"service_unit",
|
|
||||||
"section_break_12",
|
|
||||||
"practitioner",
|
"practitioner",
|
||||||
|
"practitioner_name",
|
||||||
"department",
|
"department",
|
||||||
|
"section_break_12",
|
||||||
"appointment_type",
|
"appointment_type",
|
||||||
|
"duration",
|
||||||
"column_break_17",
|
"column_break_17",
|
||||||
"appointment_date",
|
"appointment_date",
|
||||||
"appointment_time",
|
"appointment_time",
|
||||||
"appointment_datetime",
|
"appointment_datetime",
|
||||||
"duration",
|
|
||||||
"section_break_16",
|
"section_break_16",
|
||||||
"mode_of_payment",
|
"mode_of_payment",
|
||||||
"paid_amount",
|
"billing_item",
|
||||||
"company",
|
|
||||||
"column_break_2",
|
"column_break_2",
|
||||||
|
"paid_amount",
|
||||||
"invoiced",
|
"invoiced",
|
||||||
"ref_sales_invoice",
|
"ref_sales_invoice",
|
||||||
"section_break_3",
|
"section_break_3",
|
||||||
"notes",
|
|
||||||
"referring_practitioner",
|
"referring_practitioner",
|
||||||
"reminded"
|
"reminded",
|
||||||
|
"column_break_36",
|
||||||
|
"notes"
|
||||||
],
|
],
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
@@ -55,7 +59,6 @@
|
|||||||
"read_only": 1
|
"read_only": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fetch_from": "inpatient_record.patient",
|
|
||||||
"fieldname": "patient",
|
"fieldname": "patient",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"ignore_user_permissions": 1,
|
"ignore_user_permissions": 1,
|
||||||
@@ -79,7 +82,8 @@
|
|||||||
"fieldname": "duration",
|
"fieldname": "duration",
|
||||||
"fieldtype": "Int",
|
"fieldtype": "Int",
|
||||||
"in_filter": 1,
|
"in_filter": 1,
|
||||||
"label": "Duration (In Minutes)"
|
"label": "Duration (In Minutes)",
|
||||||
|
"set_only_once": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "column_break_1",
|
"fieldname": "column_break_1",
|
||||||
@@ -98,6 +102,7 @@
|
|||||||
"search_index": 1
|
"search_index": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"depends_on": "eval:doc.patient;",
|
||||||
"fieldname": "procedure_template",
|
"fieldname": "procedure_template",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"label": "Clinical Procedure Template",
|
"label": "Clinical Procedure Template",
|
||||||
@@ -117,7 +122,8 @@
|
|||||||
"label": "Procedure Prescription",
|
"label": "Procedure Prescription",
|
||||||
"no_copy": 1,
|
"no_copy": 1,
|
||||||
"options": "Procedure Prescription",
|
"options": "Procedure Prescription",
|
||||||
"print_hide": 1
|
"print_hide": 1,
|
||||||
|
"read_only": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "service_unit",
|
"fieldname": "service_unit",
|
||||||
@@ -128,7 +134,8 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "section_break_12",
|
"fieldname": "section_break_12",
|
||||||
"fieldtype": "Section Break"
|
"fieldtype": "Section Break",
|
||||||
|
"label": "Appointment Details"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "practitioner",
|
"fieldname": "practitioner",
|
||||||
@@ -143,6 +150,7 @@
|
|||||||
"set_only_once": 1
|
"set_only_once": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"fetch_from": "practitioner.department",
|
||||||
"fieldname": "department",
|
"fieldname": "department",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"ignore_user_permissions": 1,
|
"ignore_user_permissions": 1,
|
||||||
@@ -173,11 +181,13 @@
|
|||||||
"fieldtype": "Time",
|
"fieldtype": "Time",
|
||||||
"in_list_view": 1,
|
"in_list_view": 1,
|
||||||
"label": "Time",
|
"label": "Time",
|
||||||
"read_only": 1
|
"read_only": 1,
|
||||||
|
"reqd": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "section_break_16",
|
"fieldname": "section_break_16",
|
||||||
"fieldtype": "Section Break"
|
"fieldtype": "Section Break",
|
||||||
|
"label": "Payments"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fetch_from": "patient.patient_name",
|
"fetch_from": "patient.patient_name",
|
||||||
@@ -206,6 +216,7 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "appointment_datetime",
|
"fieldname": "appointment_datetime",
|
||||||
"fieldtype": "Datetime",
|
"fieldtype": "Datetime",
|
||||||
|
"hidden": 1,
|
||||||
"label": "Appointment Datetime",
|
"label": "Appointment Datetime",
|
||||||
"print_hide": 1,
|
"print_hide": 1,
|
||||||
"read_only": 1,
|
"read_only": 1,
|
||||||
@@ -237,12 +248,12 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "company",
|
"fieldname": "company",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"hidden": 1,
|
"in_standard_filter": 1,
|
||||||
"label": "Company",
|
"label": "Company",
|
||||||
"no_copy": 1,
|
"no_copy": 1,
|
||||||
"options": "Company",
|
"options": "Company",
|
||||||
"print_hide": 1,
|
"reqd": 1,
|
||||||
"report_hide": 1
|
"set_only_once": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"collapsible": 1,
|
"collapsible": 1,
|
||||||
@@ -307,10 +318,37 @@
|
|||||||
"label": "Series",
|
"label": "Series",
|
||||||
"options": "HLC-APP-.YYYY.-",
|
"options": "HLC-APP-.YYYY.-",
|
||||||
"set_only_once": 1
|
"set_only_once": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "billing_item",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"label": "Billing Item",
|
||||||
|
"options": "Item",
|
||||||
|
"read_only": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "column_break_36",
|
||||||
|
"fieldtype": "Column Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "title",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"hidden": 1,
|
||||||
|
"label": "Title",
|
||||||
|
"no_copy": 1,
|
||||||
|
"print_hide": 1,
|
||||||
|
"read_only": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fetch_from": "practitioner.practitioner_name",
|
||||||
|
"fieldname": "practitioner_name",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "Practitioner Name",
|
||||||
|
"read_only": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2020-03-31 16:16:32.116865",
|
"modified": "2020-04-27 21:36:06.404062",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Healthcare",
|
"module": "Healthcare",
|
||||||
"name": "Patient Appointment",
|
"name": "Patient Appointment",
|
||||||
@@ -358,7 +396,7 @@
|
|||||||
"show_name_in_global_search": 1,
|
"show_name_in_global_search": 1,
|
||||||
"sort_field": "modified",
|
"sort_field": "modified",
|
||||||
"sort_order": "DESC",
|
"sort_order": "DESC",
|
||||||
"title_field": "patient",
|
"title_field": "title",
|
||||||
"track_changes": 1,
|
"track_changes": 1,
|
||||||
"track_seen": 1
|
"track_seen": 1
|
||||||
}
|
}
|
||||||
@@ -21,6 +21,7 @@ class PatientAppointment(Document):
|
|||||||
self.set_appointment_datetime()
|
self.set_appointment_datetime()
|
||||||
self.validate_customer_created()
|
self.validate_customer_created()
|
||||||
self.set_status()
|
self.set_status()
|
||||||
|
self.set_title()
|
||||||
|
|
||||||
def after_insert(self):
|
def after_insert(self):
|
||||||
self.update_prescription_details()
|
self.update_prescription_details()
|
||||||
@@ -28,6 +29,10 @@ class PatientAppointment(Document):
|
|||||||
self.update_fee_validity()
|
self.update_fee_validity()
|
||||||
send_confirmation_msg(self)
|
send_confirmation_msg(self)
|
||||||
|
|
||||||
|
def set_title(self):
|
||||||
|
self.title = _('{0} with {1}').format(self.patient_name or self.patient,
|
||||||
|
self.practitioner_name or self.practitioner)
|
||||||
|
|
||||||
def set_status(self):
|
def set_status(self):
|
||||||
today = getdate()
|
today = getdate()
|
||||||
appointment_date = getdate(self.appointment_date)
|
appointment_date = getdate(self.appointment_date)
|
||||||
@@ -119,25 +124,28 @@ def invoice_appointment(appointment_doc):
|
|||||||
|
|
||||||
if automate_invoicing and not appointment_invoiced and not fee_validity:
|
if automate_invoicing and not appointment_invoiced and not fee_validity:
|
||||||
sales_invoice = frappe.new_doc('Sales Invoice')
|
sales_invoice = frappe.new_doc('Sales Invoice')
|
||||||
|
sales_invoice.patient = appointment_doc.patient
|
||||||
sales_invoice.customer = frappe.get_value('Patient', appointment_doc.patient, 'customer')
|
sales_invoice.customer = frappe.get_value('Patient', appointment_doc.patient, 'customer')
|
||||||
sales_invoice.appointment = appointment_doc.name
|
sales_invoice.appointment = appointment_doc.name
|
||||||
sales_invoice.due_date = getdate()
|
sales_invoice.due_date = getdate()
|
||||||
sales_invoice.is_pos = 1
|
|
||||||
sales_invoice.company = appointment_doc.company
|
sales_invoice.company = appointment_doc.company
|
||||||
sales_invoice.debit_to = get_receivable_account(appointment_doc.company)
|
sales_invoice.debit_to = get_receivable_account(appointment_doc.company)
|
||||||
|
|
||||||
item = sales_invoice.append('items', {})
|
item = sales_invoice.append('items', {})
|
||||||
item = get_appointment_item(appointment_doc, item)
|
item = get_appointment_item(appointment_doc, item)
|
||||||
|
|
||||||
payment = sales_invoice.append('payments', {})
|
# Add payments if payment details are supplied else proceed to create invoice as Unpaid
|
||||||
payment.mode_of_payment = appointment_doc.mode_of_payment
|
if appointment_doc.mode_of_payment and appointment_doc.paid_amount:
|
||||||
payment.amount = appointment_doc.paid_amount
|
sales_invoice.is_pos = 1
|
||||||
|
payment = sales_invoice.append('payments', {})
|
||||||
|
payment.mode_of_payment = appointment_doc.mode_of_payment
|
||||||
|
payment.amount = appointment_doc.paid_amount
|
||||||
|
|
||||||
sales_invoice.set_missing_values(for_validate=True)
|
sales_invoice.set_missing_values(for_validate=True)
|
||||||
sales_invoice.flags.ignore_mandatory = True
|
sales_invoice.flags.ignore_mandatory = True
|
||||||
sales_invoice.save(ignore_permissions=True)
|
sales_invoice.save(ignore_permissions=True)
|
||||||
sales_invoice.submit()
|
sales_invoice.submit()
|
||||||
frappe.msgprint(_('Sales Invoice {0} created as paid'.format(sales_invoice.name)), alert=True)
|
frappe.msgprint(_('Sales Invoice {0} created'.format(sales_invoice.name)), alert=True)
|
||||||
frappe.db.set_value('Patient Appointment', appointment_doc.name, 'invoiced', 1)
|
frappe.db.set_value('Patient Appointment', appointment_doc.name, 'invoiced', 1)
|
||||||
frappe.db.set_value('Patient Appointment', appointment_doc.name, 'ref_sales_invoice', sales_invoice.name)
|
frappe.db.set_value('Patient Appointment', appointment_doc.name, 'ref_sales_invoice', sales_invoice.name)
|
||||||
|
|
||||||
@@ -343,8 +351,8 @@ def make_encounter(source_name, target_doc=None):
|
|||||||
['practitioner', 'practitioner'],
|
['practitioner', 'practitioner'],
|
||||||
['medical_department', 'department'],
|
['medical_department', 'department'],
|
||||||
['patient_sex', 'patient_sex'],
|
['patient_sex', 'patient_sex'],
|
||||||
['encounter_date', 'appointment_date'],
|
['invoiced', 'invoiced'],
|
||||||
['invoiced', 'invoiced']
|
['company', 'company']
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}, target_doc)
|
}, target_doc)
|
||||||
@@ -370,17 +378,19 @@ def send_appointment_reminder():
|
|||||||
frappe.db.set_value('Patient Appointment', doc.name, 'reminded', 1)
|
frappe.db.set_value('Patient Appointment', doc.name, 'reminded', 1)
|
||||||
|
|
||||||
def send_message(doc, message):
|
def send_message(doc, message):
|
||||||
patient = frappe.get_doc('Patient', doc.patient)
|
patient_mobile = frappe.db.get_value('Patient', doc.patient, 'mobile')
|
||||||
if patient.mobile:
|
if patient_mobile:
|
||||||
context = {'doc': doc, 'alert': doc, 'comments': None}
|
context = {'doc': doc, 'alert': doc, 'comments': None}
|
||||||
if doc.get('_comments'):
|
if doc.get('_comments'):
|
||||||
context['comments'] = json.loads(doc.get('_comments'))
|
context['comments'] = json.loads(doc.get('_comments'))
|
||||||
|
|
||||||
# jinja to string convertion happens here
|
# jinja to string convertion happens here
|
||||||
message = frappe.render_template(message, context)
|
message = frappe.render_template(message, context)
|
||||||
number = [patient.mobile]
|
number = [patient_mobile]
|
||||||
send_sms(number, message)
|
try:
|
||||||
|
send_sms(number, message)
|
||||||
|
except Exception as e:
|
||||||
|
frappe.msgprint(_('SMS not sent, please check SMS Settings'), alert=True)
|
||||||
|
|
||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
def get_events(start, end, filters=None):
|
def get_events(start, end, filters=None):
|
||||||
|
|||||||
@@ -4,14 +4,15 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
import frappe
|
import frappe
|
||||||
from erpnext.healthcare.doctype.patient_appointment.patient_appointment import update_status
|
from erpnext.healthcare.doctype.patient_appointment.patient_appointment import update_status, make_encounter
|
||||||
from frappe.utils import nowdate, add_days
|
from frappe.utils import nowdate, add_days
|
||||||
from frappe.utils.make_random import get_random
|
from frappe.utils.make_random import get_random
|
||||||
|
|
||||||
class TestPatientAppointment(unittest.TestCase):
|
class TestPatientAppointment(unittest.TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
frappe.db.sql("""delete from `tabPatient Appointment`""")
|
frappe.db.sql("""delete from `tabPatient Appointment`""")
|
||||||
frappe.db.sql("""delete from `tabFee Validity""")
|
frappe.db.sql("""delete from `tabFee Validity`""")
|
||||||
|
frappe.db.sql("""delete from `tabPatient Encounter`""")
|
||||||
|
|
||||||
def test_status(self):
|
def test_status(self):
|
||||||
patient, medical_department, practitioner = create_healthcare_docs()
|
patient, medical_department, practitioner = create_healthcare_docs()
|
||||||
@@ -23,6 +24,19 @@ class TestPatientAppointment(unittest.TestCase):
|
|||||||
create_encounter(appointment)
|
create_encounter(appointment)
|
||||||
self.assertEquals(frappe.db.get_value('Patient Appointment', appointment.name, 'status'), 'Closed')
|
self.assertEquals(frappe.db.get_value('Patient Appointment', appointment.name, 'status'), 'Closed')
|
||||||
|
|
||||||
|
def test_start_encounter(self):
|
||||||
|
patient, medical_department, practitioner = create_healthcare_docs()
|
||||||
|
frappe.db.set_value('Healthcare Settings', None, 'automate_appointment_invoicing', 1)
|
||||||
|
appointment = create_appointment(patient, practitioner, add_days(nowdate(), 4), invoice = 1)
|
||||||
|
self.assertEqual(frappe.db.get_value('Patient Appointment', appointment.name, 'invoiced'), 1)
|
||||||
|
encounter = make_encounter(appointment.name)
|
||||||
|
self.assertTrue(encounter)
|
||||||
|
self.assertEqual(encounter.company, appointment.company)
|
||||||
|
self.assertEqual(encounter.practitioner, appointment.practitioner)
|
||||||
|
self.assertEqual(encounter.patient, appointment.patient)
|
||||||
|
# invoiced flag mapped from appointment
|
||||||
|
self.assertEqual(encounter.invoiced, frappe.db.get_value('Patient Appointment', appointment.name, 'invoiced'))
|
||||||
|
|
||||||
def test_invoicing(self):
|
def test_invoicing(self):
|
||||||
patient, medical_department, practitioner = create_healthcare_docs()
|
patient, medical_department, practitioner = create_healthcare_docs()
|
||||||
frappe.db.set_value('Healthcare Settings', None, 'enable_free_follow_ups', 0)
|
frappe.db.set_value('Healthcare Settings', None, 'enable_free_follow_ups', 0)
|
||||||
@@ -33,7 +47,11 @@ class TestPatientAppointment(unittest.TestCase):
|
|||||||
frappe.db.set_value('Healthcare Settings', None, 'automate_appointment_invoicing', 1)
|
frappe.db.set_value('Healthcare Settings', None, 'automate_appointment_invoicing', 1)
|
||||||
appointment = create_appointment(patient, practitioner, add_days(nowdate(), 2), invoice=1)
|
appointment = create_appointment(patient, practitioner, add_days(nowdate(), 2), invoice=1)
|
||||||
self.assertEqual(frappe.db.get_value('Patient Appointment', appointment.name, 'invoiced'), 1)
|
self.assertEqual(frappe.db.get_value('Patient Appointment', appointment.name, 'invoiced'), 1)
|
||||||
self.assertTrue(frappe.db.get_value('Patient Appointment', appointment.name, 'ref_sales_invoice'))
|
sales_invoice_name = frappe.db.get_value('Sales Invoice Item', {'reference_dn': appointment.name}, 'parent')
|
||||||
|
self.assertTrue(sales_invoice_name)
|
||||||
|
self.assertEqual(frappe.db.get_value('Sales Invoice', sales_invoice_name, 'company'), appointment.company)
|
||||||
|
self.assertEqual(frappe.db.get_value('Sales Invoice', sales_invoice_name, 'patient'), appointment.patient)
|
||||||
|
self.assertEqual(frappe.db.get_value('Sales Invoice', sales_invoice_name, 'paid_amount'), appointment.paid_amount)
|
||||||
|
|
||||||
def test_appointment_cancel(self):
|
def test_appointment_cancel(self):
|
||||||
patient, medical_department, practitioner = create_healthcare_docs()
|
patient, medical_department, practitioner = create_healthcare_docs()
|
||||||
@@ -53,8 +71,8 @@ class TestPatientAppointment(unittest.TestCase):
|
|||||||
appointment = create_appointment(patient, practitioner, nowdate(), invoice=1)
|
appointment = create_appointment(patient, practitioner, nowdate(), invoice=1)
|
||||||
update_status(appointment.name, 'Cancelled')
|
update_status(appointment.name, 'Cancelled')
|
||||||
# check invoice cancelled
|
# check invoice cancelled
|
||||||
sales_invoice = frappe.db.get_value('Patient Appointment', appointment.name, 'ref_sales_invoice')
|
sales_invoice_name = frappe.db.get_value('Sales Invoice Item', {'reference_dn': appointment.name}, 'parent')
|
||||||
self.assertEqual(frappe.db.get_value('Sales Invoice', sales_invoice, 'status'), 'Cancelled')
|
self.assertEqual(frappe.db.get_value('Sales Invoice', sales_invoice_name, 'status'), 'Cancelled')
|
||||||
|
|
||||||
|
|
||||||
def create_healthcare_docs():
|
def create_healthcare_docs():
|
||||||
@@ -90,14 +108,15 @@ def create_patient():
|
|||||||
patient = patient.name
|
patient = patient.name
|
||||||
return patient
|
return patient
|
||||||
|
|
||||||
def create_encounter(appointment=None):
|
def create_encounter(appointment):
|
||||||
encounter = frappe.new_doc('Patient Encounter')
|
|
||||||
if appointment:
|
if appointment:
|
||||||
|
encounter = frappe.new_doc('Patient Encounter')
|
||||||
encounter.appointment = appointment.name
|
encounter.appointment = appointment.name
|
||||||
encounter.patient = appointment.patient
|
encounter.patient = appointment.patient
|
||||||
encounter.practitioner = appointment.practitioner
|
encounter.practitioner = appointment.practitioner
|
||||||
encounter.encounter_date = appointment.appointment_date
|
encounter.encounter_date = appointment.appointment_date
|
||||||
encounter.encounter_time = appointment.appointment_time
|
encounter.encounter_time = appointment.appointment_time
|
||||||
|
encounter.company = appointment.company
|
||||||
encounter.save()
|
encounter.save()
|
||||||
encounter.submit()
|
encounter.submit()
|
||||||
return encounter
|
return encounter
|
||||||
|
|||||||
@@ -25,15 +25,16 @@ frappe.ui.form.on('Patient Encounter', {
|
|||||||
refresh_field('lab_test_prescription');
|
refresh_field('lab_test_prescription');
|
||||||
|
|
||||||
if (!frm.doc.__islocal) {
|
if (!frm.doc.__islocal) {
|
||||||
|
if (frm.doc.docstatus === 1) {
|
||||||
if (frm.doc.inpatient_status == 'Admission Scheduled' || frm.doc.inpatient_status == 'Admitted') {
|
if (frm.doc.inpatient_status == 'Admission Scheduled' || frm.doc.inpatient_status == 'Admitted') {
|
||||||
frm.add_custom_button(__('Schedule Discharge'), function() {
|
frm.add_custom_button(__('Schedule Discharge'), function() {
|
||||||
schedule_discharge(frm);
|
schedule_discharge(frm);
|
||||||
});
|
});
|
||||||
} else if (frm.doc.inpatient_status != 'Discharge Scheduled') {
|
} else if (frm.doc.inpatient_status != 'Discharge Scheduled') {
|
||||||
frm.add_custom_button(__('Schedule Admission'), function() {
|
frm.add_custom_button(__('Schedule Admission'), function() {
|
||||||
schedule_inpatient(frm);
|
schedule_inpatient(frm);
|
||||||
});
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
frm.add_custom_button(__('Patient History'), function() {
|
frm.add_custom_button(__('Patient History'), function() {
|
||||||
@@ -101,6 +102,11 @@ frappe.ui.form.on('Patient Encounter', {
|
|||||||
frm.events.set_patient_info(frm);
|
frm.events.set_patient_info(frm);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
practitioner: function(frm) {
|
||||||
|
if (!frm.doc.practitioner) {
|
||||||
|
frm.set_value('practitioner_name', '');
|
||||||
|
}
|
||||||
|
},
|
||||||
set_appointment_fields: function(frm) {
|
set_appointment_fields: function(frm) {
|
||||||
if (frm.doc.appointment) {
|
if (frm.doc.appointment) {
|
||||||
frappe.call({
|
frappe.call({
|
||||||
@@ -114,9 +120,11 @@ frappe.ui.form.on('Patient Encounter', {
|
|||||||
'patient':data.message.patient,
|
'patient':data.message.patient,
|
||||||
'type': data.message.appointment_type,
|
'type': data.message.appointment_type,
|
||||||
'practitioner': data.message.practitioner,
|
'practitioner': data.message.practitioner,
|
||||||
'invoiced': data.message.invoiced
|
'invoiced': data.message.invoiced,
|
||||||
|
'company': data.message.company
|
||||||
};
|
};
|
||||||
frm.set_value(values);
|
frm.set_value(values);
|
||||||
|
frm.set_df_property('patient', 'read_only', 1);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -133,6 +141,7 @@ frappe.ui.form.on('Patient Encounter', {
|
|||||||
'inpatient_status': ''
|
'inpatient_status': ''
|
||||||
};
|
};
|
||||||
frm.set_value(values);
|
frm.set_value(values);
|
||||||
|
frm.set_df_property('patient', 'read_only', 0);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -148,19 +157,25 @@ frappe.ui.form.on('Patient Encounter', {
|
|||||||
if (data.message.dob) {
|
if (data.message.dob) {
|
||||||
age = calculate_age(data.message.dob);
|
age = calculate_age(data.message.dob);
|
||||||
}
|
}
|
||||||
frappe.model.set_value(frm.doctype, frm.docname, 'patient_age', age);
|
let values = {
|
||||||
frappe.model.set_value(frm.doctype, frm.docname, 'patient_sex', data.message.sex);
|
'patient_age': age,
|
||||||
if (data.message.inpatient_record) {
|
'patient_name':data.message.patient_name,
|
||||||
frappe.model.set_value(frm.doctype, frm.docname, 'inpatient_record', data.message.inpatient_record);
|
'patient_sex': data.message.sex,
|
||||||
frappe.model.set_value(frm.doctype, frm.docname, 'inpatient_status', data.message.inpatient_status);
|
'inpatient_record': data.message.inpatient_record,
|
||||||
}
|
'inpatient_status': data.message.inpatient_status
|
||||||
|
};
|
||||||
|
frm.set_value(values);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
frappe.model.set_value(frm.doctype, frm.docname, 'patient_sex', '');
|
let values = {
|
||||||
frappe.model.set_value(frm.doctype, frm.docname, 'patient_age', '');
|
'patient_age': '',
|
||||||
frappe.model.set_value(frm.doctype, frm.docname, 'inpatient_record', '');
|
'patient_name':'',
|
||||||
frappe.model.set_value(frm.doctype, frm.docname, 'inpatient_status', '');
|
'patient_sex': '',
|
||||||
|
'inpatient_record': '',
|
||||||
|
'inpatient_status': ''
|
||||||
|
};
|
||||||
|
frm.set_value(values);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -212,8 +227,8 @@ let create_vital_signs = function (frm) {
|
|||||||
}
|
}
|
||||||
frappe.route_options = {
|
frappe.route_options = {
|
||||||
'patient': frm.doc.patient,
|
'patient': frm.doc.patient,
|
||||||
'appointment': frm.doc.appointment,
|
'encounter': frm.doc.name,
|
||||||
'encounter': frm.doc.name
|
'company': frm.doc.company
|
||||||
};
|
};
|
||||||
frappe.new_doc('Vital Signs');
|
frappe.new_doc('Vital Signs');
|
||||||
};
|
};
|
||||||
@@ -224,7 +239,8 @@ let create_procedure = function (frm) {
|
|||||||
}
|
}
|
||||||
frappe.route_options = {
|
frappe.route_options = {
|
||||||
'patient': frm.doc.patient,
|
'patient': frm.doc.patient,
|
||||||
'medical_department': frm.doc.medical_department
|
'medical_department': frm.doc.medical_department,
|
||||||
|
'company': frm.doc.company
|
||||||
};
|
};
|
||||||
frappe.new_doc('Clinical Procedure');
|
frappe.new_doc('Clinical Procedure');
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -11,23 +11,23 @@
|
|||||||
"engine": "InnoDB",
|
"engine": "InnoDB",
|
||||||
"field_order": [
|
"field_order": [
|
||||||
"naming_series",
|
"naming_series",
|
||||||
|
"title",
|
||||||
"appointment",
|
"appointment",
|
||||||
"appointment_type",
|
"appointment_type",
|
||||||
"patient",
|
"patient",
|
||||||
"patient_name",
|
"patient_name",
|
||||||
"patient_sex",
|
"patient_sex",
|
||||||
"patient_age",
|
"patient_age",
|
||||||
"company",
|
"inpatient_record",
|
||||||
|
"inpatient_status",
|
||||||
"column_break_6",
|
"column_break_6",
|
||||||
"practitioner",
|
"company",
|
||||||
"medical_department",
|
|
||||||
"encounter_date",
|
"encounter_date",
|
||||||
"encounter_time",
|
"encounter_time",
|
||||||
|
"practitioner",
|
||||||
|
"practitioner_name",
|
||||||
|
"medical_department",
|
||||||
"invoiced",
|
"invoiced",
|
||||||
"section_break_1",
|
|
||||||
"inpatient_record",
|
|
||||||
"column_break_17",
|
|
||||||
"inpatient_status",
|
|
||||||
"sb_symptoms",
|
"sb_symptoms",
|
||||||
"symptoms",
|
"symptoms",
|
||||||
"symptoms_in_print",
|
"symptoms_in_print",
|
||||||
@@ -47,6 +47,7 @@
|
|||||||
"therapies",
|
"therapies",
|
||||||
"section_break_33",
|
"section_break_33",
|
||||||
"encounter_comment",
|
"encounter_comment",
|
||||||
|
"sb_refs",
|
||||||
"amended_from"
|
"amended_from"
|
||||||
],
|
],
|
||||||
"fields": [
|
"fields": [
|
||||||
@@ -57,12 +58,6 @@
|
|||||||
"options": "Inpatient Record",
|
"options": "Inpatient Record",
|
||||||
"read_only": 1
|
"read_only": 1
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"collapsible": 1,
|
|
||||||
"fieldname": "section_break_1",
|
|
||||||
"fieldtype": "Section Break",
|
|
||||||
"label": "Inpatient Details"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"fieldname": "naming_series",
|
"fieldname": "naming_series",
|
||||||
"fieldtype": "Select",
|
"fieldtype": "Select",
|
||||||
@@ -77,14 +72,13 @@
|
|||||||
"ignore_user_permissions": 1,
|
"ignore_user_permissions": 1,
|
||||||
"label": "Appointment",
|
"label": "Appointment",
|
||||||
"options": "Patient Appointment",
|
"options": "Patient Appointment",
|
||||||
"search_index": 1
|
"search_index": 1,
|
||||||
|
"set_only_once": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fetch_from": "inpatient_record.patient",
|
|
||||||
"fieldname": "patient",
|
"fieldname": "patient",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"ignore_user_permissions": 1,
|
"ignore_user_permissions": 1,
|
||||||
"in_list_view": 1,
|
|
||||||
"in_standard_filter": 1,
|
"in_standard_filter": 1,
|
||||||
"label": "Patient",
|
"label": "Patient",
|
||||||
"options": "Patient",
|
"options": "Patient",
|
||||||
@@ -92,7 +86,6 @@
|
|||||||
"search_index": 1
|
"search_index": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fetch_from": "patient.patient_name",
|
|
||||||
"fieldname": "patient_name",
|
"fieldname": "patient_name",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"label": "Patient Name",
|
"label": "Patient Name",
|
||||||
@@ -114,7 +107,6 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "company",
|
"fieldname": "company",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"hidden": 1,
|
|
||||||
"label": "Company",
|
"label": "Company",
|
||||||
"options": "Company"
|
"options": "Company"
|
||||||
},
|
},
|
||||||
@@ -125,7 +117,6 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "practitioner",
|
"fieldname": "practitioner",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"in_list_view": 1,
|
|
||||||
"in_standard_filter": 1,
|
"in_standard_filter": 1,
|
||||||
"label": "Healthcare Practitioner",
|
"label": "Healthcare Practitioner",
|
||||||
"options": "Healthcare Practitioner",
|
"options": "Healthcare Practitioner",
|
||||||
@@ -207,29 +198,29 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "codification_table",
|
"fieldname": "codification_table",
|
||||||
"fieldtype": "Table",
|
"fieldtype": "Table",
|
||||||
"label": "Medical Coding",
|
"label": "Medical Codes",
|
||||||
"options": "Codification Table"
|
"options": "Codification Table"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "sb_drug_prescription",
|
"fieldname": "sb_drug_prescription",
|
||||||
"fieldtype": "Section Break",
|
"fieldtype": "Section Break",
|
||||||
"label": "Medication"
|
"label": "Medications"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "drug_prescription",
|
"fieldname": "drug_prescription",
|
||||||
"fieldtype": "Table",
|
"fieldtype": "Table",
|
||||||
"label": "Drug Prescription",
|
"label": "Items",
|
||||||
"options": "Drug Prescription"
|
"options": "Drug Prescription"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "sb_test_prescription",
|
"fieldname": "sb_test_prescription",
|
||||||
"fieldtype": "Section Break",
|
"fieldtype": "Section Break",
|
||||||
"label": "Investigation"
|
"label": "Investigations"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "lab_test_prescription",
|
"fieldname": "lab_test_prescription",
|
||||||
"fieldtype": "Table",
|
"fieldtype": "Table",
|
||||||
"label": "Lab Prescription",
|
"label": "Lab Tests",
|
||||||
"options": "Lab Prescription"
|
"options": "Lab Prescription"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -240,7 +231,7 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "procedure_prescription",
|
"fieldname": "procedure_prescription",
|
||||||
"fieldtype": "Table",
|
"fieldtype": "Table",
|
||||||
"label": "Procedure Prescription",
|
"label": "Clinical Procedures",
|
||||||
"no_copy": 1,
|
"no_copy": 1,
|
||||||
"options": "Procedure Prescription"
|
"options": "Procedure Prescription"
|
||||||
},
|
},
|
||||||
@@ -299,7 +290,6 @@
|
|||||||
"fieldname": "medical_department",
|
"fieldname": "medical_department",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"ignore_user_permissions": 1,
|
"ignore_user_permissions": 1,
|
||||||
"in_list_view": 1,
|
|
||||||
"in_standard_filter": 1,
|
"in_standard_filter": 1,
|
||||||
"label": "Department",
|
"label": "Department",
|
||||||
"options": "Medical Department",
|
"options": "Medical Department",
|
||||||
@@ -312,13 +302,31 @@
|
|||||||
"read_only": 1
|
"read_only": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "column_break_17",
|
"fieldname": "sb_refs",
|
||||||
"fieldtype": "Column Break"
|
"fieldtype": "Section Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fetch_from": "practitioner.practitioner_name",
|
||||||
|
"fieldname": "practitioner_name",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_list_view": 1,
|
||||||
|
"label": "Practitioner Name",
|
||||||
|
"read_only": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"allow_on_submit": 1,
|
||||||
|
"fieldname": "title",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"hidden": 1,
|
||||||
|
"label": "Title",
|
||||||
|
"no_copy": 1,
|
||||||
|
"print_hide": 1,
|
||||||
|
"read_only": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"is_submittable": 1,
|
"is_submittable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2020-04-14 16:18:08.180457",
|
"modified": "2020-04-27 21:58:29.789797",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Healthcare",
|
"module": "Healthcare",
|
||||||
"name": "Patient Encounter",
|
"name": "Patient Encounter",
|
||||||
@@ -345,7 +353,7 @@
|
|||||||
"show_name_in_global_search": 1,
|
"show_name_in_global_search": 1,
|
||||||
"sort_field": "modified",
|
"sort_field": "modified",
|
||||||
"sort_order": "DESC",
|
"sort_order": "DESC",
|
||||||
"title_field": "patient",
|
"title_field": "title",
|
||||||
"track_changes": 1,
|
"track_changes": 1,
|
||||||
"track_seen": 1
|
"track_seen": 1
|
||||||
}
|
}
|
||||||
@@ -10,6 +10,9 @@ from frappe.utils import cstr
|
|||||||
from frappe import _
|
from frappe import _
|
||||||
|
|
||||||
class PatientEncounter(Document):
|
class PatientEncounter(Document):
|
||||||
|
def validate(self):
|
||||||
|
self.set_title()
|
||||||
|
|
||||||
def on_update(self):
|
def on_update(self):
|
||||||
if self.appointment:
|
if self.appointment:
|
||||||
frappe.db.set_value('Patient Appointment', self.appointment, 'status', 'Closed')
|
frappe.db.set_value('Patient Appointment', self.appointment, 'status', 'Closed')
|
||||||
@@ -29,6 +32,10 @@ class PatientEncounter(Document):
|
|||||||
def on_submit(self):
|
def on_submit(self):
|
||||||
create_therapy_plan(self)
|
create_therapy_plan(self)
|
||||||
|
|
||||||
|
def set_title(self):
|
||||||
|
self.title = _('{0} with {1}').format(self.patient_name or self.patient,
|
||||||
|
self.practitioner_name or self.practitioner)[:100]
|
||||||
|
|
||||||
def create_therapy_plan(encounter):
|
def create_therapy_plan(encounter):
|
||||||
if len(encounter.therapies):
|
if len(encounter.therapies):
|
||||||
doc = frappe.new_doc('Therapy Plan')
|
doc = frappe.new_doc('Therapy Plan')
|
||||||
|
|||||||
@@ -9,14 +9,14 @@
|
|||||||
"document_type": "Document",
|
"document_type": "Document",
|
||||||
"engine": "InnoDB",
|
"engine": "InnoDB",
|
||||||
"field_order": [
|
"field_order": [
|
||||||
"inpatient_record",
|
|
||||||
"naming_series",
|
"naming_series",
|
||||||
"invoiced",
|
|
||||||
"patient",
|
"patient",
|
||||||
"column_break_4",
|
|
||||||
"patient_age",
|
"patient_age",
|
||||||
"patient_sex",
|
"patient_sex",
|
||||||
|
"column_break_4",
|
||||||
|
"inpatient_record",
|
||||||
"company",
|
"company",
|
||||||
|
"invoiced",
|
||||||
"section_break_6",
|
"section_break_6",
|
||||||
"sample",
|
"sample",
|
||||||
"sample_uom",
|
"sample_uom",
|
||||||
@@ -167,7 +167,7 @@
|
|||||||
],
|
],
|
||||||
"is_submittable": 1,
|
"is_submittable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2020-03-25 16:55:52.376834",
|
"modified": "2020-04-04 19:17:02.707203",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Healthcare",
|
"module": "Healthcare",
|
||||||
"name": "Sample Collection",
|
"name": "Sample Collection",
|
||||||
|
|||||||
@@ -9,6 +9,16 @@ frappe.ui.form.on('Therapy Session', {
|
|||||||
{fieldname: 'counts_completed', columns: 1},
|
{fieldname: 'counts_completed', columns: 1},
|
||||||
{fieldname: 'assistance_level', columns: 1}
|
{fieldname: 'assistance_level', columns: 1}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
frm.set_query('service_unit', function() {
|
||||||
|
return {
|
||||||
|
filters: {
|
||||||
|
'is_group': false,
|
||||||
|
'allow_appointments': true,
|
||||||
|
'company': frm.doc.company
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
refresh: function(frm) {
|
refresh: function(frm) {
|
||||||
|
|||||||
@@ -2,18 +2,22 @@
|
|||||||
"actions": [],
|
"actions": [],
|
||||||
"allow_copy": 1,
|
"allow_copy": 1,
|
||||||
"allow_import": 1,
|
"allow_import": 1,
|
||||||
|
"autoname": "naming_series:",
|
||||||
"beta": 1,
|
"beta": 1,
|
||||||
"creation": "2017-02-02 11:00:24.853005",
|
"creation": "2017-02-02 11:00:24.853005",
|
||||||
"doctype": "DocType",
|
"doctype": "DocType",
|
||||||
"editable_grid": 1,
|
"editable_grid": 1,
|
||||||
"engine": "InnoDB",
|
"engine": "InnoDB",
|
||||||
"field_order": [
|
"field_order": [
|
||||||
"inpatient_record",
|
"naming_series",
|
||||||
|
"title",
|
||||||
"patient",
|
"patient",
|
||||||
"patient_name",
|
"patient_name",
|
||||||
|
"inpatient_record",
|
||||||
"appointment",
|
"appointment",
|
||||||
"encounter",
|
"encounter",
|
||||||
"column_break_2",
|
"column_break_2",
|
||||||
|
"company",
|
||||||
"signs_date",
|
"signs_date",
|
||||||
"signs_time",
|
"signs_time",
|
||||||
"sb_vs",
|
"sb_vs",
|
||||||
@@ -34,7 +38,7 @@
|
|||||||
"bmi",
|
"bmi",
|
||||||
"column_break_14",
|
"column_break_14",
|
||||||
"nutrition_note",
|
"nutrition_note",
|
||||||
"company",
|
"sb_references",
|
||||||
"amended_from"
|
"amended_from"
|
||||||
],
|
],
|
||||||
"fields": [
|
"fields": [
|
||||||
@@ -68,7 +72,8 @@
|
|||||||
"fieldname": "appointment",
|
"fieldname": "appointment",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"in_filter": 1,
|
"in_filter": 1,
|
||||||
"label": "Appointment",
|
"label": "Patient Appointment",
|
||||||
|
"no_copy": 1,
|
||||||
"options": "Patient Appointment",
|
"options": "Patient Appointment",
|
||||||
"print_hide": 1,
|
"print_hide": 1,
|
||||||
"read_only": 1
|
"read_only": 1
|
||||||
@@ -81,8 +86,7 @@
|
|||||||
"no_copy": 1,
|
"no_copy": 1,
|
||||||
"options": "Patient Encounter",
|
"options": "Patient Encounter",
|
||||||
"print_hide": 1,
|
"print_hide": 1,
|
||||||
"read_only": 1,
|
"read_only": 1
|
||||||
"report_hide": 1
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "column_break_2",
|
"fieldname": "column_break_2",
|
||||||
@@ -217,7 +221,6 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "company",
|
"fieldname": "company",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"hidden": 1,
|
|
||||||
"label": "Company",
|
"label": "Company",
|
||||||
"options": "Company"
|
"options": "Company"
|
||||||
},
|
},
|
||||||
@@ -229,11 +232,34 @@
|
|||||||
"options": "Vital Signs",
|
"options": "Vital Signs",
|
||||||
"print_hide": 1,
|
"print_hide": 1,
|
||||||
"read_only": 1
|
"read_only": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"collapsible": 1,
|
||||||
|
"fieldname": "sb_references",
|
||||||
|
"fieldtype": "Section Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "naming_series",
|
||||||
|
"fieldtype": "Select",
|
||||||
|
"label": "Series",
|
||||||
|
"options": "HLC-VTS-.YYYY.-",
|
||||||
|
"reqd": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"allow_on_submit": 1,
|
||||||
|
"columns": 5,
|
||||||
|
"fieldname": "title",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"hidden": 1,
|
||||||
|
"label": "Title",
|
||||||
|
"no_copy": 1,
|
||||||
|
"print_hide": 1,
|
||||||
|
"read_only": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"is_submittable": 1,
|
"is_submittable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2020-03-04 17:19:29.549889",
|
"modified": "2020-05-17 22:23:24.632286",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Healthcare",
|
"module": "Healthcare",
|
||||||
"name": "Vital Signs",
|
"name": "Vital Signs",
|
||||||
@@ -273,7 +299,7 @@
|
|||||||
"show_name_in_global_search": 1,
|
"show_name_in_global_search": 1,
|
||||||
"sort_field": "modified",
|
"sort_field": "modified",
|
||||||
"sort_order": "DESC",
|
"sort_order": "DESC",
|
||||||
"title_field": "patient",
|
"title_field": "title",
|
||||||
"track_changes": 1,
|
"track_changes": 1,
|
||||||
"track_seen": 1
|
"track_seen": 1
|
||||||
}
|
}
|
||||||
@@ -9,12 +9,19 @@ from frappe.utils import cstr
|
|||||||
from frappe import _
|
from frappe import _
|
||||||
|
|
||||||
class VitalSigns(Document):
|
class VitalSigns(Document):
|
||||||
|
def validate(self):
|
||||||
|
self.set_title()
|
||||||
|
|
||||||
def on_submit(self):
|
def on_submit(self):
|
||||||
insert_vital_signs_to_medical_record(self)
|
insert_vital_signs_to_medical_record(self)
|
||||||
|
|
||||||
def on_cancel(self):
|
def on_cancel(self):
|
||||||
delete_vital_signs_from_medical_record(self)
|
delete_vital_signs_from_medical_record(self)
|
||||||
|
|
||||||
|
def set_title(self):
|
||||||
|
self.title = _('{0} on {1}').format(self.patient_name or self.patient,
|
||||||
|
frappe.utils.format_date(self.signs_date))[:100]
|
||||||
|
|
||||||
def insert_vital_signs_to_medical_record(doc):
|
def insert_vital_signs_to_medical_record(doc):
|
||||||
subject = set_subject_field(doc)
|
subject = set_subject_field(doc)
|
||||||
medical_record = frappe.new_doc('Patient Medical Record')
|
medical_record = frappe.new_doc('Patient Medical Record')
|
||||||
|
|||||||
@@ -3,83 +3,84 @@
|
|||||||
# For license information, please see license.txt
|
# For license information, please see license.txt
|
||||||
|
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
import math
|
||||||
import frappe
|
import frappe
|
||||||
from frappe import _
|
from frappe import _
|
||||||
import math
|
|
||||||
from frappe.utils import time_diff_in_hours, rounded
|
from frappe.utils import time_diff_in_hours, rounded
|
||||||
from erpnext.healthcare.doctype.healthcare_settings.healthcare_settings import get_income_account
|
from erpnext.healthcare.doctype.healthcare_settings.healthcare_settings import get_income_account
|
||||||
from erpnext.healthcare.doctype.fee_validity.fee_validity import create_fee_validity
|
from erpnext.healthcare.doctype.fee_validity.fee_validity import create_fee_validity
|
||||||
from erpnext.healthcare.doctype.lab_test.lab_test import create_multiple
|
from erpnext.healthcare.doctype.lab_test.lab_test import create_multiple
|
||||||
|
|
||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
def get_healthcare_services_to_invoice(patient):
|
def get_healthcare_services_to_invoice(patient, company):
|
||||||
patient = frappe.get_doc('Patient', patient)
|
patient = frappe.get_doc('Patient', patient)
|
||||||
|
items_to_invoice = []
|
||||||
if patient:
|
if patient:
|
||||||
validate_customer_created(patient)
|
validate_customer_created(patient)
|
||||||
items_to_invoice = []
|
# Customer validated, build a list of billable services
|
||||||
patient_appointments = frappe.get_list(
|
items_to_invoice += get_appointments_to_invoice(patient, company)
|
||||||
'Patient Appointment',
|
items_to_invoice += get_encounters_to_invoice(patient, company)
|
||||||
fields='*',
|
items_to_invoice += get_lab_tests_to_invoice(patient, company)
|
||||||
filters={'patient': patient.name, 'invoiced': 0},
|
items_to_invoice += get_clinical_procedures_to_invoice(patient, company)
|
||||||
order_by='appointment_date'
|
items_to_invoice += get_inpatient_services_to_invoice(patient, company)
|
||||||
)
|
items_to_invoice += get_therapy_sessions_to_invoice(patient, company)
|
||||||
if patient_appointments:
|
|
||||||
items_to_invoice = get_fee_validity(patient_appointments)
|
|
||||||
|
|
||||||
encounters = get_encounters_to_invoice(patient)
|
|
||||||
lab_tests = get_lab_tests_to_invoice(patient)
|
|
||||||
clinical_procedures = get_clinical_procedures_to_invoice(patient)
|
|
||||||
inpatient_services = get_inpatient_services_to_invoice(patient)
|
|
||||||
therapy_sessions = get_therapy_sessions_to_invoice(patient)
|
|
||||||
|
|
||||||
items_to_invoice += encounters + lab_tests + clinical_procedures + inpatient_services + therapy_sessions
|
|
||||||
return items_to_invoice
|
return items_to_invoice
|
||||||
|
|
||||||
|
|
||||||
def validate_customer_created(patient):
|
def validate_customer_created(patient):
|
||||||
if not frappe.db.get_value('Patient', patient.name, 'customer'):
|
if not frappe.db.get_value('Patient', patient.name, 'customer'):
|
||||||
msg = _("Please set a Customer linked to the Patient")
|
msg = _("Please set a Customer linked to the Patient")
|
||||||
msg += " <b><a href='#Form/Patient/{0}'>{0}</a></b>".format(patient.name)
|
msg += " <b><a href='#Form/Patient/{0}'>{0}</a></b>".format(patient.name)
|
||||||
frappe.throw(msg, title=_('Customer Not Found'))
|
frappe.throw(msg, title=_('Customer Not Found'))
|
||||||
|
|
||||||
def get_fee_validity(patient_appointments):
|
def get_appointments_to_invoice(patient, company):
|
||||||
if not frappe.db.get_single_value('Healthcare Settings', 'enable_free_follow_ups'):
|
appointments_to_invoice = []
|
||||||
return []
|
patient_appointments = frappe.get_list(
|
||||||
|
'Patient Appointment',
|
||||||
|
fields = '*',
|
||||||
|
filters = {'patient': patient.name, 'company': company, 'invoiced': 0},
|
||||||
|
order_by = 'appointment_date'
|
||||||
|
)
|
||||||
|
|
||||||
items_to_invoice = []
|
|
||||||
for appointment in patient_appointments:
|
for appointment in patient_appointments:
|
||||||
|
# Procedure Appointments
|
||||||
if appointment.procedure_template:
|
if appointment.procedure_template:
|
||||||
if frappe.db.get_value('Clinical Procedure Template', appointment.procedure_template, 'is_billable'):
|
if frappe.db.get_value('Clinical Procedure Template', appointment.procedure_template, 'is_billable'):
|
||||||
items_to_invoice.append({
|
appointments_to_invoice.append({
|
||||||
'reference_type': 'Patient Appointment',
|
'reference_type': 'Patient Appointment',
|
||||||
'reference_name': appointment.name,
|
'reference_name': appointment.name,
|
||||||
'service': appointment.procedure_template
|
'service': appointment.procedure_template
|
||||||
})
|
})
|
||||||
|
# Consultation Appointments, should check fee validity
|
||||||
else:
|
else:
|
||||||
fee_validity = frappe.db.exists('Fee Validity Reference', {'appointment': appointment.name})
|
if frappe.db.get_single_value('Healthcare Settings', 'enable_free_follow_ups') and \
|
||||||
if not fee_validity:
|
frappe.db.exists('Fee Validity Reference', {'appointment': appointment.name}):
|
||||||
practitioner_charge = 0
|
continue # Skip invoicing, fee validty present
|
||||||
income_account = None
|
practitioner_charge = 0
|
||||||
service_item = None
|
income_account = None
|
||||||
if appointment.practitioner:
|
service_item = None
|
||||||
service_item, practitioner_charge = get_service_item_and_practitioner_charge(appointment)
|
if appointment.practitioner:
|
||||||
income_account = get_income_account(appointment.practitioner, appointment.company)
|
service_item, practitioner_charge = get_service_item_and_practitioner_charge(appointment)
|
||||||
items_to_invoice.append({
|
income_account = get_income_account(appointment.practitioner, appointment.company)
|
||||||
'reference_type': 'Patient Appointment',
|
appointments_to_invoice.append({
|
||||||
'reference_name': appointment.name,
|
'reference_type': 'Patient Appointment',
|
||||||
'service': service_item,
|
'reference_name': appointment.name,
|
||||||
'rate': practitioner_charge,
|
'service': service_item,
|
||||||
'income_account': income_account
|
'rate': practitioner_charge,
|
||||||
})
|
'income_account': income_account
|
||||||
|
})
|
||||||
|
|
||||||
return items_to_invoice
|
return appointments_to_invoice
|
||||||
|
|
||||||
|
|
||||||
def get_encounters_to_invoice(patient):
|
def get_encounters_to_invoice(patient, company):
|
||||||
encounters_to_invoice = []
|
encounters_to_invoice = []
|
||||||
encounters = frappe.get_list(
|
encounters = frappe.get_list(
|
||||||
'Patient Encounter',
|
'Patient Encounter',
|
||||||
fields=['*'],
|
fields=['*'],
|
||||||
filters={'patient': patient.name, 'invoiced': False, 'docstatus': 1}
|
filters={'patient': patient.name, 'company': company, 'invoiced': False, 'docstatus': 1}
|
||||||
)
|
)
|
||||||
if encounters:
|
if encounters:
|
||||||
for encounter in encounters:
|
for encounter in encounters:
|
||||||
@@ -102,12 +103,12 @@ def get_encounters_to_invoice(patient):
|
|||||||
return encounters_to_invoice
|
return encounters_to_invoice
|
||||||
|
|
||||||
|
|
||||||
def get_lab_tests_to_invoice(patient):
|
def get_lab_tests_to_invoice(patient, company):
|
||||||
lab_tests_to_invoice = []
|
lab_tests_to_invoice = []
|
||||||
lab_tests = frappe.get_list(
|
lab_tests = frappe.get_list(
|
||||||
'Lab Test',
|
'Lab Test',
|
||||||
fields=['name', 'template'],
|
fields=['name', 'template'],
|
||||||
filters={'patient': patient.name, 'invoiced': False, 'docstatus': 1}
|
filters={'patient': patient.name, 'company': company, 'invoiced': False, 'docstatus': 1}
|
||||||
)
|
)
|
||||||
for lab_test in lab_tests:
|
for lab_test in lab_tests:
|
||||||
item, is_billable = frappe.get_cached_value('Lab Test Template', lab_test.template, ['item', 'is_billable'])
|
item, is_billable = frappe.get_cached_value('Lab Test Template', lab_test.template, ['item', 'is_billable'])
|
||||||
@@ -143,12 +144,12 @@ def get_lab_tests_to_invoice(patient):
|
|||||||
return lab_tests_to_invoice
|
return lab_tests_to_invoice
|
||||||
|
|
||||||
|
|
||||||
def get_clinical_procedures_to_invoice(patient):
|
def get_clinical_procedures_to_invoice(patient, company):
|
||||||
clinical_procedures_to_invoice = []
|
clinical_procedures_to_invoice = []
|
||||||
procedures = frappe.get_list(
|
procedures = frappe.get_list(
|
||||||
'Clinical Procedure',
|
'Clinical Procedure',
|
||||||
fields='*',
|
fields='*',
|
||||||
filters={'patient': patient.name, 'invoiced': False}
|
filters={'patient': patient.name, 'company': company, 'invoiced': False}
|
||||||
)
|
)
|
||||||
for procedure in procedures:
|
for procedure in procedures:
|
||||||
if not procedure.appointment:
|
if not procedure.appointment:
|
||||||
@@ -204,7 +205,7 @@ def get_clinical_procedures_to_invoice(patient):
|
|||||||
return clinical_procedures_to_invoice
|
return clinical_procedures_to_invoice
|
||||||
|
|
||||||
|
|
||||||
def get_inpatient_services_to_invoice(patient):
|
def get_inpatient_services_to_invoice(patient, company):
|
||||||
services_to_invoice = []
|
services_to_invoice = []
|
||||||
inpatient_services = frappe.db.sql(
|
inpatient_services = frappe.db.sql(
|
||||||
'''
|
'''
|
||||||
@@ -214,10 +215,11 @@ def get_inpatient_services_to_invoice(patient):
|
|||||||
`tabInpatient Record` ip, `tabInpatient Occupancy` io
|
`tabInpatient Record` ip, `tabInpatient Occupancy` io
|
||||||
WHERE
|
WHERE
|
||||||
ip.patient=%s
|
ip.patient=%s
|
||||||
|
and ip.company=%s
|
||||||
and io.parent=ip.name
|
and io.parent=ip.name
|
||||||
and io.left=1
|
and io.left=1
|
||||||
and io.invoiced=0
|
and io.invoiced=0
|
||||||
''', (patient.name), as_dict=1)
|
''', (patient.name, company), as_dict=1)
|
||||||
|
|
||||||
for inpatient_occupancy in inpatient_services:
|
for inpatient_occupancy in inpatient_services:
|
||||||
service_unit_type = frappe.db.get_value('Healthcare Service Unit', inpatient_occupancy.service_unit, 'service_unit_type')
|
service_unit_type = frappe.db.get_value('Healthcare Service Unit', inpatient_occupancy.service_unit, 'service_unit_type')
|
||||||
@@ -244,12 +246,12 @@ def get_inpatient_services_to_invoice(patient):
|
|||||||
return services_to_invoice
|
return services_to_invoice
|
||||||
|
|
||||||
|
|
||||||
def get_therapy_sessions_to_invoice(patient):
|
def get_therapy_sessions_to_invoice(patient, company):
|
||||||
therapy_sessions_to_invoice = []
|
therapy_sessions_to_invoice = []
|
||||||
therapy_sessions = frappe.get_list(
|
therapy_sessions = frappe.get_list(
|
||||||
'Therapy Session',
|
'Therapy Session',
|
||||||
fields='*',
|
fields='*',
|
||||||
filters={'patient': patient.name, 'invoiced': False}
|
filters={'patient': patient.name, 'invoiced': 0, 'company': company}
|
||||||
)
|
)
|
||||||
for therapy in therapy_sessions:
|
for therapy in therapy_sessions:
|
||||||
if not therapy.appointment:
|
if not therapy.appointment:
|
||||||
@@ -396,6 +398,7 @@ def check_fee_validity(appointment):
|
|||||||
|
|
||||||
def manage_fee_validity(appointment):
|
def manage_fee_validity(appointment):
|
||||||
fee_validity = check_fee_validity(appointment)
|
fee_validity = check_fee_validity(appointment)
|
||||||
|
|
||||||
if fee_validity:
|
if fee_validity:
|
||||||
if appointment.status == 'Cancelled' and fee_validity.visited > 0:
|
if appointment.status == 'Cancelled' and fee_validity.visited > 0:
|
||||||
fee_validity.visited -= 1
|
fee_validity.visited -= 1
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ class Attendance(Document):
|
|||||||
date_of_joining = frappe.db.get_value("Employee", self.employee, "date_of_joining")
|
date_of_joining = frappe.db.get_value("Employee", self.employee, "date_of_joining")
|
||||||
|
|
||||||
# leaves can be marked for future dates
|
# leaves can be marked for future dates
|
||||||
if self.status not in ('On Leave', 'Half Day') and getdate(self.attendance_date) > getdate(nowdate()):
|
if self.status != 'On Leave' and not self.leave_application and getdate(self.attendance_date) > getdate(nowdate()):
|
||||||
frappe.throw(_("Attendance can not be marked for future dates"))
|
frappe.throw(_("Attendance can not be marked for future dates"))
|
||||||
elif date_of_joining and getdate(self.attendance_date) < getdate(date_of_joining):
|
elif date_of_joining and getdate(self.attendance_date) < getdate(date_of_joining):
|
||||||
frappe.throw(_("Attendance date can not be less than employee's joining date"))
|
frappe.throw(_("Attendance date can not be less than employee's joining date"))
|
||||||
@@ -41,7 +41,7 @@ class Attendance(Document):
|
|||||||
leave_record = frappe.db.sql("""
|
leave_record = frappe.db.sql("""
|
||||||
select leave_type, half_day, half_day_date
|
select leave_type, half_day, half_day_date
|
||||||
from `tabLeave Application`
|
from `tabLeave Application`
|
||||||
where employee = %s
|
where employee = %s
|
||||||
and %s between from_date and to_date
|
and %s between from_date and to_date
|
||||||
and status = 'Approved'
|
and status = 'Approved'
|
||||||
and docstatus = 1
|
and docstatus = 1
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
"is_group",
|
"is_group",
|
||||||
"disabled",
|
"disabled",
|
||||||
"section_break_4",
|
"section_break_4",
|
||||||
|
"payroll_cost_center",
|
||||||
|
"column_break_9",
|
||||||
"leave_block_list",
|
"leave_block_list",
|
||||||
"leave_section",
|
"leave_section",
|
||||||
"leave_approvers",
|
"leave_approvers",
|
||||||
@@ -125,13 +127,23 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "column_break_3",
|
"fieldname": "column_break_3",
|
||||||
"fieldtype": "Column Break"
|
"fieldtype": "Column Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "payroll_cost_center",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"label": "Payroll Cost Center",
|
||||||
|
"options": "Cost Center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "column_break_9",
|
||||||
|
"fieldtype": "Column Break"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"icon": "fa fa-sitemap",
|
"icon": "fa fa-sitemap",
|
||||||
"idx": 1,
|
"idx": 1,
|
||||||
"is_tree": 1,
|
"is_tree": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2020-03-18 18:03:27.784362",
|
"modified": "2020-05-05 18:49:28.503931",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "HR",
|
"module": "HR",
|
||||||
"name": "Department",
|
"name": "Department",
|
||||||
|
|||||||
@@ -60,6 +60,8 @@
|
|||||||
"default_shift",
|
"default_shift",
|
||||||
"salary_information",
|
"salary_information",
|
||||||
"salary_mode",
|
"salary_mode",
|
||||||
|
"payroll_cost_center",
|
||||||
|
"column_break_52",
|
||||||
"bank_name",
|
"bank_name",
|
||||||
"bank_ac_no",
|
"bank_ac_no",
|
||||||
"health_insurance_section",
|
"health_insurance_section",
|
||||||
@@ -783,13 +785,25 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "column_break_19",
|
"fieldname": "column_break_19",
|
||||||
"fieldtype": "Column Break"
|
"fieldtype": "Column Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fetch_from": "department.payroll_cost_center",
|
||||||
|
"fetch_if_empty": 1,
|
||||||
|
"fieldname": "payroll_cost_center",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"label": "Payroll Cost Center",
|
||||||
|
"options": "Cost Center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "column_break_52",
|
||||||
|
"fieldtype": "Column Break"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"icon": "fa fa-user",
|
"icon": "fa fa-user",
|
||||||
"idx": 24,
|
"idx": 24,
|
||||||
"image_field": "image",
|
"image_field": "image",
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2020-04-08 12:25:34.306695",
|
"modified": "2020-05-05 18:51:03.152503",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "HR",
|
"module": "HR",
|
||||||
"name": "Employee",
|
"name": "Employee",
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ class TestEmployee(unittest.TestCase):
|
|||||||
employee1_doc.status = 'Left'
|
employee1_doc.status = 'Left'
|
||||||
self.assertRaises(EmployeeLeftValidationError, employee1_doc.save)
|
self.assertRaises(EmployeeLeftValidationError, employee1_doc.save)
|
||||||
|
|
||||||
def make_employee(user, company=None):
|
def make_employee(user, company=None, **kwargs):
|
||||||
if not frappe.db.get_value("User", user):
|
if not frappe.db.get_value("User", user):
|
||||||
frappe.get_doc({
|
frappe.get_doc({
|
||||||
"doctype": "User",
|
"doctype": "User",
|
||||||
@@ -55,7 +55,7 @@ def make_employee(user, company=None):
|
|||||||
"roles": [{"doctype": "Has Role", "role": "Employee"}]
|
"roles": [{"doctype": "Has Role", "role": "Employee"}]
|
||||||
}).insert()
|
}).insert()
|
||||||
|
|
||||||
if not frappe.db.get_value("Employee", { "user_id": user, "company": company or erpnext.get_default_company() }):
|
if not frappe.db.get_value("Employee", {"user_id": user}):
|
||||||
employee = frappe.get_doc({
|
employee = frappe.get_doc({
|
||||||
"doctype": "Employee",
|
"doctype": "Employee",
|
||||||
"naming_series": "EMP-",
|
"naming_series": "EMP-",
|
||||||
@@ -71,7 +71,10 @@ def make_employee(user, company=None):
|
|||||||
"prefered_email": user,
|
"prefered_email": user,
|
||||||
"status": "Active",
|
"status": "Active",
|
||||||
"employment_type": "Intern"
|
"employment_type": "Intern"
|
||||||
}).insert()
|
})
|
||||||
|
if kwargs:
|
||||||
|
employee.update(kwargs)
|
||||||
|
employee.insert()
|
||||||
return employee.name
|
return employee.name
|
||||||
else:
|
else:
|
||||||
return frappe.get_value("Employee", {"employee_name":user}, "name")
|
return frappe.get_value("Employee", {"employee_name":user}, "name")
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ class PayrollEntry(Document):
|
|||||||
ifnull(salary_slip_based_on_timesheet,0) = %(salary_slip_based_on_timesheet)s
|
ifnull(salary_slip_based_on_timesheet,0) = %(salary_slip_based_on_timesheet)s
|
||||||
{condition}""".format(condition=condition),
|
{condition}""".format(condition=condition),
|
||||||
{"company": self.company, "salary_slip_based_on_timesheet":self.salary_slip_based_on_timesheet})
|
{"company": self.company, "salary_slip_based_on_timesheet":self.salary_slip_based_on_timesheet})
|
||||||
|
|
||||||
if sal_struct:
|
if sal_struct:
|
||||||
cond += "and t2.salary_structure IN %(sal_struct)s "
|
cond += "and t2.salary_structure IN %(sal_struct)s "
|
||||||
cond += "and %(from_date)s >= t2.from_date"
|
cond += "and %(from_date)s >= t2.from_date"
|
||||||
@@ -138,7 +139,7 @@ class PayrollEntry(Document):
|
|||||||
cond = self.get_filter_condition()
|
cond = self.get_filter_condition()
|
||||||
|
|
||||||
ss_list = frappe.db.sql("""
|
ss_list = frappe.db.sql("""
|
||||||
select t1.name, t1.salary_structure from `tabSalary Slip` t1
|
select t1.name, t1.salary_structure, t1.payroll_cost_center from `tabSalary Slip` t1
|
||||||
where t1.docstatus = %s and t1.start_date >= %s and t1.end_date <= %s
|
where t1.docstatus = %s and t1.start_date >= %s and t1.end_date <= %s
|
||||||
and (t1.journal_entry is null or t1.journal_entry = "") and ifnull(salary_slip_based_on_timesheet,0) = %s %s
|
and (t1.journal_entry is null or t1.journal_entry = "") and ifnull(salary_slip_based_on_timesheet,0) = %s %s
|
||||||
""" % ('%s', '%s', '%s','%s', cond), (ss_status, self.start_date, self.end_date, self.salary_slip_based_on_timesheet), as_dict=as_dict)
|
""" % ('%s', '%s', '%s','%s', cond), (ss_status, self.start_date, self.end_date, self.salary_slip_based_on_timesheet), as_dict=as_dict)
|
||||||
@@ -169,10 +170,14 @@ class PayrollEntry(Document):
|
|||||||
|
|
||||||
def get_salary_components(self, component_type):
|
def get_salary_components(self, component_type):
|
||||||
salary_slips = self.get_sal_slip_list(ss_status = 1, as_dict = True)
|
salary_slips = self.get_sal_slip_list(ss_status = 1, as_dict = True)
|
||||||
if salary_slips:
|
if salary_slips:
|
||||||
salary_components = frappe.db.sql("""select salary_component, amount, parentfield
|
salary_components = frappe.db.sql("""
|
||||||
from `tabSalary Detail` where parentfield = '%s' and parent in (%s)""" %
|
select ssd.salary_component, ssd.amount, ssd.parentfield, ss.payroll_cost_center
|
||||||
(component_type, ', '.join(['%s']*len(salary_slips))), tuple([d.name for d in salary_slips]), as_dict=True)
|
from `tabSalary Slip` ss, `tabSalary Detail` ssd
|
||||||
|
where ss.name = ssd.parent and ssd.parentfield = '%s' and ss.name in (%s)
|
||||||
|
""" % (component_type, ', '.join(['%s']*len(salary_slips))),
|
||||||
|
tuple([d.name for d in salary_slips]), as_dict=True)
|
||||||
|
|
||||||
return salary_components
|
return salary_components
|
||||||
|
|
||||||
def get_salary_component_total(self, component_type = None):
|
def get_salary_component_total(self, component_type = None):
|
||||||
@@ -186,15 +191,16 @@ class PayrollEntry(Document):
|
|||||||
if is_flexible_benefit == 1 and only_tax_impact ==1:
|
if is_flexible_benefit == 1 and only_tax_impact ==1:
|
||||||
add_component_to_accrual_jv_entry = False
|
add_component_to_accrual_jv_entry = False
|
||||||
if add_component_to_accrual_jv_entry:
|
if add_component_to_accrual_jv_entry:
|
||||||
component_dict[item['salary_component']] = component_dict.get(item['salary_component'], 0) + item['amount']
|
component_dict[(item.salary_component, item.payroll_cost_center)] \
|
||||||
|
= component_dict.get((item.salary_component, item.payroll_cost_center), 0) + flt(item.amount)
|
||||||
account_details = self.get_account(component_dict = component_dict)
|
account_details = self.get_account(component_dict = component_dict)
|
||||||
return account_details
|
return account_details
|
||||||
|
|
||||||
def get_account(self, component_dict = None):
|
def get_account(self, component_dict = None):
|
||||||
account_dict = {}
|
account_dict = {}
|
||||||
for s, a in component_dict.items():
|
for key, amount in component_dict.items():
|
||||||
account = self.get_salary_component_account(s)
|
account = self.get_salary_component_account(key[0])
|
||||||
account_dict[account] = account_dict.get(account, 0) + a
|
account_dict[(account, key[1])] = account_dict.get((account, key[1]), 0) + amount
|
||||||
return account_dict
|
return account_dict
|
||||||
|
|
||||||
def get_default_payroll_payable_account(self):
|
def get_default_payroll_payable_account(self):
|
||||||
@@ -227,23 +233,23 @@ class PayrollEntry(Document):
|
|||||||
payable_amount = 0
|
payable_amount = 0
|
||||||
|
|
||||||
# Earnings
|
# Earnings
|
||||||
for acc, amount in earnings.items():
|
for acc_cc, amount in earnings.items():
|
||||||
payable_amount += flt(amount, precision)
|
payable_amount += flt(amount, precision)
|
||||||
accounts.append({
|
accounts.append({
|
||||||
"account": acc,
|
"account": acc_cc[0],
|
||||||
"debit_in_account_currency": flt(amount, precision),
|
"debit_in_account_currency": flt(amount, precision),
|
||||||
"party_type": '',
|
"party_type": '',
|
||||||
"cost_center": self.cost_center,
|
"cost_center": acc_cc[1] or self.cost_center,
|
||||||
"project": self.project
|
"project": self.project
|
||||||
})
|
})
|
||||||
|
|
||||||
# Deductions
|
# Deductions
|
||||||
for acc, amount in deductions.items():
|
for acc_cc, amount in deductions.items():
|
||||||
payable_amount -= flt(amount, precision)
|
payable_amount -= flt(amount, precision)
|
||||||
accounts.append({
|
accounts.append({
|
||||||
"account": acc,
|
"account": acc_cc[0],
|
||||||
"credit_in_account_currency": flt(amount, precision),
|
"credit_in_account_currency": flt(amount, precision),
|
||||||
"cost_center": self.cost_center,
|
"cost_center": acc_cc[1] or self.cost_center,
|
||||||
"party_type": '',
|
"party_type": '',
|
||||||
"project": self.project
|
"project": self.project
|
||||||
})
|
})
|
||||||
@@ -253,6 +259,7 @@ class PayrollEntry(Document):
|
|||||||
"account": default_payroll_payable_account,
|
"account": default_payroll_payable_account,
|
||||||
"credit_in_account_currency": flt(payable_amount, precision),
|
"credit_in_account_currency": flt(payable_amount, precision),
|
||||||
"party_type": '',
|
"party_type": '',
|
||||||
|
"cost_center": self.cost_center
|
||||||
})
|
})
|
||||||
|
|
||||||
journal_entry.set("accounts", accounts)
|
journal_entry.set("accounts", accounts)
|
||||||
|
|||||||
@@ -10,15 +10,16 @@ from frappe.utils import add_months
|
|||||||
from erpnext.hr.doctype.payroll_entry.payroll_entry import get_start_end_dates, get_end_date
|
from erpnext.hr.doctype.payroll_entry.payroll_entry import get_start_end_dates, get_end_date
|
||||||
from erpnext.hr.doctype.employee.test_employee import make_employee
|
from erpnext.hr.doctype.employee.test_employee import make_employee
|
||||||
from erpnext.hr.doctype.salary_slip.test_salary_slip import get_salary_component_account, \
|
from erpnext.hr.doctype.salary_slip.test_salary_slip import get_salary_component_account, \
|
||||||
make_earning_salary_component, make_deduction_salary_component
|
make_earning_salary_component, make_deduction_salary_component, create_account
|
||||||
from erpnext.hr.doctype.salary_structure.test_salary_structure import make_salary_structure
|
from erpnext.hr.doctype.salary_structure.test_salary_structure import make_salary_structure
|
||||||
from erpnext.loan_management.doctype.loan.test_loan import create_loan, make_loan_disbursement_entry
|
from erpnext.loan_management.doctype.loan.test_loan import create_loan, make_loan_disbursement_entry
|
||||||
from erpnext.loan_management.doctype.process_loan_interest_accrual.process_loan_interest_accrual import process_loan_interest_accrual_for_term_loans
|
from erpnext.loan_management.doctype.process_loan_interest_accrual.process_loan_interest_accrual import process_loan_interest_accrual_for_term_loans
|
||||||
|
|
||||||
class TestPayrollEntry(unittest.TestCase):
|
class TestPayrollEntry(unittest.TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
for dt in ["Salary Slip", "Salary Component", "Salary Component Account", "Payroll Entry", "Salary Structure"]:
|
for dt in ["Salary Slip", "Salary Component", "Salary Component Account",
|
||||||
frappe.db.sql("delete from `tab%s`" % dt)
|
"Payroll Entry", "Salary Structure", "Salary Structure Assignment", "Payroll Employee Detail", "Additional Salary"]:
|
||||||
|
frappe.db.sql("delete from `tab%s`" % dt)
|
||||||
|
|
||||||
make_earning_salary_component(setup=True, company_list=["_Test Company"])
|
make_earning_salary_component(setup=True, company_list=["_Test Company"])
|
||||||
make_deduction_salary_component(setup=True, company_list=["_Test Company"])
|
make_deduction_salary_component(setup=True, company_list=["_Test Company"])
|
||||||
@@ -33,11 +34,59 @@ class TestPayrollEntry(unittest.TestCase):
|
|||||||
get_salary_component_account(data.name)
|
get_salary_component_account(data.name)
|
||||||
|
|
||||||
employee = frappe.db.get_value("Employee", {'company': company})
|
employee = frappe.db.get_value("Employee", {'company': company})
|
||||||
make_salary_structure("_Test Salary Structure", "Monthly", employee)
|
make_salary_structure("_Test Salary Structure", "Monthly", employee, company=company)
|
||||||
dates = get_start_end_dates('Monthly', nowdate())
|
dates = get_start_end_dates('Monthly', nowdate())
|
||||||
if not frappe.db.get_value("Salary Slip", {"start_date": dates.start_date, "end_date": dates.end_date}):
|
if not frappe.db.get_value("Salary Slip", {"start_date": dates.start_date, "end_date": dates.end_date}):
|
||||||
make_payroll_entry(start_date=dates.start_date, end_date=dates.end_date)
|
make_payroll_entry(start_date=dates.start_date, end_date=dates.end_date)
|
||||||
|
|
||||||
|
def test_payroll_entry_with_employee_cost_center(self): # pylint: disable=no-self-use
|
||||||
|
for data in frappe.get_all('Salary Component', fields = ["name"]):
|
||||||
|
if not frappe.db.get_value('Salary Component Account',
|
||||||
|
{'parent': data.name, 'company': "_Test Company"}, 'name'):
|
||||||
|
get_salary_component_account(data.name)
|
||||||
|
|
||||||
|
if not frappe.db.exists('Department', "cc - _TC"):
|
||||||
|
frappe.get_doc({
|
||||||
|
'doctype': 'Department',
|
||||||
|
'department_name': "cc",
|
||||||
|
"company": "_Test Company"
|
||||||
|
}).insert()
|
||||||
|
|
||||||
|
employee1 = make_employee("test_employee1@example.com", payroll_cost_center="_Test Cost Center - _TC",
|
||||||
|
department="cc - _TC", company="_Test Company")
|
||||||
|
employee2 = make_employee("test_employee2@example.com", payroll_cost_center="_Test Cost Center 2 - _TC",
|
||||||
|
department="cc - _TC", company="_Test Company")
|
||||||
|
|
||||||
|
make_salary_structure("_Test Salary Structure 1", "Monthly", employee1, company="_Test Company")
|
||||||
|
make_salary_structure("_Test Salary Structure 2", "Monthly", employee2, company="_Test Company")
|
||||||
|
|
||||||
|
if not frappe.db.exists("Account", "_Test Payroll Payable - _TC"):
|
||||||
|
create_account(account_name="_Test Payroll Payable",
|
||||||
|
company="_Test Company", parent_account="Current Liabilities - _TC")
|
||||||
|
frappe.db.set_value("Company", "_Test Company", "default_payroll_payable_account",
|
||||||
|
"_Test Payroll Payable - _TC")
|
||||||
|
|
||||||
|
dates = get_start_end_dates('Monthly', nowdate())
|
||||||
|
if not frappe.db.get_value("Salary Slip", {"start_date": dates.start_date, "end_date": dates.end_date}):
|
||||||
|
pe = make_payroll_entry(start_date=dates.start_date, end_date=dates.end_date,
|
||||||
|
department="cc - _TC", company="_Test Company", payment_account="Cash - _TC", cost_center="Main - _TC")
|
||||||
|
je = frappe.db.get_value("Salary Slip", {"payroll_entry": pe.name}, "journal_entry")
|
||||||
|
je_entries = frappe.db.sql("""
|
||||||
|
select account, cost_center, debit, credit
|
||||||
|
from `tabJournal Entry Account`
|
||||||
|
where parent=%s
|
||||||
|
order by account, cost_center
|
||||||
|
""", je)
|
||||||
|
expected_je = (
|
||||||
|
('_Test Payroll Payable - _TC', 'Main - _TC', 0.0, 155600.0),
|
||||||
|
('Salary - _TC', '_Test Cost Center - _TC', 78000.0, 0.0),
|
||||||
|
('Salary - _TC', '_Test Cost Center 2 - _TC', 78000.0, 0.0),
|
||||||
|
('Salary Deductions - _TC', '_Test Cost Center - _TC', 0.0, 200.0),
|
||||||
|
('Salary Deductions - _TC', '_Test Cost Center 2 - _TC', 0.0, 200.0)
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(je_entries, expected_je)
|
||||||
|
|
||||||
def test_get_end_date(self):
|
def test_get_end_date(self):
|
||||||
self.assertEqual(get_end_date('2017-01-01', 'monthly'), {'end_date': '2017-01-31'})
|
self.assertEqual(get_end_date('2017-01-01', 'monthly'), {'end_date': '2017-01-31'})
|
||||||
self.assertEqual(get_end_date('2017-02-01', 'monthly'), {'end_date': '2017-02-28'})
|
self.assertEqual(get_end_date('2017-02-01', 'monthly'), {'end_date': '2017-02-28'})
|
||||||
@@ -49,7 +98,6 @@ class TestPayrollEntry(unittest.TestCase):
|
|||||||
self.assertEqual(get_end_date('2017-02-15', 'daily'), {'end_date': '2017-02-15'})
|
self.assertEqual(get_end_date('2017-02-15', 'daily'), {'end_date': '2017-02-15'})
|
||||||
|
|
||||||
def test_loan(self):
|
def test_loan(self):
|
||||||
|
|
||||||
branch = "Test Employee Branch"
|
branch = "Test Employee Branch"
|
||||||
applicant = make_employee("test_employee@loan.com", company="_Test Company")
|
applicant = make_employee("test_employee@loan.com", company="_Test Company")
|
||||||
company = "_Test Company"
|
company = "_Test Company"
|
||||||
@@ -116,6 +164,7 @@ def make_payroll_entry(**args):
|
|||||||
payroll_entry.posting_date = nowdate()
|
payroll_entry.posting_date = nowdate()
|
||||||
payroll_entry.payroll_frequency = "Monthly"
|
payroll_entry.payroll_frequency = "Monthly"
|
||||||
payroll_entry.branch = args.branch or None
|
payroll_entry.branch = args.branch or None
|
||||||
|
payroll_entry.department = args.department or None
|
||||||
|
|
||||||
if args.cost_center:
|
if args.cost_center:
|
||||||
payroll_entry.cost_center = args.cost_center
|
payroll_entry.cost_center = args.cost_center
|
||||||
@@ -123,6 +172,7 @@ def make_payroll_entry(**args):
|
|||||||
if args.payment_account:
|
if args.payment_account:
|
||||||
payroll_entry.payment_account = args.payment_account
|
payroll_entry.payment_account = args.payment_account
|
||||||
|
|
||||||
|
payroll_entry.fill_employee_details()
|
||||||
payroll_entry.save()
|
payroll_entry.save()
|
||||||
payroll_entry.create_salary_slips()
|
payroll_entry.create_salary_slips()
|
||||||
payroll_entry.submit_salary_slips()
|
payroll_entry.submit_salary_slips()
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
"department",
|
"department",
|
||||||
"designation",
|
"designation",
|
||||||
"branch",
|
"branch",
|
||||||
|
"payroll_cost_center",
|
||||||
"column_break1",
|
"column_break1",
|
||||||
"status",
|
"status",
|
||||||
"journal_entry",
|
"journal_entry",
|
||||||
@@ -459,13 +460,22 @@
|
|||||||
"options": "Salary Slip",
|
"options": "Salary Slip",
|
||||||
"print_hide": 1,
|
"print_hide": 1,
|
||||||
"read_only": 1
|
"read_only": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fetch_from": "employee.payroll_cost_center",
|
||||||
|
"fetch_if_empty": 1,
|
||||||
|
"fieldname": "payroll_cost_center",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"label": "Payroll Cost Center",
|
||||||
|
"options": "Cost Center",
|
||||||
|
"read_only": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"icon": "fa fa-file-text",
|
"icon": "fa fa-file-text",
|
||||||
"idx": 9,
|
"idx": 9,
|
||||||
"is_submittable": 1,
|
"is_submittable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2020-04-14 20:02:53.159827",
|
"modified": "2020-05-05 18:55:26.173629",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "HR",
|
"module": "HR",
|
||||||
"name": "Salary Slip",
|
"name": "Salary Slip",
|
||||||
|
|||||||
@@ -422,22 +422,32 @@ def get_salary_component_account(sal_comp, company_list=None):
|
|||||||
sal_comp = frappe.get_doc("Salary Component", sal_comp)
|
sal_comp = frappe.get_doc("Salary Component", sal_comp)
|
||||||
if not sal_comp.get("accounts"):
|
if not sal_comp.get("accounts"):
|
||||||
for d in company_list:
|
for d in company_list:
|
||||||
|
company_abbr = frappe.get_cached_value('Company', d, 'abbr')
|
||||||
|
|
||||||
|
if sal_comp.type == "Earning":
|
||||||
|
account_name = "Salary"
|
||||||
|
parent_account = "Indirect Expenses - " + company_abbr
|
||||||
|
else:
|
||||||
|
account_name = "Salary Deductions"
|
||||||
|
parent_account = "Current Liabilities - " + company_abbr
|
||||||
|
|
||||||
sal_comp.append("accounts", {
|
sal_comp.append("accounts", {
|
||||||
"company": d,
|
"company": d,
|
||||||
"default_account": create_account(d)
|
"default_account": create_account(account_name, d, parent_account)
|
||||||
})
|
})
|
||||||
sal_comp.save()
|
sal_comp.save()
|
||||||
|
|
||||||
def create_account(company):
|
def create_account(account_name, company, parent_account):
|
||||||
salary_account = frappe.db.get_value("Account", "Salary - " + frappe.get_cached_value('Company', company, 'abbr'))
|
company_abbr = frappe.get_cached_value('Company', company, 'abbr')
|
||||||
if not salary_account:
|
account = frappe.db.get_value("Account", account_name + " - " + company_abbr)
|
||||||
|
if not account:
|
||||||
frappe.get_doc({
|
frappe.get_doc({
|
||||||
"doctype": "Account",
|
"doctype": "Account",
|
||||||
"account_name": "Salary",
|
"account_name": account_name,
|
||||||
"parent_account": "Indirect Expenses - " + frappe.get_cached_value('Company', company, 'abbr'),
|
"parent_account": parent_account,
|
||||||
"company": company
|
"company": company
|
||||||
}).insert()
|
}).insert()
|
||||||
return salary_account
|
return account
|
||||||
|
|
||||||
def make_earning_salary_component(setup=False, test_tax=False, company_list=None):
|
def make_earning_salary_component(setup=False, test_tax=False, company_list=None):
|
||||||
data = [
|
data = [
|
||||||
@@ -683,7 +693,7 @@ def setup_test():
|
|||||||
make_earning_salary_component(setup=True, company_list=["_Test Company"])
|
make_earning_salary_component(setup=True, company_list=["_Test Company"])
|
||||||
make_deduction_salary_component(setup=True, company_list=["_Test Company"])
|
make_deduction_salary_component(setup=True, company_list=["_Test Company"])
|
||||||
|
|
||||||
for dt in ["Leave Application", "Leave Allocation", "Salary Slip", "Attendance"]:
|
for dt in ["Leave Application", "Leave Allocation", "Salary Slip", "Attendance", "Additional Salary"]:
|
||||||
frappe.db.sql("delete from `tab%s`" % dt)
|
frappe.db.sql("delete from `tab%s`" % dt)
|
||||||
|
|
||||||
make_holiday_list()
|
make_holiday_list()
|
||||||
|
|||||||
@@ -153,12 +153,16 @@ def make_salary_slip(source_name, target_doc = None, employee = None, as_print =
|
|||||||
def postprocess(source, target):
|
def postprocess(source, target):
|
||||||
if employee:
|
if employee:
|
||||||
employee_details = frappe.db.get_value("Employee", employee,
|
employee_details = frappe.db.get_value("Employee", employee,
|
||||||
["employee_name", "branch", "designation", "department"], as_dict=1)
|
["employee_name", "branch", "designation", "department", "payroll_cost_center"], as_dict=1)
|
||||||
target.employee = employee
|
target.employee = employee
|
||||||
target.employee_name = employee_details.employee_name
|
target.employee_name = employee_details.employee_name
|
||||||
target.branch = employee_details.branch
|
target.branch = employee_details.branch
|
||||||
target.designation = employee_details.designation
|
target.designation = employee_details.designation
|
||||||
target.department = employee_details.department
|
target.department = employee_details.department
|
||||||
|
target.payroll_cost_center = employee_details.payroll_cost_center
|
||||||
|
if not target.payroll_cost_center and target.department:
|
||||||
|
target.payroll_cost_center = frappe.db.get_value("Department", target.department, "payroll_cost_center")
|
||||||
|
|
||||||
target.run_method('process_salary_structure', for_preview=for_preview)
|
target.run_method('process_salary_structure', for_preview=for_preview)
|
||||||
|
|
||||||
doc = get_mapped_doc("Salary Structure", source_name, {
|
doc = get_mapped_doc("Salary Structure", source_name, {
|
||||||
|
|||||||
@@ -128,6 +128,7 @@ def make_salary_structure(salary_structure, payroll_frequency, employee=None, do
|
|||||||
salary_structure_doc.insert()
|
salary_structure_doc.insert()
|
||||||
if not dont_submit:
|
if not dont_submit:
|
||||||
salary_structure_doc.submit()
|
salary_structure_doc.submit()
|
||||||
|
|
||||||
else:
|
else:
|
||||||
salary_structure_doc = frappe.get_doc("Salary Structure", salary_structure)
|
salary_structure_doc = frappe.get_doc("Salary Structure", salary_structure)
|
||||||
|
|
||||||
|
|||||||
@@ -684,3 +684,4 @@ execute:frappe.delete_doc_if_exists("Page", "appointment-analytic")
|
|||||||
execute:frappe.rename_doc("Desk Page", "Getting Started", "Home", force=True)
|
execute:frappe.rename_doc("Desk Page", "Getting Started", "Home", force=True)
|
||||||
erpnext.patches.v12_0.unset_customer_supplier_based_on_type_of_item_price
|
erpnext.patches.v12_0.unset_customer_supplier_based_on_type_of_item_price
|
||||||
erpnext.patches.v12_0.set_valid_till_date_in_supplier_quotation
|
erpnext.patches.v12_0.set_valid_till_date_in_supplier_quotation
|
||||||
|
erpnext.patches.v12_0.set_serial_no_status
|
||||||
|
|||||||
17
erpnext/patches/v12_0/set_serial_no_status.py
Normal file
17
erpnext/patches/v12_0/set_serial_no_status.py
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
from __future__ import unicode_literals
|
||||||
|
import frappe
|
||||||
|
from frappe.utils import getdate, nowdate
|
||||||
|
|
||||||
|
def execute():
|
||||||
|
frappe.reload_doc('stock', 'doctype', 'serial_no')
|
||||||
|
|
||||||
|
for serial_no in frappe.db.sql("""select name, delivery_document_type, warranty_expiry_date from `tabSerial No`
|
||||||
|
where (status is NULL OR status='')""", as_dict = 1):
|
||||||
|
if serial_no.get("delivery_document_type"):
|
||||||
|
status = "Delivered"
|
||||||
|
elif serial_no.get("warranty_expiry_date") and getdate(serial_no.get("warranty_expiry_date")) <= getdate(nowdate()):
|
||||||
|
status = "Expired"
|
||||||
|
else:
|
||||||
|
status = "Active"
|
||||||
|
|
||||||
|
frappe.db.set_value("Serial No", serial_no.get("name"), "status", status)
|
||||||
@@ -363,6 +363,9 @@ class StockEntry(StockController):
|
|||||||
+ self.work_order + ":" + ", ".join(other_ste), DuplicateEntryForWorkOrderError)
|
+ self.work_order + ":" + ", ".join(other_ste), DuplicateEntryForWorkOrderError)
|
||||||
|
|
||||||
def set_incoming_rate(self):
|
def set_incoming_rate(self):
|
||||||
|
if self.purpose == "Repack":
|
||||||
|
self.set_basic_rate_for_finished_goods()
|
||||||
|
|
||||||
for d in self.items:
|
for d in self.items:
|
||||||
if d.s_warehouse:
|
if d.s_warehouse:
|
||||||
args = self.get_args_for_incoming_rate(d)
|
args = self.get_args_for_incoming_rate(d)
|
||||||
@@ -475,20 +478,31 @@ class StockEntry(StockController):
|
|||||||
"allow_zero_valuation": item.allow_zero_valuation_rate,
|
"allow_zero_valuation": item.allow_zero_valuation_rate,
|
||||||
})
|
})
|
||||||
|
|
||||||
def set_basic_rate_for_finished_goods(self, raw_material_cost, scrap_material_cost):
|
def set_basic_rate_for_finished_goods(self, raw_material_cost=0, scrap_material_cost=0):
|
||||||
|
total_fg_qty = 0
|
||||||
|
if not raw_material_cost and self.get("items"):
|
||||||
|
raw_material_cost = sum([flt(row.basic_amount) for row in self.items
|
||||||
|
if row.s_warehouse and not row.t_warehouse])
|
||||||
|
|
||||||
|
total_fg_qty = sum([flt(row.qty) for row in self.items
|
||||||
|
if row.t_warehouse and not row.s_warehouse])
|
||||||
|
|
||||||
if self.purpose in ["Manufacture", "Repack"]:
|
if self.purpose in ["Manufacture", "Repack"]:
|
||||||
for d in self.get("items"):
|
for d in self.get("items"):
|
||||||
if (d.transfer_qty and (d.bom_no or d.t_warehouse)
|
if (d.transfer_qty and (d.bom_no or d.t_warehouse)
|
||||||
and (getattr(self, "pro_doc", frappe._dict()).scrap_warehouse != d.t_warehouse)):
|
and (getattr(self, "pro_doc", frappe._dict()).scrap_warehouse != d.t_warehouse)):
|
||||||
|
|
||||||
if self.work_order \
|
if (self.work_order and self.purpose == "Manufacture"
|
||||||
and frappe.db.get_single_value("Manufacturing Settings", "material_consumption"):
|
and frappe.db.get_single_value("Manufacturing Settings", "material_consumption")):
|
||||||
bom_items = self.get_bom_raw_materials(d.transfer_qty)
|
bom_items = self.get_bom_raw_materials(d.transfer_qty)
|
||||||
raw_material_cost = sum([flt(row.qty)*flt(row.rate) for row in bom_items.values()])
|
raw_material_cost = sum([flt(row.qty)*flt(row.rate) for row in bom_items.values()])
|
||||||
|
|
||||||
if raw_material_cost:
|
if raw_material_cost and self.purpose == "Manufacture":
|
||||||
d.basic_rate = flt((raw_material_cost - scrap_material_cost) / flt(d.transfer_qty), d.precision("basic_rate"))
|
d.basic_rate = flt((raw_material_cost - scrap_material_cost) / flt(d.transfer_qty), d.precision("basic_rate"))
|
||||||
d.basic_amount = flt((raw_material_cost - scrap_material_cost), d.precision("basic_amount"))
|
d.basic_amount = flt((raw_material_cost - scrap_material_cost), d.precision("basic_amount"))
|
||||||
|
elif self.purpose == "Repack" and total_fg_qty:
|
||||||
|
d.basic_rate = flt(raw_material_cost) / flt(total_fg_qty)
|
||||||
|
d.basic_amount = d.basic_rate * d.qty
|
||||||
|
|
||||||
def distribute_additional_costs(self):
|
def distribute_additional_costs(self):
|
||||||
if self.purpose == "Material Issue":
|
if self.purpose == "Material Issue":
|
||||||
|
|||||||
Reference in New Issue
Block a user