forked from mgherghi/inventory
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ajax.php
76 lines (66 loc) · 2.1 KB
/
ajax.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/**
* ajax.php
*
* @package default
*/
require_once 'includes/load.php';
if (!$session->isUserLoggedIn(true)) { redirect('index.php', false);}
?>
<?php
// Auto suggestion
$html = "";
if (isset($_POST['product_name']) && strlen($_POST['product_name'])) {
$products = find_product_by_title($_POST['product_name']);
if ($products) {
foreach ($products as $product):
$html .= "<li class=\"list-group-item\">";
$html .= $product['name'];
$html .= "</li>";
endforeach;
} else {
$html = "<li class=\"list-group-item\">";
$html .= "Not found";
$html .= "</li>";
}
echo json_encode($html);
}
?>
<?php
// find all product
if (isset($_POST['p_name']) && strlen($_POST['p_name'])) {
$product_title = remove_junk($db->escape($_POST['p_name']));
if ($results = find_all_product_info_by_title($product_title)) {
foreach ($results as $result) {
$html .= "<tr>";
$html .= "<td id=\"s_name\">{$result['name']}</td>";
$html .= "<input type=\"hidden\" name=\"s_id\" value=\"{$result['id']}\">";
$html .= "<td class=\"text-center\">";
$html .= "{$result['sku']}";
$html .= "</td>";
$html .= "<td class=\"text-center\">";
$html .= "{$result['location']}";
$html .= "</td>";
$html .= "<td class=\"text-center\">";
$html .= "{$result['quantity']}";
$html .= "</td>";
$html .= "<td id=\"s_qty\" class=\"text-center\">";
$html .= "<input type=\"text\" class=\"form-control\" name=\"quantity\" value=\"1\">";
$html .= "</td>";
$html .= "<td class=\"text-center\">";
$html .= "<input type=\"text\" class=\"form-control\" name=\"price\" value=\"{$result['sale_price']}\">";
$html .= "</td>";
$html .= "<td class=\"text-center\">";
$html .= "<input type=\"text\" class=\"form-control\" name=\"total\" value=\"{$result['sale_price']}\">";
$html .= "</td>";
$html .= "<td class=\"text-center\">";
$html .= "<button type=\"submit\" name=\"add_sale\" class=\"btn btn-primary\">Add sale</button>";
$html .= "</td>";
$html .= "</tr>";
}
} else {
$html ="<tr><td colspan=\"8\">Product Name Not Registered!</td></tr>";
}
echo json_encode($html);
}
?>