forked from opendcim/openDCIM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupplycheckout.php
116 lines (106 loc) · 3.32 KB
/
supplycheckout.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
require_once("db.inc.php");
require_once("facilities.inc.php");
$subheader=__("Data Center Stockroom Supplies");
if(!$person->WriteAccess){
// No soup for you.
header('Location: '.redirect());
exit;
}
$dept=new Department();
$sup=new Supplies();
$supplyList=$sup->GetSuppliesList();
$deptList=$dept->GetDepartmentList();
// Check to make sure this was a form submission
if(isset($_POST['action']) && $_POST['action']=="submit"){
// The submission looks like our form and has something.
if(isset($_POST['deptid']) && count($_POST['deptid']>0)){
foreach($_POST['deptid'] as $key => $value){
/* use the $key to pull the value from each line.
only process if there is some form of data in each field */
if($_POST['supplyid'][$key]>0 && $_POST['quantity'][$key]>0 && $_POST['deptid'][$key]>0){
// print is a placeholder to verify information while testing
print "{$_POST['deptid'][$key]}\n";
print "{$_POST['supplyid'][$key]}\n";
print "{$_POST['quantity'][$key]}\n";
// hand off dept, supplyid and amount to deduct to non-existent function that will log, bill, track, whatever
}
}
}
}
?>
<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>openDCIM Stockroom Supplies</title>
<link rel="stylesheet" href="css/inventory.php" type="text/css">
<link rel="stylesheet" href="css/jquery-ui.css" type="text/css">
<!--[if lt IE 9]>
<link rel="stylesheet" href="css/ie.css" type="text/css">
<![endif]-->
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#newline').click(function (){
$(this).parent().prev().clone().insertBefore($(this).parent()).children('div:first-child').html('<img src="images/del.gif">').click(function() {
$(this).parent().remove();
});
});
});
</script>
</head>
<body>
<?php include( 'header.inc.php' ); ?>
<div class="page supply">
<?php
include( "sidebar.inc.php" );
?>
<div class="main">
<div class="center"><div>
<form method="POST">
<div class="table">
<div>
<div></div>
<div>Customer</div>
<div>Part Number</div>
<div>Quantity</div>
</div>
<div>
<div></div>
<div><select name="deptid[]" id="deptid">
<option value="0" selected>Select Department...</option>
<?php
foreach($deptList as $deptRow){
echo " <option value=\"$deptRow->DeptID\">$deptRow->Name</option>\n";
}
echo ' </select></div>
<div><select name="supplyid[]" id="supplyid">
<option value="0" selected>Select part...</option>
';
foreach($supplyList as $supplyRow){
echo " <option value=\"$supplyRow->SupplyID\">$supplyRow->PartNum ($supplyRow->PartName)</option>\n";
}
?>
</select></div>
<div><input type="text" name="quantity[]" class="quantity" size=5 maxlength=5></div>
</div>
<div>
<div id="newline"><img src="images/add.gif" alt="add new row"></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="caption">
<button type="submit" name="action" value="submit">Submit</button>
</div>
</div><!-- END div.table -->
</form>
</div></div>
<a href="index.php">[ Return to Main Menu ]</a>
</div><!-- END div.main -->
</div><!-- END div.page -->
</body>
</html>