Goods.php 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631
  1. <?php
  2. namespace app\store\controller;
  3. use app\common\library\PHPExcelService;
  4. use library\Controller;
  5. use think\cache\driver\Redis;
  6. use think\Db;
  7. /**
  8. * 售卖商品
  9. * Class Goods
  10. * @package app\store\controller
  11. */
  12. class Goods extends Controller
  13. {
  14. /**
  15. * 绑定数据表
  16. * @var string
  17. */
  18. protected $table = 'store_collection';
  19. /**
  20. * 售卖商品列表
  21. * @auth true
  22. * @menu true
  23. * @throws \think\Exception
  24. * @throws \think\db\exception\DataNotFoundException
  25. * @throws \think\db\exception\ModelNotFoundException
  26. * @throws \think\exception\DbException
  27. * @throws \think\exception\PDOException
  28. */
  29. public function index()
  30. {
  31. checkCollectionState();
  32. $this->title = '售卖藏品管理';
  33. $query = $this->_query($this->table)->where('is_deleted',0)->like('name');
  34. $query->dateBetween('create_at')->whereIn('type',1)->order('id desc')->page();
  35. }
  36. /**
  37. * 数据列表处理
  38. * @auth true
  39. * @menu true
  40. * @param array $data
  41. * @throws \think\db\exception\DataNotFoundException
  42. * @throws \think\db\exception\ModelNotFoundException
  43. * @throws \think\exception\DbException
  44. */
  45. protected function _index_page_filter(&$data)
  46. {
  47. foreach ($data as &$v){
  48. $checksell = $this->checkSellTime($v['id']);
  49. if (!$checksell){
  50. $v['is_save'] = 0;
  51. }else{
  52. $v['is_save'] = 1;
  53. }
  54. $v['zz']=Db::table('hash')->where('goods_id',$v['id'])->count();
  55. $now_inventory = getCollectionInventory($v['id']);
  56. $v['now_inventory'] = $now_inventory<=0 ? 0 : $now_inventory;
  57. $v['shengyu'] = Db::name('hash')->where('goods_id',$v['id'])->where('status',0)->count();
  58. }
  59. }
  60. /**
  61. * 添加商品
  62. * @auth true
  63. * @menu true
  64. * @throws \think\Exception
  65. * @throws \think\db\exception\DataNotFoundException
  66. * @throws \think\db\exception\ModelNotFoundException
  67. * @throws \think\exception\DbException
  68. * @throws \think\exception\PDOException
  69. */
  70. public function add()
  71. {
  72. $this->title = '添加藏品';
  73. $this->_form($this->table, 'form');
  74. }
  75. /**
  76. * 编辑商品
  77. * @auth true
  78. * @menu true
  79. * @throws \think\Exception
  80. * @throws \think\db\exception\DataNotFoundException
  81. * @throws \think\db\exception\ModelNotFoundException
  82. * @throws \think\exception\DbException
  83. * @throws \think\exception\PDOException
  84. */
  85. function edit()
  86. {
  87. $this->title = '编辑商品';
  88. $this->_form($this->table, 'form');
  89. }
  90. /**
  91. * 表单数据处理
  92. * @auth true
  93. * @menu true
  94. * @param array $data
  95. */
  96. protected function _form_filter(&$data)
  97. {
  98. if($this->request->post()){
  99. if (isset($data['id']) || !empty($data['id'])){
  100. $checksell = $this->checkSellTime($data['id']);
  101. if (!$checksell) $this->error('藏品已经开始抢购或已过期,无法修改');
  102. $goods_info = Db::name('store_collection')->find($data['id']);
  103. if($goods_info['issue_mode'] == 2 && strtotime($goods_info['apply_st']) <time()) $this->error('抽签报名开始无法修改');
  104. if($goods_info['inventory'] != $goods_info['now_inventory']) $this->error('商品库存已扣减,无法编辑');
  105. }
  106. if ($data['cover'] == '') $this->error('请上传藏品图片');
  107. if ($data['price']<=0) $this->error('藏品价格错误');
  108. if ($data['auth_img'] == '') $this->error('请上传作者头像');
  109. if ($data['describe'] == '') $this->error('请上传商品描述');
  110. if ($data['buy_count']<1) $this->error('限购数量不能小于1');
  111. $data['date'] = date('Y-m-d',strtotime($data['sell_time']));
  112. if (isset($data['id'])){
  113. $buy_count = Db::name('store_order_info')
  114. ->whereIn('status','1,3')
  115. ->where('c_id',$data['id'])
  116. ->count();
  117. $blind_count = Db::name('store_blind_box')->where(['prize_id'=>$data['id'],'is_del'=>1,'status'=>1])->sum('num');
  118. $buy_count += $blind_count;
  119. }else{
  120. $buy_count = 0;
  121. }
  122. $data['now_inventory'] = $data['inventory']-$buy_count;
  123. $arr = explode('.',$data['detail_img']);
  124. $data['format'] = end($arr);
  125. if($data['issue_mode'] == 1){
  126. unset($data['apply_st']);
  127. }else{
  128. $data['apply_end'] = $data['sell_time'];
  129. $data['before_time'] = 0;
  130. }
  131. // 优先购处理
  132. $data['advance_info'] = (isset($data['advance_info']) && is_array($data['advance_info'])) ? join(',', $data['advance_info']) : '';
  133. }else{
  134. if (!empty($data)){
  135. $data['covers'] = $data['cover'];
  136. $data['auth_imgs'] = $data['auth_img'];
  137. $data['describes'] = $data['describe'];
  138. $data['share_imgs'] = $data['share_img'];
  139. $data['advance_info'] = explode(',', isset($data['advance_info']) ? $data['advance_info'] : '');
  140. }
  141. //查询会员等级
  142. $vipData = Db::name('store_vip')->where('is_del',0)->select();
  143. $this->assign('vipData',$vipData);
  144. }
  145. }
  146. /**
  147. * 处理成功回调
  148. */
  149. public function _form_result($result){
  150. if ($result) {
  151. setCollectionInfoHash($result);
  152. $redis = new Redis();
  153. $count = Db::name($this->table)->where('id',$result)->value('now_inventory');
  154. $redis->set('collection_count_'.$result,$count);
  155. $this->success('操作成功',url('/#/store/goods/index'));
  156. }
  157. }
  158. /**
  159. * @auth true
  160. * @menu true
  161. * 商品上架
  162. */
  163. public function up()
  164. {
  165. $data = $this->request->post();
  166. if (Db::name($this->table)->where('id',$data['id'])->update(['status'=>1])){
  167. setCollectionInfoHash($data['id']);
  168. $this->success('恭喜您,数据更新成功');
  169. }else{
  170. $this->error('数据更新失败');
  171. }
  172. }
  173. /**
  174. * @auth true
  175. * @menu true
  176. * 商品下架
  177. */
  178. public function down()
  179. {
  180. $data = $this->request->post();
  181. if (Db::name($this->table)->where('id',$data['id'])->update(['status'=>0])){
  182. setCollectionInfoHash($data['id']);
  183. $this->success('恭喜您,数据更新成功');
  184. }else{
  185. $this->error('数据更新失败');
  186. }
  187. }
  188. /**
  189. * @auth true
  190. * @menu true
  191. * 商品删除
  192. */
  193. public function del()
  194. {
  195. $data = $this->request->post();
  196. if (Db::name($this->table)->where('id',$data['id'])->update(['is_deleted'=>1])){
  197. setCollectionInfoHash($data['id']);
  198. $this->success('恭喜您,数据更新成功');
  199. }else{
  200. $this->error('数据更新失败');
  201. }
  202. }
  203. //判断是否已经抢购开始
  204. function checkSellTime($id){
  205. $sell_time = Db::name($this->table)->where('id',$id)->value('sell_time');
  206. $advance_minutes = getAdvanceMinutes();
  207. if ($advance_minutes>0){
  208. $sell_time = strtotime($sell_time)-($advance_minutes*60);
  209. }else{
  210. $sell_time = strtotime($sell_time);
  211. }
  212. if ($sell_time<=time()) return false;
  213. return true;
  214. }
  215. public function send(){
  216. if($this->request->post()){
  217. $data = $this->request->post();
  218. if (!isset($data['mid']) || $data['mid']==''){
  219. $this->error('请选择用户');
  220. }
  221. $inventory = Db::name($this->table)->where('id',$data['id'])->value('inventory');
  222. $info = Db::name($this->table)->where('id',$data['id'])->find();
  223. $redis = new Redis();
  224. $zhuzao_count = $redis->Llen('collectionHash_'.$data['id']);
  225. //var_dump($zhuzao_count,$redis->hGetAll('collectionHash_'.$data['id']));
  226. if ($zhuzao_count<$data['number']) $this->error('铸造的的数量不足,无法赠送');
  227. $com = true;
  228. Db::startTrans();
  229. try {
  230. $array = [];
  231. for ($i=0;$i<$data['number'];$i++){
  232. //获取排名
  233. $rank = getRanking($data['id'])+1;
  234. $tag = getTag($data['id'],$rank,$inventory);
  235. saveRanking($data['id']);
  236. $company = '象链数藏';
  237. $hash = getCompanyHash($data['id']);
  238. $company_hash = $hash['hash'];
  239. $company_hash_time = $hash['create_at'];
  240. $tokenid = $hash['tokenid'];
  241. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  242. $collectors_hash = '';
  243. $date = [
  244. 'order_no'=>get_order_sn(),
  245. 'tag'=>$tag,
  246. 'mid'=>$data['mid'],
  247. 'c_id'=>$data['id'],
  248. 'name'=>$info['name'],
  249. 'cover'=>$info['cover'],
  250. 'pro_info'=>json_encode($info,true),
  251. 'company'=>$company,
  252. 'company_hash'=>$company_hash ? $company_hash:'',
  253. 'company_hash_time'=>$company_hash_time ? $company_hash_time :'',
  254. 'ddcid'=>$tokenid,
  255. 'collectors_hash'=>$collectors_hash ? $collectors_hash :'',
  256. ];
  257. $array[] = $date;
  258. }
  259. Db::name('store_order_info')->insertAll($array);
  260. Db::commit();
  261. } catch (\Exception $e){
  262. Db::rollback();
  263. $this->error($e->getMessage());
  264. $com = false;
  265. }
  266. if ($com){
  267. //减掉库存
  268. loseCollectionInventory($data['id'],$data['number']);
  269. $this->success('赠送成功');
  270. }else{
  271. $this->error('赠送失败');
  272. }
  273. }else{
  274. $id=$this->request->get('id');
  275. $this->assign('id',$id);
  276. $user = Db::name('store_member')->where('is_deleted',0)->field('id,name,phone')->select();
  277. $this->assign('user',$user);
  278. $this->fetch();
  279. }
  280. }
  281. public function add_first()
  282. {
  283. if($this->request->post()){
  284. $phone = input('post.phone');
  285. $c_id = input('post.c_id');
  286. $num = input('post.num');
  287. $member = Db::name('store_member')->where('phone',$phone)->find();
  288. if(!$member) $this->error('用户未注册');
  289. //查询是否已经导入
  290. $isAdd = Db::name('store_collection_first')->where(['phone'=>$phone,'c_id'=>$c_id])->count();
  291. if($isAdd) $this->error('已经添加');
  292. Db::name('store_collection_first')->insert(['uid'=>$member['id'],'phone'=>$phone,'num'=>$num,'c_id'=>$c_id]);
  293. $this->error('已经成功');
  294. }
  295. $this->fetch();
  296. }
  297. public function hash(){
  298. if($this->request->post()){
  299. $id = $this->request->post('id');
  300. $number = $this->request->post('number');
  301. if ($number<=0){
  302. $this->error('数量错误');
  303. }
  304. if (Db::name('store_collection')->where('id',$id)->setInc('casting_num',$number)){
  305. $redis = new Redis();
  306. $redis->Incrby('castingHash_'.$id,$number);
  307. $this->success('增加成功,正在铸造中');
  308. }
  309. $this->error('增加失败,请稍后重试');
  310. }else{
  311. $id=$this->request->get('id');
  312. $this->assign('id',$id);
  313. $this->fetch();
  314. }
  315. }
  316. /**
  317. * 批量赠送
  318. * @auth true
  319. * @throws \think\Exception
  320. * @throws \think\exception\PDOException
  321. */
  322. public function import()
  323. {
  324. list($msec, $sec) = explode(' ', microtime());
  325. $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000); //毫秒值
  326. $get = $this->request->get();
  327. $import_path = $_SERVER['DOCUMENT_ROOT'].'/'.$get['path'];
  328. $url = $get['url'];
  329. $c_id = $get['c_id'];
  330. if (getConfigValue('storage_type')=='oss'){
  331. $save_dir = "./upload/excle/"; // 服务资源目录
  332. $filename = date('Ymd').time().".xlsx"; // 自定义名称
  333. $res = $this->getFile($url,$save_dir,$filename,1);
  334. $import_path = $_SERVER['DOCUMENT_ROOT'].'/upload/excle/'.$res;
  335. }
  336. $info = getCollectionInfoHash($c_id);
  337. $num = 1;
  338. try {
  339. $objReader =\PHPExcel_IOFactory::createReader('Excel2007');
  340. $objExcel = $objReader->load($import_path);
  341. $list = $objExcel->getActiveSheet()->toArray();
  342. $success = 0;
  343. $number = 0;
  344. $array = array();
  345. foreach ($list as $k=>$v){
  346. if($k>$num-1){
  347. if(array_filter($v)){
  348. $data=[];
  349. foreach ($v as $kk=>$vv){
  350. $data[IntToChr($kk)]=trim($vv);
  351. }
  352. $a['phone'] = $data['A'];
  353. $a['number'] = $data['B'];
  354. array_push($array,$a);
  355. $number = $number+$data['B'];
  356. }
  357. }
  358. }
  359. $redis = new Redis();
  360. $zhuzao_count = $redis->Llen('collectionHash_'.$c_id);
  361. if ($zhuzao_count<$number){
  362. $this->error('铸造的的数量不足,无法赠送',[],3);
  363. }
  364. $error = 0;
  365. $phone_error = array();
  366. foreach ($array as &$v){
  367. $member = Db::name('store_member')->where('phone',$v['phone'])->find();
  368. if (!$member){
  369. $error = $error+1;
  370. array_push($phone_error,$v['phone']);
  371. }else{
  372. $array1 = [];
  373. for ($i=0;$i<$v['number'];$i++){
  374. //获取排名
  375. $rank = getRanking($c_id)+1;
  376. $tag = getTag($c_id,$rank,$info['inventory']);
  377. saveRanking($c_id);
  378. $company = '象链数藏';
  379. $hash = getCompanyHash($c_id);
  380. $company_hash = $hash['hash'];
  381. $company_hash_time = $hash['create_at'];
  382. $tokenid = $hash['tokenid'];
  383. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  384. $collectors_hash = '';
  385. $date = [
  386. 'order_no'=>get_order_sn(),
  387. 'tag'=>$tag,
  388. 'mid'=>$member['id'],
  389. 'c_id'=>$c_id,
  390. 'name'=>$info['name'],
  391. 'cover'=>$info['cover'],
  392. 'pro_info'=>json_encode($info,true),
  393. 'company'=>$company,
  394. 'company_hash'=>$company_hash ? $company_hash : '',
  395. 'company_hash_time'=>$company_hash_time,
  396. 'ddcid'=>$tokenid,
  397. 'collectors_hash'=>$collectors_hash ? $collectors_hash : '',
  398. //'collectors_hash_time'=>''
  399. ];
  400. $array1[] = $date;
  401. }
  402. if (Db::name('store_order_info')->insertAll($array1)){
  403. loseCollectionInventory($c_id,$v['number']);
  404. $success +=1;
  405. }else{
  406. $error = $error+1;
  407. }
  408. }
  409. }
  410. if ($error<1){
  411. $this->success('成功');
  412. }else{
  413. $this->error('失败',['error'=>$error,'success'=>$success,'phone_error'=>$phone_error],2);
  414. }
  415. } catch (\think\exception\ValidateException $e) {
  416. $this->error($e->getMessage());
  417. }
  418. }
  419. /**
  420. * 导出EXCL
  421. * @remark 根据WHERE条件导出EXCL
  422. * @param array $post 查询条件所需值
  423. * @return array
  424. */
  425. public function get_excl()
  426. {
  427. set_time_limit(300);
  428. $list = json_decode($this->request->get('phone'),true);
  429. $export = [];
  430. if (is_array($list)) {
  431. foreach ($list as $index => $item) {
  432. $export[] = [
  433. $item
  434. ];
  435. }
  436. }
  437. PHPExcelService::setExcelHeader(['手机号'])
  438. ->setExcelTile('错误手机号', '错误手机号', '手机号', time())
  439. ->setExcelContent($export)
  440. ->ExcelSave();
  441. }
  442. public function detail(){
  443. $id=$this->request->get('id');
  444. $this->title = Db::name($this->table)->where('id',$id)->value('name').'--铸造明细';
  445. $query = $this->_query('hash')->where('goods_id',$id);
  446. $query->dateBetween('create_at')->order('id desc')->page();
  447. $this->fetch();
  448. }
  449. public function draw(){
  450. $id=$this->request->get('id');
  451. $this->title = '抽签明细';
  452. $where= [];
  453. $where[] = ['d.coll_id','=',$id];
  454. $list = $this->_query('store_collection_draw')->field('d.*,u.name,u.phone,u.headimg')
  455. ->alias('d')->leftJoin('store_member u','u.id=d.user_id')->where($where)
  456. ->dateBetween('d.create_at')->order('d.id desc')
  457. ->page();
  458. $this->fetch();
  459. }
  460. /**
  461. * 下载文件到服务器
  462. * addtime 2020年8月28日 18:38:43
  463. */
  464. function getFile($url, $save_dir = '', $filename = '', $type = 0)
  465. {
  466. if (trim($url) == '') {
  467. return false;
  468. }
  469. if (trim($save_dir) == '') {
  470. $save_dir = './';
  471. }
  472. if (0 !== strrpos($save_dir, '/')) {
  473. $save_dir.= '/';
  474. }
  475. //创建保存目录
  476. if (!file_exists($save_dir) && !mkdir($save_dir, 0777, true)) {
  477. return false;
  478. }
  479. //获取远程文件所采用的方法
  480. if ($type) {
  481. $ch = curl_init();
  482. $timeout = 5;
  483. curl_setopt($ch, CURLOPT_URL, $url);
  484. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  485. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  486. $content = curl_exec($ch);
  487. curl_close($ch);
  488. } else {
  489. ob_start();
  490. readfile($url);
  491. $content = ob_get_contents();
  492. ob_end_clean();
  493. }
  494. $size = strlen($content);
  495. //文件大小
  496. $fp2 = @fopen($save_dir . $filename, 'a');
  497. fwrite($fp2, $content);
  498. fclose($fp2);
  499. unset($content, $url);
  500. return $filename;
  501. }
  502. public function import_first_list(){
  503. $id=$this->request->get('id');
  504. $this->title = Db::name($this->table)->where('id',$id)->value('name').'--导入明细';
  505. $query = $this->_query('store_collection_first')->where('c_id',$id)->like('phone');
  506. $query->dateBetween('create_at')->order('id desc')->page();
  507. $this->fetch();
  508. }
  509. public function del_first()
  510. {
  511. $id = input('post.id');
  512. Db::name('store_collection_first')->where('id',$id)->delete();
  513. $this->success('删除成功');
  514. }
  515. /**
  516. * 批量导入优先购会员
  517. * @auth true
  518. * @throws \think\Exception
  519. * @throws \think\exception\PDOException
  520. */
  521. public function import_first()
  522. {
  523. list($msec, $sec) = explode(' ', microtime());
  524. $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000); //毫秒值
  525. $get = $this->request->get();
  526. $import_path = $_SERVER['DOCUMENT_ROOT'].'/'.$get['path'];
  527. $url = $get['url'];
  528. $c_id = $get['c_id'];
  529. $path_arr = explode('.',$import_path);
  530. $suffix = end($path_arr);
  531. if($suffix !='xlsx') $this->error('请上传 xlsx 格式文件');
  532. if (getConfigValue('storage_type')=='oss'){
  533. $save_dir = "./upload/excle/"; // 服务资源目录
  534. $filename = date('Ymd').time().".".$suffix; // 自定义名称
  535. $res = $this->getFile($url,$save_dir,$filename,1);
  536. $import_path = $_SERVER['DOCUMENT_ROOT'].'/upload/excle/'.$res;
  537. }
  538. $num = 1;
  539. try {
  540. $objReader =\PHPExcel_IOFactory::createReader('Excel2007');
  541. $objExcel = $objReader->load($import_path);
  542. $list = $objExcel->getActiveSheet()->toArray();
  543. $success = 0;
  544. $array = array();
  545. foreach ($list as $k=>$v){
  546. if($k>$num-1){
  547. if(array_filter($v)){
  548. $data=[];
  549. foreach ($v as $kk=>$vv){
  550. $data[IntToChr($kk)]=trim($vv);
  551. }
  552. $a['phone'] = $data['A'];
  553. $a['num'] = $data['B'];
  554. array_push($array,$a);
  555. }
  556. }
  557. }
  558. $error = 0;
  559. $phone_error = array();
  560. foreach ($array as &$v){
  561. $member = Db::name('store_member')->where('phone',$v['phone'])->find();
  562. //查询是否已经导入
  563. $isAdd = Db::name('store_collection_first')->where(['phone'=>$v['phone'],'c_id'=>$c_id])->count();
  564. if (!$member || $isAdd>0 ){
  565. $error = $error+1;
  566. array_push($phone_error,$v['phone']);
  567. }else{
  568. $array1 = [
  569. 'uid'=>$member['id'],
  570. 'c_id'=>$c_id,
  571. 'phone'=>$member['phone'],
  572. 'num'=>$v['num'],
  573. ];
  574. if (Db::name('store_collection_first')->insertGetId($array1)){
  575. $success +=1;
  576. }else{
  577. $error = $error+1;
  578. array_push($phone_error,$v['phone']);
  579. }
  580. }
  581. }
  582. if ($error<1){
  583. $this->success('成功');
  584. }else{
  585. $this->error('失败',['error'=>$error,'success'=>$success,'phone_error'=>$phone_error],2);
  586. }
  587. } catch (\think\exception\ValidateException $e) {
  588. $this->error($e->getMessage());
  589. }
  590. }
  591. }