-
Notifications
You must be signed in to change notification settings - Fork 0
/
inventeries.php
184 lines (168 loc) · 7 KB
/
inventeries.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<?php
session_start();
if(!isset($_SESSION['userId']))
{
header('location:login.php');
}
?>
<?php require "assets/function.php" ?>
<?php require 'assets/db.php';?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="js/datatables.net-bs/css/dataTables.bootstrap.min.css">
<title><?php echo siteTitle(); ?></title>
<?php require "assets/autoloader.php" ?>
<style type="text/css">
<?php include 'css/customStyle.css'; ?>
</style>
</head>
<body style="background: #ECF0F5;padding:0;margin:0">
<div class="dashboard" style="position: fixed;width: 18%;height: 100%;background:#222D32">
<div style="background:#357CA5;padding: 14px 3px;color:white;font-size: 15pt;text-align: center;text-shadow: 1px 1px 11px black">
<a href="index.php" style="color: white;text-decoration: none;"><?php echo strtoupper(siteName()); ?> </a>
</div>
<div class="flex" style="padding: 3px 7px;margin:5px 2px;">
<div><img src="photo/<?php echo $user['pic'] ?>" class='img-circle' style='width: 77px;height: 66px'></div>
<div style="color:lightgreen;font-size: 13pt;padding: 14px 7px;margin-left: 11px;"><?php echo ucfirst($user['name']); ?></div>
</div>
<div style="background: #1A2226;font-size: 10pt;padding: 11px;color: #79978F">القائمة</div>
<div>
<div style="background:#1E282C;color: white;padding: 13px 17px;border-left: 3px solid #3C8DBC;"><span><i class="fa fa-dashboard fa-fw"></i> لوحة التحكم</span></div>
<div class="item">
<ul class="nostyle zero">
<a href="index.php"><li ><i class="fa fa-circle-o fa-fw"></i> الرئيسية</li></a>
<a href="inventeries.php"><li style="color: white"><i class="fa fa-circle-o fa-fw"></i> الادوية</li></a>
<a href="addnew.php"><li><i class="fa fa-circle-o fa-fw"></i>اضافة دواء جديد</li></a>
<a href="reports.php"><li><i class="fa fa-circle-o fa-fw"></i> الفواتير</li></a>
</ul><
</div>
</div>
<div style="background:#1E282C;color: white;padding: 13px 17px;border-left: 3px solid #3C8DBC;"><span><i class="fa fa-globe fa-fw"></i> اعدادات اخرى</span></div>
<div class="item">
<ul class="nostyle zero">
<a href="sitesetting.php"><li><i class="fa fa-circle-o fa-fw"></i> اعدادات النظام</li></a>
<a href="profile.php"><li><i class="fa fa-circle-o fa-fw"></i> الملف الشخصي</li></a>
<a href="accountSetting.php"><li><i class="fa fa-circle-o fa-fw"></i> بيانات الحساب</li></a>
<a href="logout.php"><li><i class="fa fa-circle-o fa-fw"></i> تسجيل الخروج</li></a>
</ul><
</div>
</div>
<div class="marginLeft" >
<div style="color:white;background:#3C8DBC" >
<div class="pull-right flex rightAccount" style="padding-right: 11px;padding: 7px;">
<div><img src="photo/<?php echo $user['pic'] ?>" style='width: 41px;height: 33px;' class='img-circle'></div>
<div style="padding: 8px"><?php echo ucfirst($user['name']) ?></div>
</div>
<div class="clear"></div>
</div>
<div class="account" style="display: none;z-index: 6">
<div style="background: #3C8DBC;padding: 22px;" class="center">
<img src="photo/<?php echo $user['pic'] ?>" style='width: 100px;height: 100px; margin:auto;' class='img-circle img-thumbnail'>
<br><br>
<span style="font-size: 13pt;color:#CEE6F0"><?php echo $user['name'] ?></span><br>
<span style="color: #CEE6F0;font-size: 10pt">عضو منذ:<?php echo $user['date']; ?></span>
</div>
<div style="padding: 11px;">
<a href="profile.php"><button class="btn btn-default" style="border-radius:0">الملف الشخصي</button>
<a href="logout.php"><button class="btn btn-default pull-right" style="border-radius: 0">تسجيل الخروج</button></a>
</div>
</div>
<?php
if (isset($_GET['catId']))
{
$catId = $_GET['catId'];
$array = $con->query("select * from categories where id='$catId'");
$catArray =$array->fetch_assoc();
$catName = $catArray['name'];
$stockArray = $con->query("select * from inventeries where catId='$catArray[id]'");
}
else
{
$catName = "الادوية";
$stockArray = $con->query("select * from inventeries");
}
include 'assets/bill.php';
?>
<div class="content">
<ol class="breadcrumb ">
<li><a href="index.php"><i class="fa fa-dashboard"></i> الرئيسية</a></li>
<li class="active"><?php echo $catName ?></li>
</ol>
<div class="tableBox" >
<table id="dataTable" class="table table-bordered table-striped" style="z-index: -1">
<thead>
<th>التسلسل</th>
<th>اسم الدواء</th>
<th>القوة</th>
<th>السعر</th>
<th>اسم المستورد</th>
<th>الشركة المصنعة</th>
<th></th>
<th></th>
</thead>
<tbody>
<?php $i=0;
while ($row = $stockArray->fetch_assoc())
{
$i=$i+1;
$id = $row['id'];
?>
<tr>
<td><?php echo $i; ?></td>
<td><?php echo $row['name']; ?></td>
<td><?php echo $row['unit']; ?></td>
<td><?php echo $row['price']; ?></td>
<td><?php echo $row['supplier']; ?></td>
<td><?php echo $row['company']; ?></td>
<?php
if (!empty($_SESSION['bill']))
{
foreach ($_SESSION['bill'] as $key => $value)
{
if (in_array($row['id'], $_SESSION['bill'][$key]))
{
echo "<td>تم الاختيار</td>";break;
}
else
{
?>
<td id='selection<?php echo $i; ?>'><button class="btn btn-primary btn-xs" onclick="addInBill('<?php echo $id ?>','<?php echo $i; ?>')">بيع</button></td>
<?php break;} } } else {?>
<td id='selection<?php echo $i; ?>'><button class="btn btn-primary btn-xs" onclick="addInBill('<?php echo $id ?>','<?php echo $i; ?>')">بيع</button></td>
<?php } ?>
<td colspan="center"><a href="delete.php?item=<?php echo $row['id'] ?>&url=<?php echo $_SERVER['QUERY_STRING'] ?>"><button class='btn btn-danger btn-xs'>حذف</button></a></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div> <!-- ending tag for content -->
</div> <!-- ending tag for margin left -->
</body>
</html>
<script type="text/javascript">
function addInBill(id,place)
{
var value = $("#counter").val();
value ++;
var selection = 'selection'+place;
$("#bill").fadeIn();
$("#counter").val(value);
$("#"+selection).html("selected");
$.post('called.php?q=addtobill',
{
id:id
}
);
}
$(document).ready(function()
{
$(".rightAccount").click(function(){$(".account").fadeToggle();});
$("#dataTable").DataTable();
});
</script>
<script src="js/datatables.net/js/jquery.dataTables.min.js"></script>
<script src="js/datatables.net-bs/js/dataTables.bootstrap.min.js"></script>