$( function() {
$( "#service" ).autocomplete({
source: "job-s.php?data=<?=$order?>",
minLength: 2,
select: function( event, ui ) {
$('#serviceID').val(ui.item.value11);
document.getElementById("hintPrices").classList.remove('hidden');
console.log(ui);
let i = 1;
while( ui.item.hasOwnProperty('value' + i)) {
$("<a>", {
href: "#",
onclick: () => addPrice(ui.item["value" + i]),
title: "add"
}).prependTo( "#hintPrice" );
i++;
}
}
});
} );
$errors[]='payType не задан';
, но не разобрался как вернуть. И ajax не осилил :сif ($_COOKIE['rank'] == 666 or $_COOKIE['department'] == $serviceDepartment['departmentID']) {
$paidDate = date('Y-m-d H:i:s',time());
$db->query("update `jobs` set `status` ='closed',`closeDate`=?s where `autorepairID`=?s and `status`='inProgress'",$paidDate,$autorepairHash);
if ($paymentMethod == "card") {
$db->query("update `autoRepair` set `status`='closed',`paymentStatus`='card',`paidDate`=?s,`closeDate`=?s where `hash`=?s", $paidDate,$paidDate,$autorepairHash);
header("Location: {$siteUri}autorepair/view?order=$autorepairHash");
}
if ($paymentMethod == "cash") {
$db->query("update `autoRepair` set `status`='closed',`paymentStatus`='cash',`paidDate`=?s,`closeDate`=?s where `hash`=?s", $paidDate,$paidDate,$autorepairHash);
header("Location: {$siteUri}autorepair/view?order=$autorepairHash");
}
Только вот выводит текстом значения просто.
Передаю в функцию значение.
Получаю шнягу