暂时注释稼动率接口
This commit is contained in:
@@ -1411,213 +1411,213 @@ class Sf_Dashboard_Connect(http.Controller):
|
||||
|
||||
return json.dumps(res)
|
||||
|
||||
@http.route('/api/utilization/rate', type='http', auth='public', methods=['GET', 'POST'], csrf=False, cors="*")
|
||||
def UtilizationRate(self, **kw):
|
||||
"""
|
||||
获取稼动率
|
||||
"""
|
||||
logging.info("kw=:%s" % kw)
|
||||
res = {'status': 1, 'message': '成功', 'data': {}}
|
||||
# 获取请求的机床数据
|
||||
machine_list = ast.literal_eval(kw['machine_list'])
|
||||
line = kw['line']
|
||||
orders = request.env['mrp.workorder'].sudo().search([
|
||||
('routing_type', '=', 'CNC加工'), # 将第一个条件合并进来
|
||||
('production_line_id.name', '=', line),
|
||||
('state', 'in', ['done'])
|
||||
])
|
||||
|
||||
faulty_plans = request.env['quality.check'].sudo().search([
|
||||
('operation_id.name', '=', 'CNC加工'),
|
||||
('quality_state', 'in', ['fail'])
|
||||
])
|
||||
|
||||
# 计算时间范围
|
||||
now = datetime.now()
|
||||
today_start = now.replace(hour=0, minute=0, second=0, microsecond=0)
|
||||
month_start = now.replace(day=1, hour=0, minute=0, second=0, microsecond=0)
|
||||
|
||||
total_power_on_time = 0
|
||||
month_power_on_time = 0
|
||||
today_power_on_time = 0
|
||||
today_power_on_dict = {}
|
||||
today_alarm_dict = {}
|
||||
single_machine_dict = {}
|
||||
|
||||
today_order_data = []
|
||||
month_order_data = []
|
||||
today_check_ng = []
|
||||
month_check_ng = []
|
||||
|
||||
total_alarm_time = 0
|
||||
today_alarm_time = 0
|
||||
month_alarm_time = 0
|
||||
|
||||
for order in orders:
|
||||
time = order.date_finished
|
||||
if time >= today_start:
|
||||
today_order_data.append(order)
|
||||
if time >= month_start:
|
||||
month_order_data.append(order)
|
||||
|
||||
for faulty_plan in faulty_plans:
|
||||
time = faulty_plan.write_date
|
||||
if time >= today_start:
|
||||
today_check_ng.append(faulty_plan)
|
||||
if time >= month_start:
|
||||
month_check_ng.append(faulty_plan)
|
||||
|
||||
# 连接数据库
|
||||
conn = psycopg2.connect(**db_config)
|
||||
for item in machine_list:
|
||||
with conn.cursor() as cur:
|
||||
cur.execute("""
|
||||
(
|
||||
SELECT power_on_time, 'latest' AS record_type
|
||||
FROM device_data
|
||||
WHERE device_name = %s
|
||||
AND power_on_time IS NOT NULL
|
||||
ORDER BY time DESC
|
||||
LIMIT 1
|
||||
)
|
||||
UNION ALL
|
||||
(
|
||||
SELECT power_on_time, 'month_first' AS record_type
|
||||
FROM device_data
|
||||
WHERE device_name = %s
|
||||
AND power_on_time IS NOT NULL
|
||||
AND time >= date_trunc('month', CURRENT_DATE) -- ✅ 修复日期函数
|
||||
AND time < (date_trunc('month', CURRENT_DATE) + INTERVAL '1 month')::date
|
||||
ORDER BY time ASC
|
||||
LIMIT 1
|
||||
)
|
||||
UNION ALL
|
||||
(
|
||||
SELECT power_on_time, 'day_first' AS record_type
|
||||
FROM device_data
|
||||
WHERE device_name = %s
|
||||
AND power_on_time IS NOT NULL
|
||||
AND time::date = CURRENT_DATE -- ✅ 更高效的写法
|
||||
ORDER BY time ASC
|
||||
LIMIT 1
|
||||
);
|
||||
""", (item, item, item))
|
||||
results = cur.fetchall()
|
||||
if len(results) >= 1:
|
||||
total_power_on_time += convert_to_seconds(results[0][0])
|
||||
else:
|
||||
total_power_on_time += 0
|
||||
if len(results) >= 2:
|
||||
month_power_on_time += convert_to_seconds(results[1][0])
|
||||
else:
|
||||
month_power_on_time += 0
|
||||
if len(results) >= 3:
|
||||
today_power_on_time += convert_to_seconds(results[2][0])
|
||||
today_power_on_dict[item] = today_power_on_time
|
||||
else:
|
||||
today_power_on_time += 0
|
||||
today_power_on_dict[item] = 0
|
||||
|
||||
with conn.cursor() as cur:
|
||||
cur.execute("""
|
||||
SELECT DISTINCT ON (alarm_start_time) alarm_time, alarm_start_time
|
||||
FROM device_data
|
||||
WHERE device_name = %s AND alarm_start_time IS NOT NULL
|
||||
ORDER BY alarm_start_time, time;
|
||||
""", (item,))
|
||||
results = cur.fetchall()
|
||||
today_data = []
|
||||
month_data = []
|
||||
|
||||
for record in results:
|
||||
if record[0]:
|
||||
if float(record[0]) >= 28800:
|
||||
continue
|
||||
total_alarm_time += float(record[0])
|
||||
else:
|
||||
total_alarm_time += 0.0
|
||||
alarm_start = datetime.strptime(record[1], "%Y-%m-%d %H:%M:%S")
|
||||
if alarm_start >= today_start:
|
||||
today_data.append(record)
|
||||
if alarm_start >= month_start:
|
||||
month_data.append(record)
|
||||
if today_data:
|
||||
for today in today_data:
|
||||
if today[0]:
|
||||
if float(today[0]) >= 28800:
|
||||
continue
|
||||
today_alarm_time += float(today[0])
|
||||
today_alarm_dict[item] = today_alarm_time
|
||||
else:
|
||||
today_alarm_time += 0.0
|
||||
today_alarm_dict[item] = 0
|
||||
else:
|
||||
today_alarm_dict[item] = 0
|
||||
for month in month_data:
|
||||
if month[0]:
|
||||
if float(month[0]) >= 28800:
|
||||
continue
|
||||
month_alarm_time += float(month[0])
|
||||
else:
|
||||
month_alarm_time += 0.0
|
||||
|
||||
conn.close()
|
||||
|
||||
logging.info('报警时间总月日=============%s, %s, %s' % (total_alarm_time, month_alarm_time, today_alarm_time))
|
||||
# 计算时间开动率(累计、月、日)
|
||||
if total_power_on_time:
|
||||
total_power_on_rate = (total_power_on_time - total_alarm_time) / total_power_on_time
|
||||
else:
|
||||
total_power_on_rate = 0
|
||||
if month_power_on_time:
|
||||
month_power_on_rate = (total_power_on_time - month_power_on_time - month_alarm_time) / (
|
||||
total_power_on_time - month_power_on_time)
|
||||
else:
|
||||
month_power_on_rate = 0
|
||||
if today_power_on_time:
|
||||
today_power_on_rate = (total_power_on_time - today_power_on_time - today_alarm_time) / (
|
||||
total_power_on_time - today_power_on_time)
|
||||
else:
|
||||
today_power_on_rate = 0
|
||||
logging.info("总开动率: %s" % total_power_on_rate)
|
||||
logging.info("月开动率: %s" % month_power_on_rate)
|
||||
logging.info("日开动率: %s" % today_power_on_rate)
|
||||
|
||||
# 计算性能开动率(累计、月、日)
|
||||
logging.info('完成工单数量: %s' % len(orders))
|
||||
total_performance_rate = len(orders) * 30 * 60 / (total_power_on_time - total_alarm_time)
|
||||
month_performance_rate = len(month_data) * 30 * 60 / (
|
||||
total_power_on_time - month_power_on_time - month_alarm_time)
|
||||
today_performance_rate = len(today_data) * 30 * 60 / (
|
||||
total_power_on_time - today_power_on_time - today_alarm_time) if today_power_on_time != 0 else 0
|
||||
logging.info("总性能率: %s" % total_performance_rate)
|
||||
logging.info("月性能率: %s" % month_performance_rate)
|
||||
logging.info("日性能率: %s" % today_performance_rate)
|
||||
|
||||
# 计算累计合格率
|
||||
total_pass_rate = (len(orders) - len(today_check_ng)) / len(orders) if len(orders) != 0 else 0
|
||||
month_pass_rate = (len(month_order_data) - len(month_check_ng)) / len(month_order_data) if len(month_order_data) != 0 else 0
|
||||
today_pass_rate = (len(today_order_data) - len(today_check_ng)) / len(today_order_data) if len(today_order_data) != 0 else 0
|
||||
logging.info("总合格率: %s" % total_pass_rate)
|
||||
logging.info("月合格率: %s" % month_pass_rate)
|
||||
logging.info("日合格率: %s" % today_pass_rate)
|
||||
|
||||
# # 返回数据
|
||||
# res['data'][item] = {
|
||||
# 'total_utilization_rate': total_power_on_rate * total_performance_rate * total_pass_rate,
|
||||
# 'month_utilization_rate': month_power_on_rate * month_performance_rate * month_pass_rate,
|
||||
# 'today_utilization_rate': today_power_on_rate * today_performance_rate * today_pass_rate,
|
||||
# }
|
||||
for i in machine_list:
|
||||
single_machine_utilization_rate = total_power_on_time - today_power_on_dict[i] - today_alarm_dict[i] / (
|
||||
total_power_on_time - today_power_on_dict[i])
|
||||
single_machine_dict[i] = single_machine_utilization_rate * today_performance_rate * today_pass_rate
|
||||
|
||||
res['data'] = {
|
||||
'total_utilization_rate': total_power_on_rate * total_performance_rate * total_pass_rate,
|
||||
'month_utilization_rate': month_power_on_rate * month_performance_rate * month_pass_rate,
|
||||
'today_utilization_rate': today_power_on_rate * today_performance_rate * today_pass_rate,
|
||||
'single_machine_dict': single_machine_dict
|
||||
}
|
||||
|
||||
return json.dumps(res)
|
||||
# @http.route('/api/utilization/rate', type='http', auth='public', methods=['GET', 'POST'], csrf=False, cors="*")
|
||||
# def UtilizationRate(self, **kw):
|
||||
# """
|
||||
# 获取稼动率
|
||||
# """
|
||||
# logging.info("kw=:%s" % kw)
|
||||
# res = {'status': 1, 'message': '成功', 'data': {}}
|
||||
# # 获取请求的机床数据
|
||||
# machine_list = ast.literal_eval(kw['machine_list'])
|
||||
# line = kw['line']
|
||||
# orders = request.env['mrp.workorder'].sudo().search([
|
||||
# ('routing_type', '=', 'CNC加工'), # 将第一个条件合并进来
|
||||
# ('production_line_id.name', '=', line),
|
||||
# ('state', 'in', ['done'])
|
||||
# ])
|
||||
#
|
||||
# faulty_plans = request.env['quality.check'].sudo().search([
|
||||
# ('operation_id.name', '=', 'CNC加工'),
|
||||
# ('quality_state', 'in', ['fail'])
|
||||
# ])
|
||||
#
|
||||
# # 计算时间范围
|
||||
# now = datetime.now()
|
||||
# today_start = now.replace(hour=0, minute=0, second=0, microsecond=0)
|
||||
# month_start = now.replace(day=1, hour=0, minute=0, second=0, microsecond=0)
|
||||
#
|
||||
# total_power_on_time = 0
|
||||
# month_power_on_time = 0
|
||||
# today_power_on_time = 0
|
||||
# today_power_on_dict = {}
|
||||
# today_alarm_dict = {}
|
||||
# single_machine_dict = {}
|
||||
#
|
||||
# today_order_data = []
|
||||
# month_order_data = []
|
||||
# today_check_ng = []
|
||||
# month_check_ng = []
|
||||
#
|
||||
# total_alarm_time = 0
|
||||
# today_alarm_time = 0
|
||||
# month_alarm_time = 0
|
||||
#
|
||||
# for order in orders:
|
||||
# time = order.date_finished
|
||||
# if time >= today_start:
|
||||
# today_order_data.append(order)
|
||||
# if time >= month_start:
|
||||
# month_order_data.append(order)
|
||||
#
|
||||
# for faulty_plan in faulty_plans:
|
||||
# time = faulty_plan.write_date
|
||||
# if time >= today_start:
|
||||
# today_check_ng.append(faulty_plan)
|
||||
# if time >= month_start:
|
||||
# month_check_ng.append(faulty_plan)
|
||||
#
|
||||
# # 连接数据库
|
||||
# conn = psycopg2.connect(**db_config)
|
||||
# for item in machine_list:
|
||||
# with conn.cursor() as cur:
|
||||
# cur.execute("""
|
||||
# (
|
||||
# SELECT power_on_time, 'latest' AS record_type
|
||||
# FROM device_data
|
||||
# WHERE device_name = %s
|
||||
# AND power_on_time IS NOT NULL
|
||||
# ORDER BY time DESC
|
||||
# LIMIT 1
|
||||
# )
|
||||
# UNION ALL
|
||||
# (
|
||||
# SELECT power_on_time, 'month_first' AS record_type
|
||||
# FROM device_data
|
||||
# WHERE device_name = %s
|
||||
# AND power_on_time IS NOT NULL
|
||||
# AND time >= date_trunc('month', CURRENT_DATE) -- ✅ 修复日期函数
|
||||
# AND time < (date_trunc('month', CURRENT_DATE) + INTERVAL '1 month')::date
|
||||
# ORDER BY time ASC
|
||||
# LIMIT 1
|
||||
# )
|
||||
# UNION ALL
|
||||
# (
|
||||
# SELECT power_on_time, 'day_first' AS record_type
|
||||
# FROM device_data
|
||||
# WHERE device_name = %s
|
||||
# AND power_on_time IS NOT NULL
|
||||
# AND time::date = CURRENT_DATE -- ✅ 更高效的写法
|
||||
# ORDER BY time ASC
|
||||
# LIMIT 1
|
||||
# );
|
||||
# """, (item, item, item))
|
||||
# results = cur.fetchall()
|
||||
# if len(results) >= 1:
|
||||
# total_power_on_time += convert_to_seconds(results[0][0])
|
||||
# else:
|
||||
# total_power_on_time += 0
|
||||
# if len(results) >= 2:
|
||||
# month_power_on_time += convert_to_seconds(results[1][0])
|
||||
# else:
|
||||
# month_power_on_time += 0
|
||||
# if len(results) >= 3:
|
||||
# today_power_on_time += convert_to_seconds(results[2][0])
|
||||
# today_power_on_dict[item] = today_power_on_time
|
||||
# else:
|
||||
# today_power_on_time += 0
|
||||
# today_power_on_dict[item] = 0
|
||||
#
|
||||
# with conn.cursor() as cur:
|
||||
# cur.execute("""
|
||||
# SELECT DISTINCT ON (alarm_start_time) alarm_time, alarm_start_time
|
||||
# FROM device_data
|
||||
# WHERE device_name = %s AND alarm_start_time IS NOT NULL
|
||||
# ORDER BY alarm_start_time, time;
|
||||
# """, (item,))
|
||||
# results = cur.fetchall()
|
||||
# today_data = []
|
||||
# month_data = []
|
||||
#
|
||||
# for record in results:
|
||||
# if record[0]:
|
||||
# if float(record[0]) >= 28800:
|
||||
# continue
|
||||
# total_alarm_time += float(record[0])
|
||||
# else:
|
||||
# total_alarm_time += 0.0
|
||||
# alarm_start = datetime.strptime(record[1], "%Y-%m-%d %H:%M:%S")
|
||||
# if alarm_start >= today_start:
|
||||
# today_data.append(record)
|
||||
# if alarm_start >= month_start:
|
||||
# month_data.append(record)
|
||||
# if today_data:
|
||||
# for today in today_data:
|
||||
# if today[0]:
|
||||
# if float(today[0]) >= 28800:
|
||||
# continue
|
||||
# today_alarm_time += float(today[0])
|
||||
# today_alarm_dict[item] = today_alarm_time
|
||||
# else:
|
||||
# today_alarm_time += 0.0
|
||||
# today_alarm_dict[item] = 0
|
||||
# else:
|
||||
# today_alarm_dict[item] = 0
|
||||
# for month in month_data:
|
||||
# if month[0]:
|
||||
# if float(month[0]) >= 28800:
|
||||
# continue
|
||||
# month_alarm_time += float(month[0])
|
||||
# else:
|
||||
# month_alarm_time += 0.0
|
||||
#
|
||||
# conn.close()
|
||||
#
|
||||
# logging.info('报警时间总月日=============%s, %s, %s' % (total_alarm_time, month_alarm_time, today_alarm_time))
|
||||
# # 计算时间开动率(累计、月、日)
|
||||
# if total_power_on_time:
|
||||
# total_power_on_rate = (total_power_on_time - total_alarm_time) / total_power_on_time
|
||||
# else:
|
||||
# total_power_on_rate = 0
|
||||
# if month_power_on_time:
|
||||
# month_power_on_rate = (total_power_on_time - month_power_on_time - month_alarm_time) / (
|
||||
# total_power_on_time - month_power_on_time)
|
||||
# else:
|
||||
# month_power_on_rate = 0
|
||||
# if today_power_on_time:
|
||||
# today_power_on_rate = (total_power_on_time - today_power_on_time - today_alarm_time) / (
|
||||
# total_power_on_time - today_power_on_time)
|
||||
# else:
|
||||
# today_power_on_rate = 0
|
||||
# logging.info("总开动率: %s" % total_power_on_rate)
|
||||
# logging.info("月开动率: %s" % month_power_on_rate)
|
||||
# logging.info("日开动率: %s" % today_power_on_rate)
|
||||
#
|
||||
# # 计算性能开动率(累计、月、日)
|
||||
# logging.info('完成工单数量: %s' % len(orders))
|
||||
# total_performance_rate = len(orders) * 30 * 60 / (total_power_on_time - total_alarm_time)
|
||||
# month_performance_rate = len(month_data) * 30 * 60 / (
|
||||
# total_power_on_time - month_power_on_time - month_alarm_time)
|
||||
# today_performance_rate = len(today_data) * 30 * 60 / (
|
||||
# total_power_on_time - today_power_on_time - today_alarm_time) if today_power_on_time != 0 else 0
|
||||
# logging.info("总性能率: %s" % total_performance_rate)
|
||||
# logging.info("月性能率: %s" % month_performance_rate)
|
||||
# logging.info("日性能率: %s" % today_performance_rate)
|
||||
#
|
||||
# # 计算累计合格率
|
||||
# total_pass_rate = (len(orders) - len(today_check_ng)) / len(orders) if len(orders) != 0 else 0
|
||||
# month_pass_rate = (len(month_order_data) - len(month_check_ng)) / len(month_order_data) if len(month_order_data) != 0 else 0
|
||||
# today_pass_rate = (len(today_order_data) - len(today_check_ng)) / len(today_order_data) if len(today_order_data) != 0 else 0
|
||||
# logging.info("总合格率: %s" % total_pass_rate)
|
||||
# logging.info("月合格率: %s" % month_pass_rate)
|
||||
# logging.info("日合格率: %s" % today_pass_rate)
|
||||
#
|
||||
# # # 返回数据
|
||||
# # res['data'][item] = {
|
||||
# # 'total_utilization_rate': total_power_on_rate * total_performance_rate * total_pass_rate,
|
||||
# # 'month_utilization_rate': month_power_on_rate * month_performance_rate * month_pass_rate,
|
||||
# # 'today_utilization_rate': today_power_on_rate * today_performance_rate * today_pass_rate,
|
||||
# # }
|
||||
# for i in machine_list:
|
||||
# single_machine_utilization_rate = total_power_on_time - today_power_on_dict[i] - today_alarm_dict[i] / (
|
||||
# total_power_on_time - today_power_on_dict[i])
|
||||
# single_machine_dict[i] = single_machine_utilization_rate * today_performance_rate * today_pass_rate
|
||||
#
|
||||
# res['data'] = {
|
||||
# 'total_utilization_rate': total_power_on_rate * total_performance_rate * total_pass_rate,
|
||||
# 'month_utilization_rate': month_power_on_rate * month_performance_rate * month_pass_rate,
|
||||
# 'today_utilization_rate': today_power_on_rate * today_performance_rate * today_pass_rate,
|
||||
# 'single_machine_dict': single_machine_dict
|
||||
# }
|
||||
#
|
||||
# return json.dumps(res)
|
||||
|
||||
Reference in New Issue
Block a user