東郊到家系統(tǒng)開發(fā)(邏輯方案)丨東郊到家系統(tǒng)開發(fā)(案例項(xiàng)目)/源碼說明
新零售是什么模式
新零售簡單來說就是一種新型的物流銷售模式。
即企業(yè)以互聯(lián)網(wǎng)為依托,通過運(yùn)用大數(shù)據(jù)、人工智能等先進(jìn)技術(shù)手段,對商品的生產(chǎn)、流通與銷售過程進(jìn)行升級(jí)改造,進(jìn)而重塑業(yè)態(tài)結(jié)構(gòu)與生態(tài)圈,并對線上服務(wù)、線下體驗(yàn)以及現(xiàn)代物流進(jìn)行深度融合的零售新模式。
人工智能(Artificial Intelligence,簡稱AI)是指計(jì)算機(jī)系統(tǒng)在完成類似人類智力所需的任務(wù)時(shí)所表現(xiàn)出來的能力。它是一種復(fù)雜的技術(shù),通過將大量的數(shù)據(jù)輸入到算法中進(jìn)行學(xué)習(xí),不斷調(diào)整和改進(jìn)自己的算法,從而不斷優(yōu)化其性能。
/**
*/
namespace AdminController;
use CommonControllerAdminbaseController;
class CashController extends AdminbaseController{
var$type=array(
'1'=>
'2'=>
'3'=>
);
function index(){
if($_REQUEST['status']!=''){
$map['status']=$_REQUEST['status'];
$_GET['status']=$_REQUEST['status'];
$cash['type']=1;
}
if($_REQUEST['start_time']!=''){
$map['addtime']=array("gt",strtotime($_REQUEST['start_time']));
$_GET['start_time']=$_REQUEST['start_time'];
}
if($_REQUEST['end_time']!=''){
$map['addtime']=array("lt",strtotime($_REQUEST['end_time']));
$_GET['end_time']=$_REQUEST['end_time'];
}
if($_REQUEST['start_time']!=''&&$_REQUEST['end_time']!=''){
$map['addtime']=array("between",array(strtotime($_REQUEST['start_time']),strtotime($_REQUEST['end_time'])));
$_GET['start_time']=$_REQUEST['start_time'];
$_GET['end_time']=$_REQUEST['end_time'];
}
if($_REQUEST['keyword']!=''){
$map['uid|orderno|trade_no']=array("like","%".$_REQUEST['keyword']."%");
$_GET['keyword']=$_REQUEST['keyword'];
}
$cashrecord=M("users_cashrecord");
$count=$cashrecord->where($map)->count();
$page=$this->page($count,20);
$lists=$cashrecord
->where($map)
->order("addtime DESC")
->limit($page->firstRow.','.$page->listRows)
->select();
foreach($lists as$k=>$v){
$userinfo=M("users")->field("user_nicename")->where("id='$v[uid]'")->find();
$lists[$k]['userinfo']=$userinfo;
}
$cashrecord_total=$cashrecord->where($map)->sum("paid_in");
if($_REQUEST['status']=='')
{
$success=$map;
$success['status']=1;
$fail=$map;
$fail['status']=0;
$cashrecord_success=$cashrecord->where($success)->sum("paid_in");
$cashrecord_fail=$cashrecord->where($fail)->sum("paid_in");
$cash['success']=$cashrecord_success;
$cash['fail']=$cashrecord_fail;
$cash['type']=0;
}
$cash['total']=$cashrecord_total;
$this->assign('cash',$cash);
$this->assign('lists',$lists);
$this->assign('formget',$_GET);
$this->assign('type',$this->type);
$this->assign("page",$page->show('Admin'));
$this->display();
}
}