--- a/admin/partialdata/importamendments.php +++ b/admin/partialdata/importamendments.php @@ -1,6 +1,14 @@ Database temporarily unavailable: "; @@ -111,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'; @@ -191,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); @@ -212,6 +220,10 @@ $cnFields[$fieldName] = $fieldValue; } } +if (isset($cnFields[""])) { + $cnFields["description"] .= $cnFields[""]; + unset($cnFields[""]); +} $cnFields["importFile"] = $url; $contractNoticeInsertQ = 'INSERT INTO contractnotice ("' . implode('" , "', array_keys($cnFields)) . '") VALUES ( '; for($key = 0; $key < sizeof($cnFields); $key++) { @@ -297,8 +309,8 @@ if ($dhandle) { // loop through all of the files while (false !== ($fname = readdir($dhandle))) { - if (($fname != '.') && ($fname != '..')) { - echo "$fname " . filesize($path . $fname) . " " . date("c", filemtime($path . $fname)) . "
"; + if (($fname != '.') && ($fname != '..') && (strpos($fname,".xls")>0)) { + echo "$fname " . filesize($path . $fname) . " " . date("c", filemtime($path . $fname)) . "
"; processFile($path . $fname, "contractnotice"); } } @@ -311,5 +323,6 @@ $success+= processFile($path . $fname, "contractnotice"); } - +} ?> +