| 
					
				 | 
			
			
				@@ -1107,10 +1107,11 @@ function _getSignDateByAllScenarios(userAccId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     let rst = ''; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     let hasAudit = false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     for (const stg_audit of STAGE_AUDIT) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        if (stg_audit.aid === userAccId || rptSignatureHelper._chkOrAudit(stg_audit.aid)) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        // 或签的也会在此 STAGE_AUDIT 列里面 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        if (stg_audit.aid === userAccId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             hasAudit = true; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             // 加上 '或签' 检测 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            if (stg_audit.status === 3) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            if (stg_audit.status === 3 || rptSignatureHelper._chkOrAudit(stg_audit.aid)) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 rst = stg_audit.end_time; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             // break; //因为实际业务中会有反复,所以就不break了,一直判断,以最后一个为准 
			 |