Commit 42c8c599 by liuyang

2024-10-22

1.修复生产管理驾驶舱项目进度bug
parent ebf4c877
......@@ -950,6 +950,7 @@
a.finish_date as completeDate,
ROUND(ifnull(sum(a.total_weight),0)/1000, 4) as totalWeight,
ROUND(ifnull(sum(a.finish_weight),0)/1000, 4) as finishWeight,
ROUND(ifnull(sum(a.finish_weight),0) / ifnull(sum(a.total_weight),0) / 1000, 4)*100 as schedule,
a.updated_time as updatedTime
from (
select
......
......@@ -42,7 +42,7 @@ module.exports = {
projCodeWtList:[],
getByProjCodewtWtList:[],
dataList:['项目名称','计划完成时间','计划产量','实际产量','进度'],
getByProjCodewtWtArray:['projName','completeDate','totalWeight','finishWeight','finishWeight'],
getByProjCodewtWtArray:['projName','completeDate','totalWeight','finishWeight','schedule'],
};
},
watch:{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment