|
@@ -166,6 +166,7 @@ class ordersendlistControl extends SystemControl
|
|
|
Tpl::output('order_list', $order_list);
|
|
|
Tpl::output('merchant_list', $merchant_list);
|
|
|
Tpl::output('provider_list', $provider_list);
|
|
|
+ Tpl::output('except_stat', $this->except_stat());
|
|
|
Tpl::output('show_page', $model_refill_order->showpage());
|
|
|
Tpl::showpage('refill.order.send.index');
|
|
|
}
|
|
@@ -743,6 +744,7 @@ class ordersendlistControl extends SystemControl
|
|
|
}
|
|
|
Tpl::output('merchant_list', $merchants);
|
|
|
Tpl::output('list', $list);
|
|
|
+ Tpl::output('except_stat', $this->except_stat());
|
|
|
Tpl::output('show_page', $mod_except->showpage());
|
|
|
Tpl::showpage('refill.order.exception');
|
|
|
}
|
|
@@ -771,4 +773,12 @@ class ordersendlistControl extends SystemControl
|
|
|
}
|
|
|
showMessage('操作完成');
|
|
|
}
|
|
|
+
|
|
|
+ private function except_stat()
|
|
|
+ {
|
|
|
+ $mod_except = Model('refill_exception');
|
|
|
+ $cond['except_state'] = 0;
|
|
|
+ $except_stat = $mod_except->where($cond)->count();
|
|
|
+ return intval($except_stat);
|
|
|
+ }
|
|
|
}
|