-
Notifications
You must be signed in to change notification settings - Fork 0
/
sales.php
213 lines (147 loc) · 4.8 KB
/
sales.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<?php
require_once 'header.php';
require_once 'sidebar.php';
?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content">
<?php
if (isset($_GET['salesInsert'])) {?>
<div class="box box-primary">
<div class="content-header">
<h1 >Satış Ekle</h1>
<hr>
</div>
<div class="box-body">
<?php
if (isset($_POST['sales_insert'])) {
$sonuc=$db->insert("sales",$_POST,[
"form_name" => "sales_insert"
]
);
if ($sonuc['status']) {?>
<div class="alert alert-success">
Kayıt Başarılı <a href="<?php $link=explode("?",$_SERVER['REQUEST_URI']); echo $link[0]; ?>">Listele</a>
</div>
<?php } else {?>
<div class="alert alert-danger">
Kayıt Başarısız.<?php echo $sonuc['error'] ?>
</div>
<?php }
}
?>
<!-- <div class="alert alert-success">
Kayıt Başarılı
</div> -->
<form method="POST" enctype="multipart/form-data">
<div class="form-group">
<label>Hesap Seç</label>
<div class="row">
<div class="col-xs-12">
<select class="form-control" name="account_id">
<?php
$sql=$db->read("account", [
"colums_name"=> "account_id",
"colums_sort"=> "DESC"
]);
$say=1;
while ($row=$sql->fetch(PDO::FETCH_ASSOC)) { ?>
<option value="<?php echo $row['account_id'] ?>"> <?php echo $row['account_company'] ?></option>
// code...
<?php }?>
?>
</select>
</div>
</div>
</div>
<div class="form-group">
<label>Ürün Seç</label>
<div class="row">
<div class="col-xs-12">
<select class="form-control" name="products_id">
<?php
$sql=$db->read("products", [
"colums_name"=> "products_id",
"colums_sort"=> "DESC"
]);
$say=1;
while ($row=$sql->fetch(PDO::FETCH_ASSOC)) { ?>
<option value="<?php echo $row['products_id'] ?>"> <?php echo $row['products_title'] ?></option>
// code...
<?php }?>
?>
</select>
</div>
</div>
</div>
<div align="right" class="box-footer">
<button type="submit" class="btn btn-success" name="sales_insert">Ekle</button>
</div>
</form>
</div>
</div>
<?php }
$sql=$db->wread("sales","sales_id",$_GET['sales_id']);
$row=$sql->fetch(PDO::FETCH_ASSOC);
?>
<!-- update işlem sorgusu -->
<!-- Default box -->
<div class="box box-primary">
<div class="content-header">
<h1 >satışlar</h1>
<div align="right">
<a href="?salesInsert=true"><button class="btn btn-success">Yeni Ekle</button></a>
<br><br>
</div>
<?php
if (isset($_GET['salesDelete'])) {
$sonuc=$db->delete("sales","sales_id",$_GET['sales_id'],$_GET['file_delete']);
if ($sonuc['status']) {?>
<div class="alert alert-success">
Silme Başarılı
</div>
<?php } else {?>
<div class="alert alert-danger ">
Silme Başarısız.<?php echo $sonuc['error'] ?>
</div>
<?php }
}
?>
</div>
<!-- /.box-header -->
<div class="box-body">
<table id="example1" class="table table-bordered table-striped">
<thead>
<tr>
<th align="center" width="5">#</th>
<th>Tarih</th>
<th>Ürün , Hizmet</th>
<th>Hesap</th>
<th>Tutar</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
$sql=$db->qSql("SELECT * FROM sales INNER JOIN account ON account.account_id=sales.account_id INNER JOIN products ON products.products_id=sales.products_id");
$say=1;
while ($row=$sql->fetch(PDO::FETCH_ASSOC)) { ?>
<tr>
<td><?php echo $say++; ?></td>
<td width="150"><?php echo $db->tDate($row['sales_date'],["date_time" => TRUE]) ?></td>
<td><?php echo $row['products_title'] ?></td>
<td><?php echo $row['account_company'] ?></td>
<td width="20"><a href="sales-details.php?sales_id=<?php echo $row['sales_id']; ?>"><button class="btn btn-primary btn-sm">satış Detayı</button></a></td>
<td align="center" width="5"><a href="?salesDelete=True&sales_id=<?php echo $row['sales_id'] ?>&file_delete=<?php echo $row['sales_file'] ?>"><i class="fa fa-trash-o"></i></a></td>
</tr>
<?php } ?>
</table>
</div>
<!-- /.box-body -->
</div>
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<?php require_once 'footer.php'; ?>