-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassign_component.php
60 lines (47 loc) · 1.84 KB
/
assign_component.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
<?php
include 'connectDB.php';
$conn->autocommit(FALSE); // Start transaction
$component_id = isset($_POST['component_id']) ? (int)$_POST['component_id'] : null;
$user_id = isset($_POST['user_id']) ? (int)$_POST['user_id'] : null;
$quantity = isset($_POST['quantity']) ? (int)$_POST['quantity'] : null;
// Check for valid input
if (is_null($component_id) || is_null($user_id) || is_null($quantity)) {
die("Error: Invalid input.");
}
try {
// Check current stock
$checkStock = "SELECT quantity FROM inventory WHERE component_id = ?";
$stmtCheck = $conn->prepare($checkStock);
$stmtCheck->bind_param("i", $component_id);
$stmtCheck->execute();
$result = $stmtCheck->get_result();
$row = $result->fetch_assoc();
if ($row['quantity'] < $quantity) {
throw new Exception("Insufficient stock.");
}
// Deduct from components
$update = "UPDATE inventory SET quantity = quantity - ? WHERE component_id = ?";
$stmt = $conn->prepare($update);
$stmt->bind_param("ii", $quantity, $component_id);
$stmt->execute();
if ($stmt->affected_rows == 0) {
throw new Exception("No rows updated in inventory.");
}
// Add to transactions
$insert = "INSERT INTO transactions (component_id, user_id, quantity, transaction_type, transaction_date) VALUES (?, ?, ?, 'assign', NOW())";
$stmt2 = $conn->prepare($insert);
$stmt2->bind_param("iii", $component_id, $user_id, $quantity);
$stmt2->execute();
if ($stmt2->affected_rows == 0) {
throw new Exception("No rows inserted in transactions.");
}
$conn->commit();
echo "success";
} catch (Exception $e) {
$conn->rollback();
echo "Error: " . $e->getMessage();
}
if (isset($stmt)) $stmt->close();
if (isset($stmt2)) $stmt2->close();
$conn->close();
?>