В фале /core/includes/admin/totals.php после
$total["revenue_thismonth"] = show_price($a, $currtransform );
вставляем
$LASTMONTH = date("Y-m-01", mktime(0, 0, 0, date("m")-1, date("d"), date("Y"))); $q = db_query("select order_amount, currency_value from ".ORDERS_TABLE." where statusID > 1 and order_time > '".$LASTMONTH."' and order_time < '".$THISMONTH."'"); $n = 0; $a = 0; while($r = db_fetch_row($q)) { $a += $r[0]; $n++; } $total["orders_lastmonth"] = $n; $total["revenue_lastmonth"] = show_price($a, $currtransform );
В файле core/tpl/admin/default.tpl.html после
<div class="marg"><b>{$smarty.const.ADMIN_MENU_ORD_MON}:</b><br>{$totals.orders_thismonth} {$smarty.const.ADMIN_MENU_ORD_NAME} ({$totals.revenue_thismonth})</div>
вставляем
<div class="marg"><b>Прошлый месяц:</b><br>{$totals.orders_lastmonth} {$smarty.const.ADMIN_MENU_ORD_NAME} ({$totals.revenue_lastmonth})</div>
Выглядит примерно так Безымянный2.png 10.52К 8 Количество загрузок:
Все