dlpeisongset.inc.php
2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
global $_GPC, $_W;
$action = 'start';
//$GLOBALS['frames'] = $this->getMainMenu2();
$uid=$_COOKIE["uid"];
$storeid=$_COOKIE["storeid"];
$cur_store = $this->getStoreById($storeid);
$GLOBALS['frames'] = $this->getNaveMenu($storeid, $action,$uid);
$sys=pdo_get('cjdc_system',array('uniacid'=>$_W['uniacid']),array('ps_name','is_sj','is_dada','is_kfw','is_pt','id'));
$ps_name=empty($sys['ps_name'])?'超级跑腿':$sys['ps_name'];
$info=pdo_get('cjdc_storeset',array('store_id'=>$storeid));
$dadainfo=pdo_get('cjdc_psset',array('store_id'=>$storeid,'uniacid'=>$_W['uniacid']));
$kfwinfo=pdo_get('cjdc_kfwset',array('store_id'=>$storeid,'uniacid'=>$_W['uniacid']));
if(checksubmit('submit')){
$data['ps_time']=$_GPC['ps_time'];
$data['ps_jl']=$_GPC['ps_jl'];
$data['ps_mode']=$_GPC['ps_mode'];
$data['is_zt']=$_GPC['is_zt'];
$data['is_cj']=$_GPC['is_cj'];
$data['is_ps']=$_GPC['is_ps'];
$data['is_hdfk']=$_GPC['is_hdfk'];
$data['ztxy']=html_entity_decode($_GPC['ztxy']);
if($_GPC['is_ps']==2 and $_GPC['is_zt']==2){
message('外卖配送和到店自提必须开启一个','','error');
}
$res = pdo_update('cjdc_storeset', $data, array('store_id' => $storeid));
if($_GPC['ps_mode']=='达达配送'){
$data2['source_id']=$_GPC['source_id'];
$data2['shop_no']=$_GPC['shop_no'];
$data2['store_id']=$storeid;
$data2['uniacid']=$_W['uniacid'];
$dada=pdo_get('cjdc_psset',array('store_id'=>$storeid,'uniacid'=>$_W['uniacid']));
if($dada){
$res2 = pdo_update('cjdc_psset', $data2, array('store_id' => $storeid));
}else{
$res2 =pdo_insert('cjdc_psset', $data2);
}
}
if($_GPC['ps_mode']=='快服务配送'){
$data2['store_id']=$storeid;
$data2['user_id']=$_GPC['user_id'];
$data2['uniacid']=$_W['uniacid'];
$dada=pdo_get('cjdc_kfwset',array('store_id'=>$storeid,'uniacid'=>$_W['uniacid']));
if($dada){
$res2 = pdo_update('cjdc_kfwset', $data2, array('store_id' => $storeid));
}else{
$res2 =pdo_insert('cjdc_kfwset', $data2);
}
}
if($res or $res2){
message('编辑成功',$this->createWebUrl2('dlpeisongset',array()),'success');
}else{
message('编辑失败','','error');
}
}
include $this->template('web/dlpeisongset');