|  | @@ -123,7 +123,7 @@ function load_table_black_rank() {
 | 
	
		
			
				|  |  |  }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  function get_stop_scheudle(){
 | 
	
		
			
				|  |  | -    get_data("fcBiWorkerDaily/get?type=4&limit=3", stopSuccess);
 | 
	
		
			
				|  |  | +    get_data("fcWorkSchedule/stopSchedule?scheduleId=" + scheduleId, stopSuccess);
 | 
	
		
			
				|  |  |  }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  function stopSuccess(obj, sta){
 | 
	
	
		
			
				|  | @@ -191,11 +191,9 @@ function on_red_rank_success(obj, sta) {
 | 
	
		
			
				|  |  |      console.log(" redchart : ");
 | 
	
		
			
				|  |  |      console.log(redchart);
 | 
	
		
			
				|  |  |      for (i = 0; i < redchart.list.length; i++) {
 | 
	
		
			
				|  |  | -        goodid[i] = redchart.list[i].workerId;
 | 
	
		
			
				|  |  | +        goodid[i] = getUserName(redchart.list[i].workerId);
 | 
	
		
			
				|  |  |          goodpass[i] = redchart.list[i].passNum;
 | 
	
		
			
				|  |  |          goodfailrate[i] = redchart.list[i].failRate / 100;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -209,7 +207,7 @@ function on_black_rank_success(obj, sta) {
 | 
	
		
			
				|  |  |      console.log(blackchart);
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      for (i = 0; i < blackchart.list.length; i++) {
 | 
	
		
			
				|  |  | -        badid[i] = blackchart.list[i].workerId;
 | 
	
		
			
				|  |  | +        badid[i] = getUserName(blackchart.list[i].workerId);
 | 
	
		
			
				|  |  |          badpass[i] = blackchart.list[i].passNum;
 | 
	
		
			
				|  |  |          badfailrate[i] = blackchart.list[i].failRate / 100;
 | 
	
		
			
				|  |  |      }
 | 
	
	
		
			
				|  | @@ -275,23 +273,23 @@ function realtime_success(obj, sta) {
 | 
	
		
			
				|  |  |      for (k = 0; k < sectorID.length; k++) {
 | 
	
		
			
				|  |  |          var uid = sectorID[k];
 | 
	
		
			
				|  |  |          z = 0;
 | 
	
		
			
				|  |  | +        passNumber[k] = 0;
 | 
	
		
			
				|  |  | +        failNumber[k] = 0;
 | 
	
		
			
				|  |  | +        stackeverynum[k] = 0;
 | 
	
		
			
				|  |  |          for (i = 0; i < output.list.length; i++) {
 | 
	
		
			
				|  |  |              if (uid === output.list[i].sectorId) {
 | 
	
		
			
				|  |  | -                passNumber[k] = output.list[i].passNum + passNumber[j];
 | 
	
		
			
				|  |  | -                failNumber[k] = output.list[i].failNum + failNumber[j];
 | 
	
		
			
				|  |  | -                stackeverynum[k] = output.list[i].due + stackeverynum[j];
 | 
	
		
			
				|  |  | +                passNumber[k] = output.list[i].passNum + passNumber[k];
 | 
	
		
			
				|  |  | +                failNumber[k] = output.list[i].failNum + failNumber[k];
 | 
	
		
			
				|  |  | +                stackeverynum[k] = output.list[i].due + stackeverynum[k];
 | 
	
		
			
				|  |  |                  z++;
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          if (failNumber[k] + passNumber[k] == 0) {
 | 
	
		
			
				|  |  |              failrate[k] = 0;
 | 
	
		
			
				|  |  | -        }
 | 
	
		
			
				|  |  | -        else {
 | 
	
		
			
				|  |  | +        } else {
 | 
	
		
			
				|  |  |              failrate[k] = failNumber[k] / (failNumber[k] + passNumber[k]) * 100;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          /*stackeverynum[k]=stackeverynum[k]/z;*/
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |          ///
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      }
 |