mirror of
				https://git.code.sf.net/p/seeddms/code
				synced 2025-10-31 21:27:36 +00:00 
			
		
		
		
	rename approveLogId to approveLogID
Conflicts: views/bootstrap/class.ViewDocument.php
This commit is contained in:
		
							parent
							
								
									42d822a48d
								
							
						
					
					
						commit
						34a7df9180
					
				|  | @ -2930,7 +2930,7 @@ class SeedDMS_Core_DocumentContent extends SeedDMS_Core_Object { /* {{{ */ | |||
| 			if($recs) { | ||||
| 				foreach($recs as $rec) { | ||||
| 					$queryStr= | ||||
| 						"SELECT `tblDocumentApprovers`.*, `tblDocumentApproveLog`.`approveLogId`, `tblDocumentApproveLog`.`status`, ". | ||||
| 						"SELECT `tblDocumentApprovers`.*, `tblDocumentApproveLog`.`approveLogID`, `tblDocumentApproveLog`.`status`, ". | ||||
| 						"`tblDocumentApproveLog`.`comment`, `tblDocumentApproveLog`.`date`, ". | ||||
| 						"`tblDocumentApproveLog`.`userID`, `tblUsers`.`fullName`, `tblGroups`.`name` AS `groupName` ". | ||||
| 						"FROM `tblDocumentApprovers` ". | ||||
|  | @ -2938,7 +2938,7 @@ class SeedDMS_Core_DocumentContent extends SeedDMS_Core_Object { /* {{{ */ | |||
| 						"LEFT JOIN `tblUsers` on `tblUsers`.`id` = `tblDocumentApprovers`.`required` ". | ||||
| 						"LEFT JOIN `tblGroups` on `tblGroups`.`id` = `tblDocumentApprovers`.`required`". | ||||
| 						"WHERE `tblDocumentApprovers`.`approveID` = '". $rec['approveID'] ."' ". | ||||
| 						"ORDER BY `tblDocumentApproveLog`.`approveLogId` DESC LIMIT ".(int) $limit; | ||||
| 						"ORDER BY `tblDocumentApproveLog`.`approveLogID` DESC LIMIT ".(int) $limit; | ||||
| 
 | ||||
| 					$res = $db->getResultArray($queryStr); | ||||
| 					if (is_bool($res) && !$res) { | ||||
|  | @ -2946,7 +2946,7 @@ class SeedDMS_Core_DocumentContent extends SeedDMS_Core_Object { /* {{{ */ | |||
| 						return false; | ||||
| 					} | ||||
| 					foreach($res as &$t) { | ||||
| 						$filename = $this->_dms->contentDir . $this->_document->getDir().'a'.$t['approveLogId']; | ||||
| 						$filename = $this->_dms->contentDir . $this->_document->getDir().'a'.$t['approveLogID']; | ||||
| 						if(file_exists($filename)) | ||||
| 							$t['file'] = $filename; | ||||
| 						else | ||||
|  | @ -3449,7 +3449,7 @@ class SeedDMS_Core_DocumentContent extends SeedDMS_Core_Object { /* {{{ */ | |||
| 		if($file) { | ||||
| 			SeedDMS_Core_File::copyFile($file, $this->_dms->contentDir . $this->_document->getDir() . 'a' . $approveLogID); | ||||
| 		} | ||||
| 		return $approveLogId; | ||||
| 		return $approveLogID; | ||||
|  } /* }}} */ | ||||
| 
 | ||||
| 	/** | ||||
|  | @ -3493,7 +3493,7 @@ class SeedDMS_Core_DocumentContent extends SeedDMS_Core_Object { /* {{{ */ | |||
| 		if($file) { | ||||
| 			SeedDMS_Core_File::copyFile($file, $this->_dms->contentDir . $this->_document->getDir() . 'a' . $approveLogID); | ||||
| 		} | ||||
| 		return $approveLogId; | ||||
| 		return $approveLogID; | ||||
|  } /* }}} */ | ||||
| 
 | ||||
| 	function addIndRecipient($user, $requestUser) { /* {{{ */ | ||||
|  |  | |||
|  | @ -182,7 +182,7 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style { | |||
| 			case "approval": | ||||
| 				if($rec['file']) { | ||||
| 					echo "<br />"; | ||||
| 					echo "<a href=\"../op/op.Download.php?documentid=".$documentid."&approvelogid=".$rec['approveLogId']."\" class=\"btn btn-mini\"><i class=\"icon-download\"></i> ".getMLText('download')."</a>"; | ||||
| 					echo "<a href=\"../op/op.Download.php?documentid=".$documentid."&approvelogid=".$rec['approveLogID']."\" class=\"btn btn-mini\"><i class=\"icon-download\"></i> ".getMLText('download')."</a>"; | ||||
| 				} | ||||
| 				break; | ||||
| 			} | ||||
|  | @ -774,7 +774,7 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style { | |||
| 				print "<td>".htmlspecialchars($a["comment"]); | ||||
| 				if($a['file']) { | ||||
| 					echo "<br />"; | ||||
| 					echo "<a href=\"../op/op.Download.php?documentid=".$documentid."&approvelogid=".$a['approveLogId']."\" class=\"btn btn-mini\"><i class=\"icon-download\"></i> ".getMLText('download')."</a>"; | ||||
| 					echo "<a href=\"../op/op.Download.php?documentid=".$documentid."&approvelogid=".$a['approveLogID']."\" class=\"btn btn-mini\"><i class=\"icon-download\"></i> ".getMLText('download')."</a>"; | ||||
| 				} | ||||
| 				echo "</td>\n"; | ||||
| 				print "<td>".getApprovalStatusText($a["status"])."</td>\n"; | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Uwe Steinmann
						Uwe Steinmann