|
|
|
@ -615,8 +615,9 @@ public class ReportServiceImpl implements ReportService {
|
|
|
|
|
//项目进度生产甘特图GanttChart 项目号、部套、零件总数量
|
|
|
|
|
ArrayList<HashMap<String, String>> firstThreeList = new ArrayList<>();
|
|
|
|
|
for (Map<String, String> abnormalQualityMap : abnormalQualityList) {
|
|
|
|
|
HashMap<String, String> firstThreeMap = new HashMap<>();
|
|
|
|
|
LinkedHashMap<String, String> firstThreeMap = new LinkedHashMap<>();
|
|
|
|
|
firstThreeMap.put("value1",abnormalQualityMap.get("item"));
|
|
|
|
|
|
|
|
|
|
if (abnormalQualityMap.get("workOrder").indexOf("/") != -1){
|
|
|
|
|
if (abnormalQualityMap.get("workOrder").split("/").length > 2){
|
|
|
|
|
firstThreeMap.put("value2",abnormalQualityMap.get("workOrder").split("/")[2]);
|
|
|
|
|