Skip to content

Commit

Permalink
Added order_status_id field in extension/dashboard/map model
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCartpenter committed May 19, 2024
1 parent 811fc05 commit 2411583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload/admin/model/extension/dashboard/map.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public function getTotalOrdersByCountry(): array {
$implode = [];

foreach ((array)$this->config->get('config_complete_status') as $order_status_id) {
$implode[] = (int)$order_status_id;
$implode[] = "`o`.`order_status_id` = '" . (int)$order_status_id . "'";
}

if ($implode) {
Expand Down

0 comments on commit 2411583

Please sign in to comment.