Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Панель управления - Всего заказов


Recommended Posts

Здравствуйте!

Подскажите, пожалуйси, ггде и что надо прописать, чтобы в Панель управления - Всего заказов когдачество заказов менялось.

Т.е. раньше все было ок, но как только у меня сило 1001 заказов я в отчете (Панель управления - Всего заказов) теперьь вижу всегда 1К, а мне надо, чтобы дальше система просивляла 1002, 1003... Помогите, плиз. Магазин на Ocstore 2.3

image.png.384d9e0be41b1d15fcbdc961795856eb.png

Link to comment
Share on other sites


удалите это

Спойлер

elseif ($order_total > 1000) {
            $data['total'] = round($order_total / 1000, 1) . 'K';
        }

из

admin/controller/extension/dashboard/order.php

Link to comment
Share on other sites


admin/controller/extension/dashboard.php

	if ($order_total > 1000000000000) {
            $data['total'] = round($order_total / 1000000000000, 1) . 'T';
        } elseif ($order_total > 1000000000) {
            $data['total'] = round($order_total / 1000000000, 1) . 'B';
        } elseif ($order_total > 1000000) {
            $data['total'] = round($order_total / 1000000, 1) . 'M';
        } elseif ($order_total > 1000) {
            $data['total'] = round($order_total / 1000, 1) . 'K';
        } else {
            $data['total'] = $order_total;
        }

заменить на 

$data['total'] = $order_total;

 

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.