Goods.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612
  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 hash(){
  282. if($this->request->post()){
  283. $id = $this->request->post('id');
  284. $number = $this->request->post('number');
  285. if ($number<=0){
  286. $this->error('数量错误');
  287. }
  288. if (Db::name('store_collection')->where('id',$id)->setInc('casting_num',$number)){
  289. $redis = new Redis();
  290. $redis->Incrby('castingHash_'.$id,$number);
  291. $this->success('增加成功,正在铸造中');
  292. }
  293. $this->error('增加失败,请稍后重试');
  294. }else{
  295. $id=$this->request->get('id');
  296. $this->assign('id',$id);
  297. $this->fetch();
  298. }
  299. }
  300. /**
  301. * 批量赠送
  302. * @auth true
  303. * @throws \think\Exception
  304. * @throws \think\exception\PDOException
  305. */
  306. public function import()
  307. {
  308. list($msec, $sec) = explode(' ', microtime());
  309. $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000); //毫秒值
  310. $get = $this->request->get();
  311. $import_path = $_SERVER['DOCUMENT_ROOT'].'/'.$get['path'];
  312. $url = $get['url'];
  313. $c_id = $get['c_id'];
  314. if (getConfigValue('storage_type')=='oss'){
  315. $save_dir = "./upload/excle/"; // 服务资源目录
  316. $filename = date('Ymd').time().".xlsx"; // 自定义名称
  317. $res = $this->getFile($url,$save_dir,$filename,1);
  318. $import_path = $_SERVER['DOCUMENT_ROOT'].'/upload/excle/'.$res;
  319. }
  320. $info = getCollectionInfoHash($c_id);
  321. $num = 1;
  322. try {
  323. $objReader =\PHPExcel_IOFactory::createReader('Excel2007');
  324. $objExcel = $objReader->load($import_path);
  325. $list = $objExcel->getActiveSheet()->toArray();
  326. $success = 0;
  327. $number = 0;
  328. $array = array();
  329. foreach ($list as $k=>$v){
  330. if($k>$num-1){
  331. if(array_filter($v)){
  332. $data=[];
  333. foreach ($v as $kk=>$vv){
  334. $data[IntToChr($kk)]=trim($vv);
  335. }
  336. $a['phone'] = $data['A'];
  337. $a['number'] = $data['B'];
  338. array_push($array,$a);
  339. $number = $number+$data['B'];
  340. }
  341. }
  342. }
  343. $redis = new Redis();
  344. $zhuzao_count = $redis->Llen('collectionHash_'.$c_id);
  345. if ($zhuzao_count<$number){
  346. $this->error('铸造的的数量不足,无法赠送',[],3);
  347. }
  348. $error = 0;
  349. $phone_error = array();
  350. foreach ($array as &$v){
  351. $member = Db::name('store_member')->where('phone',$v['phone'])->find();
  352. if (!$member){
  353. $error = $error+1;
  354. array_push($phone_error,$v['phone']);
  355. }else{
  356. $array1 = [];
  357. for ($i=0;$i<$v['number'];$i++){
  358. //获取排名
  359. $rank = getRanking($c_id)+1;
  360. $tag = getTag($c_id,$rank,$info['inventory']);
  361. saveRanking($c_id);
  362. $company = '象链数藏';
  363. $hash = getCompanyHash($c_id);
  364. $company_hash = $hash['hash'];
  365. $company_hash_time = $hash['create_at'];
  366. $tokenid = $hash['tokenid'];
  367. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  368. $collectors_hash = '';
  369. $date = [
  370. 'order_no'=>get_order_sn(),
  371. 'tag'=>$tag,
  372. 'mid'=>$member['id'],
  373. 'c_id'=>$c_id,
  374. 'name'=>$info['name'],
  375. 'cover'=>$info['cover'],
  376. 'pro_info'=>json_encode($info,true),
  377. 'company'=>$company,
  378. 'company_hash'=>$company_hash ? $company_hash : '',
  379. 'company_hash_time'=>$company_hash_time,
  380. 'ddcid'=>$tokenid,
  381. 'collectors_hash'=>$collectors_hash ? $collectors_hash : '',
  382. //'collectors_hash_time'=>''
  383. ];
  384. $array1[] = $date;
  385. }
  386. if (Db::name('store_order_info')->insertAll($array1)){
  387. loseCollectionInventory($c_id,$v['number']);
  388. $success +=1;
  389. }else{
  390. $error = $error+1;
  391. }
  392. }
  393. }
  394. if ($error<1){
  395. $this->success('成功');
  396. }else{
  397. $this->error('失败',['error'=>$error,'success'=>$success,'phone_error'=>$phone_error],2);
  398. }
  399. } catch (\think\exception\ValidateException $e) {
  400. $this->error($e->getMessage());
  401. }
  402. }
  403. /**
  404. * 导出EXCL
  405. * @remark 根据WHERE条件导出EXCL
  406. * @param array $post 查询条件所需值
  407. * @return array
  408. */
  409. public function get_excl()
  410. {
  411. set_time_limit(300);
  412. $list = json_decode($this->request->get('phone'),true);
  413. $export = [];
  414. if (is_array($list)) {
  415. foreach ($list as $index => $item) {
  416. $export[] = [
  417. $item
  418. ];
  419. }
  420. }
  421. PHPExcelService::setExcelHeader(['手机号'])
  422. ->setExcelTile('错误手机号', '错误手机号', '手机号', time())
  423. ->setExcelContent($export)
  424. ->ExcelSave();
  425. }
  426. public function detail(){
  427. $id=$this->request->get('id');
  428. $this->title = Db::name($this->table)->where('id',$id)->value('name').'--铸造明细';
  429. $query = $this->_query('hash')->where('goods_id',$id);
  430. $query->dateBetween('create_at')->order('id desc')->page();
  431. $this->fetch();
  432. }
  433. public function draw(){
  434. $id=$this->request->get('id');
  435. $this->title = '抽签明细';
  436. $where= [];
  437. $where[] = ['d.coll_id','=',$id];
  438. $list = $this->_query('store_collection_draw')->field('d.*,u.name,u.phone,u.headimg')
  439. ->alias('d')->leftJoin('store_member u','u.id=d.user_id')->where($where)
  440. ->dateBetween('d.create_at')->order('d.id desc')
  441. ->page();
  442. $this->fetch();
  443. }
  444. /**
  445. * 下载文件到服务器
  446. * addtime 2020年8月28日 18:38:43
  447. */
  448. function getFile($url, $save_dir = '', $filename = '', $type = 0)
  449. {
  450. if (trim($url) == '') {
  451. return false;
  452. }
  453. if (trim($save_dir) == '') {
  454. $save_dir = './';
  455. }
  456. if (0 !== strrpos($save_dir, '/')) {
  457. $save_dir.= '/';
  458. }
  459. //创建保存目录
  460. if (!file_exists($save_dir) && !mkdir($save_dir, 0777, true)) {
  461. return false;
  462. }
  463. //获取远程文件所采用的方法
  464. if ($type) {
  465. $ch = curl_init();
  466. $timeout = 5;
  467. curl_setopt($ch, CURLOPT_URL, $url);
  468. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  469. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  470. $content = curl_exec($ch);
  471. curl_close($ch);
  472. } else {
  473. ob_start();
  474. readfile($url);
  475. $content = ob_get_contents();
  476. ob_end_clean();
  477. }
  478. $size = strlen($content);
  479. //文件大小
  480. $fp2 = @fopen($save_dir . $filename, 'a');
  481. fwrite($fp2, $content);
  482. fclose($fp2);
  483. unset($content, $url);
  484. return $filename;
  485. }
  486. public function import_first_list(){
  487. $id=$this->request->get('id');
  488. $this->title = Db::name($this->table)->where('id',$id)->value('name').'--导入明细';
  489. $query = $this->_query('store_collection_first')->where('c_id',$id)->like('phone');
  490. $query->dateBetween('create_at')->order('id desc')->page();
  491. $this->fetch();
  492. }
  493. public function del_first()
  494. {
  495. $id = input('post.id');
  496. Db::name('store_collection_first')->where('id',$id)->delete();
  497. $this->success('删除成功');
  498. }
  499. /**
  500. * 批量导入优先购会员
  501. * @auth true
  502. * @throws \think\Exception
  503. * @throws \think\exception\PDOException
  504. */
  505. public function import_first()
  506. {
  507. list($msec, $sec) = explode(' ', microtime());
  508. $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000); //毫秒值
  509. $get = $this->request->get();
  510. $import_path = $_SERVER['DOCUMENT_ROOT'].'/'.$get['path'];
  511. $url = $get['url'];
  512. $c_id = $get['c_id'];
  513. $path_arr = explode('.',$import_path);
  514. $suffix = end($path_arr);
  515. if($suffix !='xlsx') $this->error('请上传 xlsx 格式文件');
  516. if (getConfigValue('storage_type')=='oss'){
  517. $save_dir = "./upload/excle/"; // 服务资源目录
  518. $filename = date('Ymd').time().".".$suffix; // 自定义名称
  519. $res = $this->getFile($url,$save_dir,$filename,1);
  520. $import_path = $_SERVER['DOCUMENT_ROOT'].'/upload/excle/'.$res;
  521. }
  522. $num = 1;
  523. try {
  524. $objReader =\PHPExcel_IOFactory::createReader('Excel2007');
  525. $objExcel = $objReader->load($import_path);
  526. $list = $objExcel->getActiveSheet()->toArray();
  527. $success = 0;
  528. $array = array();
  529. foreach ($list as $k=>$v){
  530. if($k>$num-1){
  531. if(array_filter($v)){
  532. $data=[];
  533. foreach ($v as $kk=>$vv){
  534. $data[IntToChr($kk)]=trim($vv);
  535. }
  536. $a['phone'] = $data['A'];
  537. $a['num'] = $data['B'];
  538. array_push($array,$a);
  539. }
  540. }
  541. }
  542. $error = 0;
  543. $phone_error = array();
  544. foreach ($array as &$v){
  545. $member = Db::name('store_member')->where('phone',$v['phone'])->find();
  546. //查询是否已经导入
  547. $isAdd = Db::name('store_collection_first')->where(['phone'=>$v['phone'],'c_id'=>$c_id])->count();
  548. if (!$member || $isAdd>0 ){
  549. $error = $error+1;
  550. array_push($phone_error,$v['phone']);
  551. }else{
  552. $array1 = [
  553. 'uid'=>$member['id'],
  554. 'c_id'=>$c_id,
  555. 'phone'=>$member['phone'],
  556. 'num'=>$v['num'],
  557. ];
  558. if (Db::name('store_collection_first')->insertGetId($array1)){
  559. $success +=1;
  560. }else{
  561. $error = $error+1;
  562. array_push($phone_error,$v['phone']);
  563. }
  564. }
  565. }
  566. if ($error<1){
  567. $this->success('成功');
  568. }else{
  569. $this->error('失败',['error'=>$error,'success'=>$success,'phone_error'=>$phone_error],2);
  570. }
  571. } catch (\think\exception\ValidateException $e) {
  572. $this->error($e->getMessage());
  573. }
  574. }
  575. }