-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsave_orders.php
More file actions
56 lines (43 loc) · 1.98 KB
/
Copy pathsave_orders.php
File metadata and controls
56 lines (43 loc) · 1.98 KB
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
<?php
/*
Copyright (C) 2007 - 2021, Christoph Marti
Copyleft 2021- Christian M. Stefan, Florian Meerwinck
LICENCE TERMS:
This module is free software. You can redistribute it and/or modify it
under the terms of the GNU General Public License - version 2 or later,
as published by the Free Software Foundation: http://www.gnu.org/licenses/gpl.html.
DISCLAIMER:
This module is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/
require_once('../../config.php');
// Include WB admin wrapper script
$update_when_modified = true; // Tells script to update when this page was last updated
require_once(WB_PATH.'/modules/admin.php');
// Loop through the orders...
foreach ($_POST['status'] as $order_id => $status) {
$status = $database->escapeString(strip_tags($status));
// ...and update status
$database->query("UPDATE `{BXT}_customer` SET `status` = '$status' WHERE `order_id` = '$order_id'");
// If order was canceled put the ordered items back to the stock
if ($status == 'canceled') {
// Get the ordered items and their corresponding quantity
$query_ordered_items = $database->query("SELECT `item_id`, `quantity` FROM `{BXT}_order` WHERE `order_id` = '$order_id'");
while ($ordered_items = $query_ordered_items->fetchRow()) {
$item_id = $ordered_items['item_id'];
$quantity = $ordered_items['quantity'];
// Update item quantity
$database->query("UPDATE `{BXT}_items` SET `stock` = stock + '$quantity' WHERE `item_id` = '$item_id'");
}
}
}
// Check if there is a db error, otherwise say successful
if ($database->is_error()) {
$admin->print_error($database->get_error(), WB_URL.'/modules/bakery/modify_orders.php?page_id='.$page_id);
} else {
$admin->print_success($TEXT['SUCCESS'], WB_URL.'/modules/bakery/modify_orders.php?page_id='.$page_id);
}
// Print admin footer
$admin->print_footer();