1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- global $_GPC, $_W;
- $GLOBALS['frames'] = $this->getMainMenu2();
- $seller_id=$_COOKIE["storeid"];
- $cur_store = $this->getStoreById($seller_id);
- $list = pdo_get('zh_jdgjb_coupons',array('id'=>$_GPC['id']));
- if(checksubmit('submit')){
- $data['name']=$_GPC['name'];
- $data['number']=$_GPC['number'];
- $data['cost']=$_GPC['cost'];
- $data['seller_id']=$seller_id;
- $data['introduce']=$_GPC['introduce'];
- $data['start_time']=$_GPC['time']['start'];
- $data['conditions']=$_GPC['conditions'];
- $data['end_time']=$_GPC['time']['end'];
- $data['uniacid']=$_W['uniacid'];
- if($_GPC['id']==''){
- $data['type']=2;
- $data['time']=time();
- $res=pdo_insert('zh_jdgjb_coupons',$data);
- if($res){
- message('添加成功',$this->createWebUrl('incoupon',array()),'success');
- }else{
- message('添加失败','','error');
- }
- }else{
- $res = pdo_update('zh_jdgjb_coupons', $data, array('id' => $_GPC['id']));
- if($res){
- message('编辑成功',$this->createWebUrl('incoupon',array()),'success');
- }else{
- message('编辑失败','','error');
- }
- }
- }
- include $this->template('web/inaddcoupon');
|