Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Product.php 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\model;
  14. use think\Db;
  15. use think\Model;
  16. use app\admin\logic\ProductLogic;
  17. /**
  18. * 产品
  19. */
  20. class Product extends Model
  21. {
  22. //初始化
  23. protected function initialize()
  24. {
  25. // 需要调用`Model`的`initialize`方法
  26. parent::initialize();
  27. }
  28. /**
  29. * 后置操作方法
  30. * 自定义的一个函数 用于数据保存后做的相应处理操作, 使用时手动调用
  31. * @param int $aid 产品id
  32. * @param array $post post数据
  33. * @param string $opt 操作
  34. */
  35. public function afterSave($aid, $post, $opt, $new = '')
  36. {
  37. // -----------内容
  38. $post['aid'] = $aid;
  39. $addonFieldExt = !empty($post['addonFieldExt']) ? $post['addonFieldExt'] : array();
  40. $FieldModel = new \app\admin\model\Field;
  41. $FieldModel->dealChannelPostData($post['channel'], $post, $addonFieldExt);
  42. // 处理外贸链接
  43. if (is_dir('./weapp/Waimao/')) {
  44. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  45. $waimaoLogic->update_htmlfilename($aid, $post, $opt);
  46. }
  47. // ---------产品多图
  48. model('ProductImg')->saveimg($aid, $post);
  49. // ---------end
  50. // 处理产品 属性
  51. $productLogic = new ProductLogic();
  52. if (empty($new)) { // && !empty($post['attrlist_id'])
  53. // 旧参数处理
  54. $productLogic->saveProductAttr($aid, $post['typeid'], $post);
  55. } else {
  56. // 新参数处理
  57. $productLogic->saveShopProductAttr($aid, $post['typeid'], $post);
  58. }
  59. // --处理TAG标签
  60. model('Taglist')->savetags($aid, $post['typeid'], $post['tags'],$post['arcrank'], $opt);
  61. if ('edit' == $opt) {
  62. // 清空sql_cache_table数据缓存表 并 添加查询执行语句到mysql缓存表
  63. Db::name('sql_cache_table')->execute('TRUNCATE TABLE '.config('database.prefix').'sql_cache_table');
  64. model('SqlCacheTable')->InsertSqlCacheTable(true);
  65. } else {
  66. // 处理mysql缓存表数据
  67. if (isset($post['arcrank']) && -1 == $post['arcrank'] /*&& -1 == $post['old_arcrank']*/ && !empty($post['users_id'])) {
  68. // 待审核
  69. model('SqlCacheTable')->UpdateDraftSqlCacheTable($post, $opt);
  70. } else if (isset($post['arcrank'])) {
  71. // 已审核
  72. $post['old_typeid'] = intval($post['attr']['typeid']);
  73. model('SqlCacheTable')->UpdateSqlCacheTable($post, $opt, 'product');
  74. }
  75. }
  76. }
  77. /**
  78. * 获取单条记录
  79. * @author wengxianhu by 2017-7-26
  80. */
  81. public function getInfo($aid, $field = '', $isshowbody = true)
  82. {
  83. $result = array();
  84. $field = !empty($field) ? $field : '*';
  85. $result = Db::name('archives')->field($field)
  86. ->where([
  87. 'aid' => $aid,
  88. 'lang' => get_admin_lang(),
  89. ])
  90. ->find();
  91. if ($isshowbody) {
  92. $tableName = Db::name('channeltype')->where('id','eq',$result['channel'])->getField('table');
  93. $result['addonFieldExt'] = Db::name($tableName.'_content')->where('aid',$aid)->find();
  94. }
  95. // 产品TAG标签
  96. if (!empty($result)) {
  97. $typeid = isset($result['typeid']) ? $result['typeid'] : 0;
  98. $tags = model('Taglist')->getListByAid($aid, $typeid);
  99. $result['tags'] = $tags['tag_arr'];
  100. $result['tag_id'] = $tags['tid_arr'];
  101. }
  102. return $result;
  103. }
  104. /**
  105. * 删除的后置操作方法
  106. * 自定义的一个函数 用于数据删除后做的相应处理操作, 使用时手动调用
  107. * @param int $aid
  108. */
  109. public function afterDel($aidArr = array())
  110. {
  111. if (is_string($aidArr)) {
  112. $aidArr = explode(',', $aidArr);
  113. }
  114. // 删除条件
  115. $where = [
  116. 'aid' => ['IN', $aidArr]
  117. ];
  118. // 同时删除内容
  119. Db::name('product_content')->where($where)->delete();
  120. // 同时删除属性
  121. Db::name('product_attr')->where($where)->delete();
  122. // 同时删除产品属性
  123. Db::name('shop_product_attr')->where($where)->delete();
  124. // 同时删除图片
  125. $result = Db::name('product_img')->field('image_url')->where($where)->select();
  126. if (!empty($result)) {
  127. // 20210603大黄注释 删掉文档不删掉服务器的图片,否则复制的文档图片无法显示
  128. // foreach ($result as $key => $val) {
  129. // $image_url = preg_replace('#^(/[/\w\-]+)?(/public/upload/|/uploads/)#i', '$2', $val['image_url']);
  130. // if (!is_http_url($image_url) && file_exists('.'.$image_url) && preg_match('#^(/uploads/|/public/upload/)(.*)/([^/]+)\.([a-z]+)$#i', $image_url)) {
  131. // @unlink(realpath('.'.$image_url));
  132. // }
  133. // }
  134. Db::name('product_img')->where($where)->delete();
  135. }
  136. // 同时删除虚拟商品
  137. Db::name("product_netdisk")->where($where)->delete();
  138. // 产品规格数据表
  139. Db::name("product_spec_data")->where($where)->delete();
  140. // 产品多规格组装表
  141. Db::name("product_spec_value")->where($where)->delete();
  142. // 产品自定义参数表
  143. // Db::name("product_custom_param")->where($where)->delete();
  144. // 产品规格数据处理表
  145. Db::name("product_spec_data_handle")->where($where)->delete();
  146. // 同时删除商品秒杀数据
  147. Db::name("sharp_goods")->where($where)->delete();
  148. // 删除条件
  149. $where = [
  150. 'product_id' => ['IN', $aidArr]
  151. ];
  152. // 同时删除商品评论数据
  153. Db::name("shop_order_comment")->where($where)->delete();
  154. // 同时删除购物车数据
  155. Db::name("shop_cart")->where($where)->delete();
  156. // 同时删除商品优惠券数据
  157. // Db::name("shop_coupon")->where($where)->delete();
  158. // Db::name("shop_coupon_use")->where($where)->delete();
  159. // 同时删除TAG标签
  160. model('Taglist')->delByAids($aidArr);
  161. // 减少统计数
  162. del_statistics_data(6, $aidArr);
  163. }
  164. }