-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearshvalue.php
135 lines (84 loc) · 4.17 KB
/
searshvalue.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
<?php require 'ini/confg.php';?>
<div class="container-fluid">
<div class="row clearfix">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="card" style="height:auto;direction: rtl;margin-top: 0px">
<div class="header bg-blue">
<h2>
عرض نتائج البحث
</h2>
<i class="material-icons bg-red" id="closers" style="float: left;margin-top: -22px;cursor: pointer">close</i>
</div>
<div class="table-responsive">
<table class="table table-striped table-hover dataTable js-exportable" style="background-color: #fff;">
<thead style="color:#000">
<tr>
<th style="color:#000">#</th>
<th>اسم العميل</th>
<th>رقم التيلفون </th>
<th>بيع منتج</th>
<th>تسجيل قسط</th>
<th>التقارير</th>
</tr>
</thead>
<tfoot>
<tr>
<th style="color:#000">#</th>
<th>اسم العميل</th>
<th>رقم التيلفون </th>
<th>بيع منتج</th>
<th>تسجيل قسط</th>
<th>التقارير</th>
</tr>
</tfoot>
<tbody class="">
<?php
$get = new minrepo();
$getdat=$get->showcustor($_POST['inp']);
if($getdat == null){ ?>
<tr>
<td ><?php echo msg::setmsg("لايوجد نتائج لبحثك اسم العميل غير مسجل لدينا","danger");?></td>
<td><a href="addcustomer.php" style="height: 65px;
line-height: 58px;
font-size: 15px;" class="btn btn-info"><i class="material-icons">add_circle_outline</i> اضافه عميل جديد</a>
</td>
</tr>
<?php }else{
$nuber = 1;
foreach ($getdat as $data){
?>
<tr>
<th scope="row"><?=$nuber ++ ;?></th>
<td ><?=$data['name'];?></td>
<td ><?=$data['phone'];?></td>
<td>
<?php
echo '<a href="addreset.php?getid='.$data['customer_id'].'"class="btn btn-info cpro"><i class="material-icons">shopping_cart</i></a>';
?>
</td>
<td>
<?php
echo '<a href="addmanthpay.php?getid='.$data['customer_id'].'"class="btn btn-warning cpro"><i class="material-icons">monetization_on</i></a>';
?>
</td>
<td>
<?php
echo '<a href="reportcustomer.php?getid='.$data['customer_id'].'" class="btn btn-primary cpro"><i class="material-icons">description</i></a>';
}
}
?>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- #END# Exportable Table -->
</div>
<script>
$("#closers").on("click",function(){
$(".popup1").fadeOut(400);
});
</script>