Goods.php 23 KB

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