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

[Решено] Как добавить кол-во возвратов в "Краткий обзор" в админке?


kmkkoxa
 Share

Recommended Posts

Добрый гдень!

 

Версия: ocStore 1.5.5.1.2

 

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

Link to comment
Share on other sites


[=== admin/controller/common/home.php ===]

перед

$this->template = 'common/home.tpl';
добавить

		$this->data['text_total_return'] = $this->language->get('text_total_return');
		$this->load->model('report/return');
		$returnData = array();
		$this->data['total_return'] = $this->model_report_return->getTotalReturns($returnData);
[=== admin/language/russian/common/home.php ===]

добавить

$_['text_total_return']             = 'Всего возвратов:';
[=== admin/view/template/common/home.tpl ===]

после

            <tr>
              <td><?php echo $text_total_affiliate_approval; ?></td>
              <td><?php echo $total_affiliate_approval; ?></td>
            </tr>
добавить

            <tr>
              <td><?php echo $text_total_return; ?></td>
              <td><?php echo $total_return; ?></td>
            </tr>
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

×
×
  • 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.