2020-05-05 21:08:27 +00:00
|
|
|
# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
import json
|
2021-09-02 11:14:59 +00:00
|
|
|
|
2020-05-05 21:08:27 +00:00
|
|
|
import frappe
|
|
|
|
from frappe import _
|
2020-05-26 17:37:11 +00:00
|
|
|
from frappe.utils import add_months, nowdate
|
2021-09-02 11:14:59 +00:00
|
|
|
|
|
|
|
import erpnext
|
|
|
|
|
2020-05-05 21:08:27 +00:00
|
|
|
|
|
|
|
def get_data():
|
|
|
|
return frappe._dict(
|
|
|
|
{
|
|
|
|
"dashboards": get_dashboards(),
|
|
|
|
"charts": get_charts(),
|
|
|
|
"number_cards": get_number_cards(),
|
|
|
|
}
|
|
|
|
)
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2020-05-05 21:08:27 +00:00
|
|
|
|
|
|
|
def get_dashboards():
|
|
|
|
return [
|
|
|
|
{
|
2020-05-19 10:24:24 +00:00
|
|
|
"name": "Manufacturing",
|
|
|
|
"dashboard_name": "Manufacturing",
|
2020-05-05 21:08:27 +00:00
|
|
|
"charts": [
|
|
|
|
{"chart": "Produced Quantity", "width": "Half"},
|
|
|
|
{"chart": "Completed Operation", "width": "Half"},
|
|
|
|
{"chart": "Work Order Analysis", "width": "Half"},
|
|
|
|
{"chart": "Quality Inspection Analysis", "width": "Half"},
|
|
|
|
{"chart": "Pending Work Order", "width": "Half"},
|
|
|
|
{"chart": "Last Month Downtime Analysis", "width": "Half"},
|
|
|
|
{"chart": "Work Order Qty Analysis", "width": "Full"},
|
|
|
|
{"chart": "Job Card Analysis", "width": "Full"},
|
|
|
|
],
|
|
|
|
"cards": [
|
2020-05-26 17:37:11 +00:00
|
|
|
{"card": "Monthly Total Work Order"},
|
|
|
|
{"card": "Monthly Completed Work Order"},
|
2020-05-05 21:08:27 +00:00
|
|
|
{"card": "Ongoing Job Card"},
|
2020-05-26 17:37:11 +00:00
|
|
|
{"card": "Monthly Quality Inspection"},
|
2022-03-28 13:22:46 +00:00
|
|
|
],
|
2020-05-26 17:37:11 +00:00
|
|
|
}
|
2020-05-05 21:08:27 +00:00
|
|
|
]
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2020-05-05 21:08:27 +00:00
|
|
|
|
|
|
|
def get_charts():
|
|
|
|
company = erpnext.get_default_company()
|
|
|
|
|
|
|
|
if not company:
|
|
|
|
company = frappe.db.get_value("Company", {"is_group": 0}, "name")
|
|
|
|
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
"doctype": "Dashboard Chart",
|
2020-05-19 07:02:39 +00:00
|
|
|
"based_on": "modified",
|
2020-05-05 21:08:27 +00:00
|
|
|
"chart_type": "Sum",
|
2020-05-19 07:02:39 +00:00
|
|
|
"chart_name": _("Produced Quantity"),
|
2020-05-14 13:28:25 +00:00
|
|
|
"name": "Produced Quantity",
|
2020-05-05 21:08:27 +00:00
|
|
|
"document_type": "Work Order",
|
2020-05-19 07:02:39 +00:00
|
|
|
"filters_json": json.dumps([["Work Order", "docstatus", "=", 1, False]]),
|
2020-05-05 21:08:27 +00:00
|
|
|
"group_by_type": "Count",
|
2020-05-19 07:02:39 +00:00
|
|
|
"time_interval": "Monthly",
|
2020-05-05 21:08:27 +00:00
|
|
|
"timespan": "Last Year",
|
|
|
|
"owner": "Administrator",
|
|
|
|
"type": "Line",
|
2020-05-19 07:02:39 +00:00
|
|
|
"value_based_on": "produced_qty",
|
2020-05-05 21:08:27 +00:00
|
|
|
"is_public": 1,
|
|
|
|
"timeseries": 1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"doctype": "Dashboard Chart",
|
|
|
|
"based_on": "creation",
|
|
|
|
"chart_type": "Sum",
|
2020-05-19 07:02:39 +00:00
|
|
|
"chart_name": _("Completed Operation"),
|
2020-05-14 13:28:25 +00:00
|
|
|
"name": "Completed Operation",
|
2020-05-05 21:08:27 +00:00
|
|
|
"document_type": "Work Order Operation",
|
2020-05-19 07:02:39 +00:00
|
|
|
"filters_json": json.dumps([["Work Order Operation", "docstatus", "=", 1, False]]),
|
2020-05-05 21:08:27 +00:00
|
|
|
"group_by_type": "Count",
|
|
|
|
"time_interval": "Quarterly",
|
|
|
|
"timespan": "Last Year",
|
|
|
|
"owner": "Administrator",
|
|
|
|
"type": "Line",
|
|
|
|
"value_based_on": "completed_qty",
|
|
|
|
"is_public": 1,
|
|
|
|
"timeseries": 1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"doctype": "Dashboard Chart",
|
|
|
|
"time_interval": "Yearly",
|
|
|
|
"chart_type": "Report",
|
2020-05-19 07:02:39 +00:00
|
|
|
"chart_name": _("Work Order Analysis"),
|
2020-05-14 13:28:25 +00:00
|
|
|
"name": "Work Order Analysis",
|
2020-05-05 21:08:27 +00:00
|
|
|
"timespan": "Last Year",
|
|
|
|
"report_name": "Work Order Summary",
|
|
|
|
"owner": "Administrator",
|
|
|
|
"filters_json": json.dumps({"company": company, "charts_based_on": "Status"}),
|
|
|
|
"type": "Donut",
|
|
|
|
"is_public": 1,
|
|
|
|
"is_custom": 1,
|
|
|
|
"custom_options": json.dumps({"axisOptions": {"shortenYAxisNumbers": 1}, "height": 300}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"doctype": "Dashboard Chart",
|
|
|
|
"time_interval": "Yearly",
|
|
|
|
"chart_type": "Report",
|
2020-05-19 07:02:39 +00:00
|
|
|
"chart_name": _("Quality Inspection Analysis"),
|
2020-05-14 13:28:25 +00:00
|
|
|
"name": "Quality Inspection Analysis",
|
2020-05-05 21:08:27 +00:00
|
|
|
"timespan": "Last Year",
|
|
|
|
"report_name": "Quality Inspection Summary",
|
|
|
|
"owner": "Administrator",
|
|
|
|
"filters_json": json.dumps({}),
|
|
|
|
"type": "Donut",
|
|
|
|
"is_public": 1,
|
|
|
|
"is_custom": 1,
|
|
|
|
"custom_options": json.dumps({"axisOptions": {"shortenYAxisNumbers": 1}, "height": 300}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"doctype": "Dashboard Chart",
|
|
|
|
"time_interval": "Yearly",
|
|
|
|
"chart_type": "Report",
|
2020-05-19 07:02:39 +00:00
|
|
|
"chart_name": _("Pending Work Order"),
|
2020-05-14 13:28:25 +00:00
|
|
|
"name": "Pending Work Order",
|
2020-05-05 21:08:27 +00:00
|
|
|
"timespan": "Last Year",
|
|
|
|
"report_name": "Work Order Summary",
|
|
|
|
"filters_json": json.dumps({"company": company, "charts_based_on": "Age"}),
|
|
|
|
"owner": "Administrator",
|
|
|
|
"type": "Donut",
|
|
|
|
"is_public": 1,
|
|
|
|
"is_custom": 1,
|
|
|
|
"custom_options": json.dumps({"axisOptions": {"shortenYAxisNumbers": 1}, "height": 300}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"doctype": "Dashboard Chart",
|
|
|
|
"time_interval": "Yearly",
|
|
|
|
"chart_type": "Report",
|
2020-05-19 07:02:39 +00:00
|
|
|
"chart_name": _("Last Month Downtime Analysis"),
|
2020-05-14 13:28:25 +00:00
|
|
|
"name": "Last Month Downtime Analysis",
|
2020-05-05 21:08:27 +00:00
|
|
|
"timespan": "Last Year",
|
|
|
|
"filters_json": json.dumps({}),
|
|
|
|
"report_name": "Downtime Analysis",
|
|
|
|
"owner": "Administrator",
|
|
|
|
"is_public": 1,
|
|
|
|
"is_custom": 1,
|
|
|
|
"type": "Bar",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"doctype": "Dashboard Chart",
|
|
|
|
"time_interval": "Yearly",
|
|
|
|
"chart_type": "Report",
|
|
|
|
"chart_name": _("Work Order Qty Analysis"),
|
2020-05-19 07:02:39 +00:00
|
|
|
"name": "Work Order Qty Analysis",
|
2020-05-05 21:08:27 +00:00
|
|
|
"timespan": "Last Year",
|
|
|
|
"report_name": "Work Order Summary",
|
|
|
|
"filters_json": json.dumps({"company": company, "charts_based_on": "Quantity"}),
|
|
|
|
"owner": "Administrator",
|
|
|
|
"type": "Bar",
|
|
|
|
"is_public": 1,
|
|
|
|
"is_custom": 1,
|
|
|
|
"custom_options": json.dumps({"barOptions": {"stacked": 1}}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"doctype": "Dashboard Chart",
|
|
|
|
"time_interval": "Yearly",
|
|
|
|
"chart_type": "Report",
|
2020-05-19 07:02:39 +00:00
|
|
|
"chart_name": _("Job Card Analysis"),
|
2020-05-14 13:28:25 +00:00
|
|
|
"name": "Job Card Analysis",
|
2020-05-05 21:08:27 +00:00
|
|
|
"timespan": "Last Year",
|
|
|
|
"report_name": "Job Card Summary",
|
|
|
|
"owner": "Administrator",
|
|
|
|
"is_public": 1,
|
|
|
|
"is_custom": 1,
|
2020-05-19 07:02:39 +00:00
|
|
|
"filters_json": json.dumps({"company": company, "docstatus": 1, "range": "Monthly"}),
|
2020-05-05 21:08:27 +00:00
|
|
|
"custom_options": json.dumps({"barOptions": {"stacked": 1}}),
|
|
|
|
"type": "Bar",
|
|
|
|
},
|
|
|
|
]
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2020-05-05 21:08:27 +00:00
|
|
|
|
|
|
|
def get_number_cards():
|
2020-05-26 17:37:11 +00:00
|
|
|
start_date = add_months(nowdate(), -1)
|
|
|
|
end_date = nowdate()
|
2020-05-19 07:02:39 +00:00
|
|
|
|
2020-05-05 21:08:27 +00:00
|
|
|
return [
|
|
|
|
{
|
|
|
|
"doctype": "Number Card",
|
|
|
|
"document_type": "Work Order",
|
2020-05-26 17:37:11 +00:00
|
|
|
"name": "Monthly Total Work Order",
|
2020-05-19 07:02:39 +00:00
|
|
|
"filters_json": json.dumps(
|
|
|
|
[
|
|
|
|
["Work Order", "docstatus", "=", 1],
|
2020-05-26 17:37:11 +00:00
|
|
|
["Work Order", "creation", "between", [start_date, end_date]],
|
2020-05-19 07:02:39 +00:00
|
|
|
]
|
|
|
|
),
|
2020-05-05 21:08:27 +00:00
|
|
|
"function": "Count",
|
|
|
|
"is_public": 1,
|
2020-06-30 02:50:03 +00:00
|
|
|
"label": _("Monthly Total Work Orders"),
|
2020-05-05 21:08:27 +00:00
|
|
|
"show_percentage_stats": 1,
|
2020-05-26 17:37:11 +00:00
|
|
|
"stats_time_interval": "Weekly",
|
2020-05-05 21:08:27 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"doctype": "Number Card",
|
|
|
|
"document_type": "Work Order",
|
2020-05-26 17:37:11 +00:00
|
|
|
"name": "Monthly Completed Work Order",
|
2020-05-19 07:02:39 +00:00
|
|
|
"filters_json": json.dumps(
|
|
|
|
[
|
|
|
|
["Work Order", "status", "=", "Completed"],
|
|
|
|
["Work Order", "docstatus", "=", 1],
|
2020-05-26 17:37:11 +00:00
|
|
|
["Work Order", "creation", "between", [start_date, end_date]],
|
2020-05-19 07:02:39 +00:00
|
|
|
]
|
|
|
|
),
|
2020-05-05 21:08:27 +00:00
|
|
|
"function": "Count",
|
|
|
|
"is_public": 1,
|
2020-06-30 02:50:03 +00:00
|
|
|
"label": _("Monthly Completed Work Orders"),
|
2020-05-05 21:08:27 +00:00
|
|
|
"show_percentage_stats": 1,
|
2020-05-26 17:37:11 +00:00
|
|
|
"stats_time_interval": "Weekly",
|
2020-05-05 21:08:27 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"doctype": "Number Card",
|
|
|
|
"document_type": "Job Card",
|
|
|
|
"name": "Ongoing Job Card",
|
2020-05-19 07:02:39 +00:00
|
|
|
"filters_json": json.dumps(
|
|
|
|
[["Job Card", "status", "!=", "Completed"], ["Job Card", "docstatus", "=", 1]]
|
|
|
|
),
|
2020-05-05 21:08:27 +00:00
|
|
|
"function": "Count",
|
|
|
|
"is_public": 1,
|
2020-06-30 02:50:03 +00:00
|
|
|
"label": _("Ongoing Job Cards"),
|
2020-05-05 21:08:27 +00:00
|
|
|
"show_percentage_stats": 1,
|
2020-05-26 17:37:11 +00:00
|
|
|
"stats_time_interval": "Weekly",
|
2020-05-05 21:08:27 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"doctype": "Number Card",
|
|
|
|
"document_type": "Quality Inspection",
|
2020-05-26 17:37:11 +00:00
|
|
|
"name": "Monthly Quality Inspection",
|
|
|
|
"filters_json": json.dumps(
|
|
|
|
[
|
|
|
|
["Quality Inspection", "docstatus", "=", 1],
|
|
|
|
["Quality Inspection", "creation", "between", [start_date, end_date]],
|
|
|
|
]
|
|
|
|
),
|
2020-05-05 21:08:27 +00:00
|
|
|
"function": "Count",
|
|
|
|
"is_public": 1,
|
2020-06-30 02:50:03 +00:00
|
|
|
"label": _("Monthly Quality Inspections"),
|
2020-05-05 21:08:27 +00:00
|
|
|
"show_percentage_stats": 1,
|
2020-05-26 17:37:11 +00:00
|
|
|
"stats_time_interval": "Weekly",
|
2021-04-17 09:27:57 +00:00
|
|
|
},
|
|
|
|
]
|