Support partial data amendments with multi line descriptions
[contractdashboard.git] / admin / partialdata / importamendments.php
blob:a/admin/partialdata/importamendments.php -> blob:b/admin/partialdata/importamendments.php
--- a/admin/partialdata/importamendments.php
+++ b/admin/partialdata/importamendments.php
@@ -1,5 +1,6 @@
 <?php
-include_once ("../../lib/common.inc.php");
+if (php_sapi_name() == "cli") {
+    include_once ("../../lib/common.inc.php");
 /*
 update contractnotice set "supplierABN" = a."supplierABN" 
 from contractnotice as cn inner join (select "supplierABN", 
@@ -120,7 +121,6 @@
 
 function importCN($cnid) {
     global $conn;
-    $CN = str_replace("-A", "00",$cnid);
     // check if already complete
     $query = 'Select "parentCN" from contractnotice
 	where "CNID" = :CNID';
@@ -200,7 +200,6 @@
 							    $fieldValue = trim(getTextFromNode($tr));
 							    }
 							$fieldValue = substr($fieldValue, 2); // take off the "CN" prefix
-							$fieldValue = str_replace("-A", "00", $fieldValue); // make amendments really big numbers
 	} elseif ($fieldName == "description") {
 	   
 							if (is_array($tra['td'])) $fieldValue = print_r($tra['td']['p'],true);
@@ -311,7 +310,7 @@
 		// loop through all of the files
 		while (false !== ($fname = readdir($dhandle))) {
 			if (($fname != '.') && ($fname != '..') && (strpos($fname,".xls")>0)) {
-				echo "<a href=\"import.php?fname=$fname\">$fname</a>&nbsp;" . filesize($path . $fname) . "&nbsp;" . date("c", filemtime($path . $fname)) . "<br/>";
+				echo "<a href=\"importdatagov.php?fname=$fname\">$fname</a>&nbsp;" . filesize($path . $fname) . "&nbsp;" . date("c", filemtime($path . $fname)) . "<br/>";
 				processFile($path . $fname, "contractnotice");
 			}
 		}
@@ -324,6 +323,6 @@
 	$success+= processFile($path . $fname, "contractnotice");
 
 }
-
+}
 ?>