57 lines
1.2 KiB
PHP
57 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use app\admin\addresmart\Address;
|
|
use app\admin\model\AuthGroupAccess;
|
|
use app\admin\model\order\Invoice;
|
|
use app\admin\model\OrderDispatch;
|
|
use app\admin\model\Worker;
|
|
use app\admin\model\WorkerItem;
|
|
use app\common\controller\Backend;
|
|
use app\common\Logic\OrderLogic;
|
|
use fast\Tree;
|
|
use think\Db;
|
|
use think\Exception;
|
|
use think\exception\DbException;
|
|
use think\exception\PDOException;
|
|
use think\exception\ValidateException;
|
|
use think\Hook;
|
|
use think\Model;
|
|
use function Symfony\Component\Clock\now;
|
|
|
|
/**
|
|
* 订单列管理
|
|
*
|
|
* @icon fa fa-circle-o
|
|
*/
|
|
class Orderplan extends Backend
|
|
{
|
|
|
|
/**
|
|
* Order模型对象
|
|
* @var \app\admin\model\Order
|
|
*/
|
|
protected $model = null;
|
|
protected $sources = null;
|
|
protected $items = null;
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = new \app\admin\model\Order;
|
|
|
|
|
|
//$this->view->assign("collectList", $this->model->getCollectList());
|
|
//$this->view->assign("dispatchTypeList", $this->model->getDispatchTypeList());
|
|
}
|
|
|
|
|
|
public function dashboard(){
|
|
|
|
return $this->fetch('orderplan/index');
|
|
|
|
}
|
|
|
|
}
|