|
@@ -0,0 +1,637 @@
|
|
|
|
+<?php
|
|
|
|
+namespace app\store\controller;
|
|
|
|
+use library\Controller;
|
|
|
|
+use think\cache\driver\Redis;
|
|
|
|
+use think\Db;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * 商品
|
|
|
|
+ * Class Goods
|
|
|
|
+ * @package app\store\controller
|
|
|
|
+ */
|
|
|
|
+class Goods2 extends Controller
|
|
|
|
+{
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 绑定数据表
|
|
|
|
+ * @var string
|
|
|
|
+ */
|
|
|
|
+ protected $table = 'store_collection';
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 商品列表
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * @throws \think\Exception
|
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
|
+ * @throws \think\exception\DbException
|
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
|
+ */
|
|
|
|
+ public function index()
|
|
|
|
+ {
|
|
|
|
+ checkSynCollectionState();
|
|
|
|
+ $this->title = '合成藏品管理';
|
|
|
|
+ $query = $this->_query($this->table)->where('is_deleted',0)->like('name');
|
|
|
|
+ $query->dateBetween('create_at')->where('type',2)->order('id desc')->page();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 数据列表处理
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * @param array $data
|
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
|
+ * @throws \think\exception\DbException
|
|
|
|
+ */
|
|
|
|
+ protected function _index_page_filter(&$data)
|
|
|
|
+ {
|
|
|
|
+ foreach ($data as &$v){
|
|
|
|
+ $checksell = $this->checkSellTime($v['id']);
|
|
|
|
+ if (!$checksell){
|
|
|
|
+ $v['is_save'] = 0;
|
|
|
|
+ }else{
|
|
|
|
+ $v['is_save'] = 1;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ $v['zz']=Db::table('hash')->where('goods_id',$v['id'])->count();
|
|
|
|
+ $now_inventory = getCollectionInventory($v['id']);
|
|
|
|
+ $v['now_inventory'] = $now_inventory<=0 ? 0 : $now_inventory;
|
|
|
|
+ $v['shengyu'] = Db::name('hash')->where('goods_id',$v['id'])->where('status',0)->count();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 添加商品
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * @throws \think\Exception
|
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
|
+ * @throws \think\exception\DbException
|
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
|
+ */
|
|
|
|
+ public function add()
|
|
|
|
+ {
|
|
|
|
+ $this->title = '添加藏品';
|
|
|
|
+ $this->_form($this->table, 'form');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 编辑商品
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * @throws \think\Exception
|
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
|
+ * @throws \think\exception\DbException
|
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
|
+ */
|
|
|
|
+ function edit()
|
|
|
|
+ {
|
|
|
|
+ $this->title = '编辑商品';
|
|
|
|
+ $id = $this->request->get('id');
|
|
|
|
+ $checksell = $this->checkSellTime($id);
|
|
|
|
+// if (!$checksell) $this->error('藏品已经开始抢购或已过期,无法修改');
|
|
|
|
+ $this->_form($this->table, 'form');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 表单数据处理
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * @param array $data
|
|
|
|
+ */
|
|
|
|
+ protected function _form_filter(&$data)
|
|
|
|
+ {
|
|
|
|
+ if($this->request->post()){
|
|
|
|
+// if (isset($data['id']) || !empty($data['id'])){
|
|
|
|
+// $checksell = $this->checkSellTime($data['id']);
|
|
|
|
+// if (!$checksell) $this->error('藏品已经开始抢购或已过期,无法修改');
|
|
|
|
+// }
|
|
|
|
+ if ($data['cover'] == '') $this->error('请上传藏品图片');
|
|
|
|
+ if ($data['price']<=0) $this->error('藏品价格错误');
|
|
|
|
+ if ($data['auth_img'] == '') $this->error('请上传作者头像');
|
|
|
|
+ if ($data['describe'] == '') $this->error('请上传商品描述');
|
|
|
|
+// if ($data['buy_count']<1) $this->error('限购数量不能小于1');
|
|
|
|
+ //if ($data['share_img'] == '') $this->error('请上传分享二维码');
|
|
|
|
+ $data['date'] = date('Y-m-d',strtotime($data['sell_time']));
|
|
|
|
+ if (isset($data['id'])){
|
|
|
|
+ $buy_count = Db::name('store_order_info')
|
|
|
|
+ ->whereIn('status','1,3')
|
|
|
|
+ ->where('c_id',$data['id'])
|
|
|
|
+ ->count();
|
|
|
|
+ }else{
|
|
|
|
+ $buy_count = 0;
|
|
|
|
+ }
|
|
|
|
+ $data['type'] = 2;
|
|
|
|
+ $data['now_inventory'] = $data['inventory']-$buy_count;
|
|
|
|
+ }else{
|
|
|
|
+ if (!empty($data)){
|
|
|
|
+ $data['covers'] = $data['cover'];
|
|
|
|
+ $data['auth_imgs'] = $data['auth_img'];
|
|
|
|
+ $data['describes'] = $data['describe'];
|
|
|
|
+ $data['share_imgs'] = $data['share_img'];
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ $list = Db::name('store_collection')->field('id,name,cover')->select();
|
|
|
|
+ $this->list = $list;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 处理成功回调
|
|
|
|
+ */
|
|
|
|
+ public function _form_result($result,$data){
|
|
|
|
+ if ($result) {
|
|
|
|
+ setCollectionInfoHash($result);
|
|
|
|
+ $redis = new Redis();
|
|
|
|
+ $count = Db::name($this->table)->where('id',$result)->value('now_inventory');
|
|
|
|
+ $redis->set('collection_count_'.$result,$count);
|
|
|
|
+ $this->success('操作成功',url('/#/store/goods2/index'));
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * 商品上架
|
|
|
|
+ */
|
|
|
|
+ public function up()
|
|
|
|
+ {
|
|
|
|
+ $data = $this->request->post();
|
|
|
|
+ if (Db::name($this->table)->where('id',$data['id'])->update(['status'=>1])){
|
|
|
|
+ setCollectionInfoHash($data['id']);
|
|
|
|
+ $this->success('恭喜您,数据更新成功');
|
|
|
|
+ }else{
|
|
|
|
+ $this->error('数据更新失败');
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * 商品下架
|
|
|
|
+ */
|
|
|
|
+ public function down()
|
|
|
|
+ {
|
|
|
|
+ $data = $this->request->post();
|
|
|
|
+ if (Db::name($this->table)->where('id',$data['id'])->update(['status'=>0])){
|
|
|
|
+ setCollectionInfoHash($data['id']);
|
|
|
|
+ $this->success('恭喜您,数据更新成功');
|
|
|
|
+ }else{
|
|
|
|
+ $this->error('数据更新失败');
|
|
|
|
+ }
|
|
|
|
+ //$this->_save($this->table, ['status' => '0']);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * 商品删除
|
|
|
|
+ */
|
|
|
|
+ public function del()
|
|
|
|
+ {
|
|
|
|
+ $data = $this->request->post();
|
|
|
|
+ if (Db::name($this->table)->where('id',$data['id'])->update(['is_deleted'=>1])){
|
|
|
|
+ setCollectionInfoHash($data['id']);
|
|
|
|
+ $this->success('恭喜您,数据更新成功');
|
|
|
|
+ }else{
|
|
|
|
+ $this->error('数据更新失败');
|
|
|
|
+ }
|
|
|
|
+ //$this->_save($this->table, ['is_deleted' => '1']);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+// public function _save_result($result){
|
|
|
|
+// if ($result){
|
|
|
|
+// setCollectionInfoHash($result);
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+
|
|
|
|
+ //判断是否已经抢购开始
|
|
|
|
+ function checkSellTime($id){
|
|
|
|
+ $sell_time = Db::name($this->table)->where('id',$id)->value('sell_time');
|
|
|
|
+ $advance_minutes = getAdvanceMinutes();
|
|
|
|
+ if ($advance_minutes>0){
|
|
|
|
+ $sell_time = strtotime($sell_time)-($advance_minutes*60);
|
|
|
|
+ }else{
|
|
|
|
+ $sell_time = strtotime($sell_time);
|
|
|
|
+ }
|
|
|
|
+ if ($sell_time<=time()) return false;
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public function send(){
|
|
|
|
+ if($this->request->post()){
|
|
|
|
+ $data = $this->request->post();
|
|
|
|
+ if (!isset($data['mid']) || $data['mid']==''){
|
|
|
|
+ $this->error('请选择用户');
|
|
|
|
+ }
|
|
|
|
+ $inventory = Db::name($this->table)->where('id',$data['id'])->value('inventory');
|
|
|
|
+ $info = Db::name($this->table)->where('id',$data['id'])->find();
|
|
|
|
+
|
|
|
|
+ $redis = new Redis();
|
|
|
|
+ $zhuzao_count = $redis->Llen('collectionHash_'.$data['id']);
|
|
|
|
+ if ($zhuzao_count<$data['number']){
|
|
|
|
+ $this->error('铸造的的数量不足,无法赠送');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ $com = true;
|
|
|
|
+ Db::startTrans();
|
|
|
|
+ try {
|
|
|
|
+ $array = [];
|
|
|
|
+ for ($i=0;$i<$data['number'];$i++){
|
|
|
|
+ //获取排名
|
|
|
|
+ $rank = getRanking($data['id'])+1;
|
|
|
|
+ $tag = getTag($data['id'],$rank,$inventory);
|
|
|
|
+ saveRanking($data['id']);
|
|
|
|
+ $company = '纪元部落有限公司';
|
|
|
|
+ $hash = getCompanyHash($data['id']);
|
|
|
|
+ $company_hash = $hash['hash'];
|
|
|
|
+ $company_hash_time = $hash['create_at'];
|
|
|
|
+ Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
|
|
|
|
+ $collectors_hash = '';
|
|
|
|
+ $date = [
|
|
|
|
+ 'order_no'=>get_order_sn(),
|
|
|
|
+ 'tag'=>$tag,
|
|
|
|
+ 'mid'=>$data['mid'],
|
|
|
|
+ 'c_id'=>$data['id'],
|
|
|
|
+ 'name'=>$info['name'],
|
|
|
|
+ 'cover'=>$info['cover'],
|
|
|
|
+ 'pro_info'=>json_encode($info,true),
|
|
|
|
+ 'company'=>$company,
|
|
|
|
+ 'company_hash'=>$company_hash,
|
|
|
|
+ 'company_hash_time'=>$company_hash_time,
|
|
|
|
+ 'collectors_hash'=>$collectors_hash,
|
|
|
|
+ 'collectors_hash_time'=>''
|
|
|
|
+ ];
|
|
|
|
+ $array[] = $date;
|
|
|
|
+ }
|
|
|
|
+ Db::name('store_order_info')->insertAll($array);
|
|
|
|
+
|
|
|
|
+ Db::commit();
|
|
|
|
+ } catch (\Exception $e){
|
|
|
|
+ Db::rollback();
|
|
|
|
+ $com = false;
|
|
|
|
+ }
|
|
|
|
+ if ($com){
|
|
|
|
+ //减掉库存
|
|
|
|
+ loseCollectionInventory($data['id'],$data['number']);
|
|
|
|
+ $this->success('赠送成功');
|
|
|
|
+ }else{
|
|
|
|
+ $this->error('赠送失败');
|
|
|
|
+ }
|
|
|
|
+ }else{
|
|
|
|
+ $id=$this->request->get('id');
|
|
|
|
+ $this->assign('id',$id);
|
|
|
|
+ $user = Db::name('store_member')->where('is_deleted',0)->field('id,name,phone')->select();
|
|
|
|
+ $this->assign('user',$user);
|
|
|
|
+ $this->fetch();
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public function hash(){
|
|
|
|
+
|
|
|
|
+ if($this->request->post()){
|
|
|
|
+ $id = $this->request->post('id');
|
|
|
|
+ $number = $this->request->post('number');
|
|
|
|
+
|
|
|
|
+ if ($number<=0){
|
|
|
|
+ $this->error('数量错误');
|
|
|
|
+ }
|
|
|
|
+ if (Db::name('store_collection')->where('id',$id)->setInc('casting_num',$number)){
|
|
|
|
+ $redis = new Redis();
|
|
|
|
+ $redis->Incrby('castingHash_'.$id,$number);
|
|
|
|
+ $this->success('增加成功,正在铸造中');
|
|
|
|
+ }
|
|
|
|
+ $this->error('增加失败,请稍后重试');
|
|
|
|
+
|
|
|
|
+ }else{
|
|
|
|
+
|
|
|
|
+ $id=$this->request->get('id');
|
|
|
|
+ $this->assign('id',$id);
|
|
|
|
+ $this->fetch();
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 批量赠送
|
|
|
|
+ * @auth true
|
|
|
|
+ * @throws \think\Exception
|
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
|
+ */
|
|
|
|
+ public function import()
|
|
|
|
+ {
|
|
|
|
+ list($msec, $sec) = explode(' ', microtime());
|
|
|
|
+ $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000); //毫秒值
|
|
|
|
+ $get = $this->request->get();
|
|
|
|
+ $import_path = $_SERVER['DOCUMENT_ROOT'].'/'.$get['path'];
|
|
|
|
+ $url = $get['url'];
|
|
|
|
+ $c_id = $get['c_id'];
|
|
|
|
+ if (getConfigValue('storage_type')=='oss'){
|
|
|
|
+ $save_dir = "./upload/excle/"; // 服务资源目录
|
|
|
|
+ $filename = date('Ymd').time().".xlsx"; // 自定义名称
|
|
|
|
+ $res = $this->getFile($url,$save_dir,$filename,1);
|
|
|
|
+ $import_path = $_SERVER['DOCUMENT_ROOT'].'/upload/excle/'.$res;
|
|
|
|
+ }
|
|
|
|
+ $info = getCollectionInfoHash($c_id);
|
|
|
|
+ $num = 1;
|
|
|
|
+ try {
|
|
|
|
+ $objReader =\PHPExcel_IOFactory::createReader('Excel2007');
|
|
|
|
+ $objExcel = $objReader->load($import_path);
|
|
|
|
+ $list = $objExcel->getActiveSheet()->toArray();
|
|
|
|
+ $result = 0;
|
|
|
|
+ $success = 0;
|
|
|
|
+ $number = 0;
|
|
|
|
+ $array = array();
|
|
|
|
+ foreach ($list as $k=>$v){
|
|
|
|
+ if($k>$num-1){
|
|
|
|
+ if(array_filter($v)){
|
|
|
|
+ $data=[];
|
|
|
|
+ foreach ($v as $kk=>$vv){
|
|
|
|
+ $data[IntToChr($kk)]=trim($vv);
|
|
|
|
+ }
|
|
|
|
+ $a['phone'] = $data['A'];
|
|
|
|
+ $a['number'] = $data['B'];
|
|
|
|
+ array_push($array,$a);
|
|
|
|
+ $number = $number+$data['B'];
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ $redis = new Redis();
|
|
|
|
+ $zhuzao_count = $redis->Llen('collectionHash_'.$c_id);
|
|
|
|
+ if ($zhuzao_count<$number){
|
|
|
|
+ $this->error('铸造的的数量不足,无法赠送',[],3);
|
|
|
|
+ }
|
|
|
|
+ $error = 0;
|
|
|
|
+ foreach ($array as &$v){
|
|
|
|
+ $member = Db::name('store_member')->where('phone',$v['phone'])->find();
|
|
|
|
+ if (!$member){
|
|
|
|
+ $error = $error+1;
|
|
|
|
+ }else{
|
|
|
|
+ $array1 = [];
|
|
|
|
+ for ($i=0;$i<$v['number'];$i++){
|
|
|
|
+ //获取排名
|
|
|
|
+ $rank = getRanking($c_id)+1;
|
|
|
|
+ $tag = getTag($c_id,$rank,$info['inventory']);
|
|
|
|
+ saveRanking($c_id);
|
|
|
|
+ $company = '纪元部落有限公司';
|
|
|
|
+ $hash = getCompanyHash($c_id);
|
|
|
|
+ $company_hash = $hash['hash'];
|
|
|
|
+ $company_hash_time = $hash['create_at'];
|
|
|
|
+ Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
|
|
|
|
+ $collectors_hash = '';
|
|
|
|
+ $date = [
|
|
|
|
+ 'order_no'=>get_order_sn(),
|
|
|
|
+ 'tag'=>$tag,
|
|
|
|
+ 'mid'=>$member['id'],
|
|
|
|
+ 'c_id'=>$c_id,
|
|
|
|
+ 'name'=>$info['name'],
|
|
|
|
+ 'cover'=>$info['cover'],
|
|
|
|
+ 'pro_info'=>json_encode($info,true),
|
|
|
|
+ 'company'=>$company,
|
|
|
|
+ 'company_hash'=>$company_hash,
|
|
|
|
+ 'company_hash_time'=>$company_hash_time,
|
|
|
|
+ 'collectors_hash'=>$collectors_hash,
|
|
|
|
+ 'collectors_hash_time'=>''
|
|
|
|
+ ];
|
|
|
|
+ $array1[] = $date;
|
|
|
|
+ }
|
|
|
|
+ if (Db::name('store_order_info')->insertAll($array1)){
|
|
|
|
+ loseCollectionInventory($c_id,$v['number']);
|
|
|
|
+ $success +=1;
|
|
|
|
+ }else{
|
|
|
|
+ $error = $error+1;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if ($error<1){
|
|
|
|
+ $this->success('成功');
|
|
|
|
+ }else{
|
|
|
|
+ $this->error('失败',['error'=>$error,'success'=>$success],2);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ } catch (\think\exception\ValidateException $e) {
|
|
|
|
+ $this->error($e->getMessage());
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public function detail(){
|
|
|
|
+ $id=$this->request->get('id');
|
|
|
|
+ $this->title = Db::name($this->table)->where('id',$id)->value('name').'--铸造明细';
|
|
|
|
+ $query = $this->_query('hash')->where('goods_id',$id);
|
|
|
|
+ $query->dateBetween('create_at')->order('id desc')->page();
|
|
|
|
+ $this->fetch();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public function curlRequest($url, $headers = [], $body = [], $method = "GET")
|
|
|
|
+ {
|
|
|
|
+ $ch = curl_init();
|
|
|
|
+ curl_setopt($ch, CURLOPT_URL, $url);
|
|
|
|
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);//设置请求头
|
|
|
|
+ curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//设置请求体
|
|
|
|
+ curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //定义请求类型
|
|
|
|
+ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
|
|
|
|
+ curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
|
|
|
|
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
|
|
+ curl_setopt($ch, CURLOPT_HTTP_VERSION, 'CURL_HTTP_VERSION_1_1');
|
|
|
|
+ $output = curl_exec($ch);
|
|
|
|
+ curl_close($ch);
|
|
|
|
+ return $output;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 合成材料
|
|
|
|
+ * @auth true
|
|
|
|
+ * @throws \think\Exception
|
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
|
+ */
|
|
|
|
+ public function material(){
|
|
|
|
+ $id=$this->request->get('id');
|
|
|
|
+ $this->assign('cid',$id);
|
|
|
|
+ $this->title = Db::name($this->table)->where('id',$id)->value('name').'--合成材料';
|
|
|
|
+ $query = $this->_query('store_collection_material')->alias('a')->join('store_collection b','a.c_id=b.id');
|
|
|
|
+ $query->where('a.cid',$id) ->field('a.*,b.name,b.cover')->order('id desc')->page();
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 添加商品
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * @throws \think\Exception
|
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
|
+ * @throws \think\exception\DbException
|
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
|
+ */
|
|
|
|
+ public function add_mater()
|
|
|
|
+ {
|
|
|
|
+ $cid = $this->request->get('cid');
|
|
|
|
+ $this->assign('cid',$cid);
|
|
|
|
+ $this->title = '添加材料';
|
|
|
|
+ $list = Db::name('store_collection')->where('type','neq',2)->field('id,name')->select();
|
|
|
|
+ $this->list = $list;
|
|
|
|
+ $this->_form($this->table);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 添加商品
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * @throws \think\Exception
|
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
|
+ * @throws \think\exception\DbException
|
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
|
+ */
|
|
|
|
+ public function edit_mater()
|
|
|
|
+ {
|
|
|
|
+ $cid = $this->request->get('cid');
|
|
|
|
+ $this->assign('cid',$cid);
|
|
|
|
+ $id = $this->request->get('id');
|
|
|
|
+ $this->title = '编辑材料';
|
|
|
|
+ $list = Db::name('store_collection')->where('type','neq',2)->field('id,name')->select();
|
|
|
|
+ $this->list = $list;
|
|
|
|
+ $vo = Db::name('store_collection_material')->where('id',$id)->find();
|
|
|
|
+ $this->vo = $vo;
|
|
|
|
+ $this->_form($this->table,'add_mater');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 处理
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * @throws \think\Exception
|
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
|
+ * @throws \think\exception\DbException
|
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
|
+ */
|
|
|
|
+ public function add_edit_mater(){
|
|
|
|
+ $data = $this->request->post();
|
|
|
|
+ if ($data['c_id']==''){
|
|
|
|
+ $this->error('请选择材料');
|
|
|
|
+ }
|
|
|
|
+ if (isset($data['id'])){
|
|
|
|
+ $info = Db::name('store_collection_material')->where('id','neq',$data['id'])->where('cid',$data['cid'])->where('c_id',$data['c_id'])->find();
|
|
|
|
+ if ($info) $this->error('材料已存在');
|
|
|
|
+ $data['update_at'] = date('Y-m-d H:i:s');
|
|
|
|
+ if (Db::name('store_collection_material')->where('id',$data['id'])->update($data)){
|
|
|
|
+ $this->success('编辑成功');
|
|
|
|
+ }
|
|
|
|
+ $this->error('编辑失败,请稍后重试');
|
|
|
|
+ }else{
|
|
|
|
+ $info = Db::name('store_collection_material')->where('cid',$data['cid'])->where('c_id',$data['c_id'])->find();
|
|
|
|
+ if ($info) $this->error('材料已存在');
|
|
|
|
+ if (Db::name('store_collection_material')->insert($data)){
|
|
|
|
+ $this->success('添加成功');
|
|
|
|
+ }
|
|
|
|
+ $this->error('添加失败,请稍后重试');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * 商品删除
|
|
|
|
+ */
|
|
|
|
+ public function del_mater()
|
|
|
|
+ {
|
|
|
|
+ $data = $this->request->post();
|
|
|
|
+ if (Db::name('store_collection_material')->where('id',$data['id'])->delete()){
|
|
|
|
+ $this->success('恭喜您,数据更新成功');
|
|
|
|
+ }else{
|
|
|
|
+ $this->error('数据更新失败');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 下载文件到服务器
|
|
|
|
+ * addtime 2020年8月28日 18:38:43
|
|
|
|
+ */
|
|
|
|
+ function getFile($url, $save_dir = '', $filename = '', $type = 0)
|
|
|
|
+ {
|
|
|
|
+ if (trim($url) == '') {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ if (trim($save_dir) == '') {
|
|
|
|
+ $save_dir = './';
|
|
|
|
+ }
|
|
|
|
+ if (0 !== strrpos($save_dir, '/')) {
|
|
|
|
+ $save_dir.= '/';
|
|
|
|
+ }
|
|
|
|
+ //创建保存目录
|
|
|
|
+ if (!file_exists($save_dir) && !mkdir($save_dir, 0777, true)) {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ //获取远程文件所采用的方法
|
|
|
|
+ if ($type) {
|
|
|
|
+ $ch = curl_init();
|
|
|
|
+ $timeout = 5;
|
|
|
|
+ curl_setopt($ch, CURLOPT_URL, $url);
|
|
|
|
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
|
|
+ curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
|
|
|
|
+ $content = curl_exec($ch);
|
|
|
|
+ curl_close($ch);
|
|
|
|
+ } else {
|
|
|
|
+ ob_start();
|
|
|
|
+ readfile($url);
|
|
|
|
+ $content = ob_get_contents();
|
|
|
|
+ ob_end_clean();
|
|
|
|
+ }
|
|
|
|
+ $size = strlen($content);
|
|
|
|
+ //文件大小
|
|
|
|
+ $fp2 = @fopen($save_dir . $filename, 'a');
|
|
|
|
+ fwrite($fp2, $content);
|
|
|
|
+ fclose($fp2);
|
|
|
|
+ unset($content, $url);
|
|
|
|
+ return $filename;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|