Sfoglia il codice sorgente

buyback page update

haru haru 3 anni fa
parent
commit
4f878f3144
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2 1
      admin/control/refill_order_manual.php

+ 2 - 1
admin/control/refill_order_manual.php

@@ -409,10 +409,11 @@ class refill_order_manualControl extends SystemControl
         }
         $condition['inner_status'] = 0;
         $merchant_list = $this->merchants();
-        $order_list = $model_refill_order->getBuyBackList($condition, 50, 'refill_buyback.*,refill_order.*,vr_order.order_state', 'refill_buyback.order_id desc','',true);
+        $order_list = $model_refill_order->getBuyBackList($condition, 50, 'refill_buyback.*,refill_order.*,vr_order.order_state', 'refill_buyback.act_time desc','',true);
         $order_list = $this->OrderDataFormat($order_list, $merchant_list);
 
         Tpl::output('order_list', $order_list);
+        Tpl::output('show_page', $model_refill_order->showpage());
         Tpl::showpage('refill.buyback.order');
     }