modified pdf1 and tabeldescription
This commit is contained in:
@@ -40,11 +40,9 @@ if (isset($_POST["rangemeasuremaxtext"])) {
|
||||
if (isset($_POST["articletype"])) {
|
||||
$articletype = $_POST["articletype"];
|
||||
}
|
||||
if (isset($_POST["previousreportnumber"])) {
|
||||
$previousreportnumber = $_POST["previousreportnumber"];
|
||||
} else {
|
||||
$previousreportnumber = '';
|
||||
}
|
||||
$previousreportnumber = isset($_POST["previousreportnumber"])
|
||||
? $_POST["previousreportnumber"]
|
||||
: null;
|
||||
if (isset($_POST["toextend"])) {
|
||||
$toextend = $_POST["toextend"];
|
||||
} else {
|
||||
@@ -153,7 +151,9 @@ if (isset($formupdtrfdetails)) {
|
||||
$UpdateQuery->bindColumn("idarticletype", "i", "$articletype", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("idarticle_characteristics", "s", "$listartchar", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("registeredmark", "s", "$registeredmark", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("previousreportnumber", "s", "$previousreportnumber", "WA_DEFAULT");
|
||||
if ($previousreportnumber !== null) {
|
||||
$UpdateQuery->bindColumn("previousreportnumber", "s", "$previousreportnumber", "WA_DEFAULT");
|
||||
}
|
||||
$UpdateQuery->bindColumn("toextend", "s", "$toextend", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("revisionfor", "s", "$revisionfor", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("renewdate", "s", "$renewdate", "WA_DEFAULT");
|
||||
|
||||
Reference in New Issue
Block a user