StoreOrder.php 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403
  1. <?php
  2. /**
  3. *
  4. * @author: xaboy<365615158@qq.com>
  5. * @day: 2017/12/20
  6. */
  7. namespace app\models\store;
  8. use app\admin\model\system\ShippingTemplatesFree;
  9. use app\admin\model\system\ShippingTemplatesRegion;
  10. use app\models\system\SystemUserLevel;
  11. use crmeb\basic\BaseModel;
  12. use think\db\exception\DataNotFoundException;
  13. use think\db\exception\DbException;
  14. use think\db\exception\ModelNotFoundException;
  15. use think\facade\Cache;
  16. use crmeb\traits\ModelTrait;
  17. use think\facade\Log;
  18. use app\models\system\SystemStore;
  19. use app\models\routine\RoutineTemplate;
  20. use app\models\user\{User, UserAddress, UserBill, UserSpread, WechatUser};
  21. use crmeb\services\{
  22. SystemConfigService, WechatTemplateService, workerman\ChannelService
  23. };
  24. use crmeb\repositories\{
  25. GoodsRepository, PaymentRepositories, OrderRepository, ShortLetterRepositories, UserRepository
  26. };
  27. use app\admin\model\system\ShippingTemplates;
  28. /**
  29. * TODO 订单Model
  30. * Class StoreOrder
  31. * @package app\models\store
  32. */
  33. class StoreOrder extends BaseModel
  34. {
  35. /**
  36. * 数据表主键
  37. * @var string
  38. */
  39. protected $pk = 'id';
  40. /**
  41. * 模型名称
  42. * @var string
  43. */
  44. protected $name = 'store_order';
  45. use ModelTrait;
  46. protected $insert = ['add_time'];
  47. protected static $payType = ['weixin' => '微信支付', 'yue' => '余额支付', 'offline' => '线下支付'];
  48. protected static $deliveryType = ['send' => '商家配送', 'express' => '快递配送'];
  49. protected function setAddTimeAttr()
  50. {
  51. return time();
  52. }
  53. protected function setCartIdAttr($value)
  54. {
  55. return is_array($value) ? json_encode($value) : $value;
  56. }
  57. protected function getCartIdAttr($value)
  58. {
  59. return json_decode($value, true);
  60. }
  61. /**获取订单组信息
  62. * @param $cartInfo
  63. * @return array
  64. */
  65. public static function getOrderPriceGroup($cartInfo, $addr)
  66. {
  67. $storeFreePostage = floatval(sys_config('store_free_postage')) ?: 0;//满额包邮
  68. $totalPrice = self::getOrderSumPrice($cartInfo, 'truePrice');//获取订单总金额
  69. $totalIntegral = self::getOrderSumPrice($cartInfo, 'integral');//获取订单总积分
  70. $costPrice = self::getOrderSumPrice($cartInfo, 'costPrice');//获取订单成本价
  71. $vipPrice = self::getOrderSumPrice($cartInfo, 'vip_truePrice');//获取订单会员优惠金额
  72. //如果满额包邮等于0
  73. if (!$storeFreePostage) {
  74. $storePostage = 0;
  75. } else {
  76. if ($addr) {
  77. //按照运费模板计算每个运费模板下商品的件数/重量/体积以及总金额 按照首重倒序排列
  78. $temp_num = [];
  79. foreach ($cartInfo as $cart) {
  80. $temp = ShippingTemplates::get($cart['productInfo']['temp_id']);
  81. if (!$temp) $temp = ShippingTemplates::get(1);
  82. if ($temp->getData('type') == 1) {
  83. $num = $cart['cart_num'];
  84. } elseif ($temp->getData('type') == 2) {
  85. $num = $cart['cart_num'] * $cart['productInfo']['attrInfo']['weight'];
  86. } else {
  87. $num = $cart['cart_num'] * $cart['productInfo']['attrInfo']['volume'];
  88. }
  89. $region = ShippingTemplatesRegion::where('temp_id', $cart['productInfo']['temp_id'])->where('city_id', $addr['city_id'])->find();
  90. if (!$region) $region = ShippingTemplatesRegion::where('temp_id', $cart['productInfo']['temp_id'])->where('city_id', 0)->find();
  91. if (!$region) $region = ShippingTemplatesRegion::where('temp_id', 1)->where('city_id', 0)->find();
  92. if (!$region) {
  93. return self::setErrorInfo('运费模板不存在');
  94. }
  95. if (!isset($temp_num[$cart['productInfo']['temp_id']])) {
  96. $temp_num[$cart['productInfo']['temp_id']]['number'] = $num;
  97. $temp_num[$cart['productInfo']['temp_id']]['price'] = bcmul($cart['cart_num'], $cart['truePrice'], 2);
  98. $temp_num[$cart['productInfo']['temp_id']]['first'] = $region['first'];
  99. $temp_num[$cart['productInfo']['temp_id']]['first_price'] = $region['first_price'];
  100. $temp_num[$cart['productInfo']['temp_id']]['continue'] = $region['continue'];
  101. $temp_num[$cart['productInfo']['temp_id']]['continue_price'] = $region['continue_price'];
  102. $temp_num[$cart['productInfo']['temp_id']]['temp_id'] = $cart['productInfo']['temp_id'];
  103. $temp_num[$cart['productInfo']['temp_id']]['city_id'] = $addr['city_id'];
  104. } else {
  105. $temp_num[$cart['productInfo']['temp_id']]['number'] += $num;
  106. $temp_num[$cart['productInfo']['temp_id']]['price'] += bcmul($cart['cart_num'], $cart['truePrice'], 2);
  107. }
  108. }
  109. array_multisort(array_column($temp_num, 'first_price'), SORT_DESC, $temp_num);
  110. $type = $storePostage = 0;
  111. foreach ($temp_num as $k => $v) {
  112. if (ShippingTemplatesFree::where('temp_id', $v['temp_id'])->where('city_id', $v['city_id'])->where('number', '<=', $v['number'])->where('price', '<=', $v['price'])->find()) {
  113. unset($temp_num[$k]);
  114. }
  115. }
  116. foreach ($temp_num as $v) {
  117. if ($type == 0) {
  118. if ($v['number'] <= $v['first']) {
  119. $storePostage = bcadd($storePostage, $v['first_price'], 2);
  120. } else {
  121. if ($v['continue'] <= 0) {
  122. $storePostage = $storePostage;
  123. } else {
  124. $storePostage = bcadd(bcadd($storePostage, $v['first_price'], 2), bcmul(ceil(bcdiv(bcsub($v['number'], $v['first']), $v['continue'] ?? 0, 2)), $v['continue_price']), 2);
  125. }
  126. }
  127. $type = 1;
  128. } else {
  129. if ($v['continue'] <= 0) {
  130. $storePostage = $storePostage;
  131. } else {
  132. $storePostage = bcadd($storePostage, bcmul(ceil(bcdiv($v['number'], $v['continue'] ?? 0, 2)), $v['continue_price']), 2);
  133. }
  134. }
  135. }
  136. } else {
  137. $storePostage = 0;
  138. }
  139. if ($storeFreePostage <= $totalPrice) $storePostage = 0;//如果总价大于等于满额包邮 邮费等于0
  140. }
  141. return compact('storePostage', 'storeFreePostage', 'totalPrice', 'costPrice', 'vipPrice', 'totalIntegral');
  142. }
  143. /**获取某个字段总金额
  144. * @param $cartInfo
  145. * @param $key 键名
  146. * @return int|string
  147. */
  148. public static function getOrderSumPrice($cartInfo, $key = 'truePrice')
  149. {
  150. $SumPrice = 0;
  151. foreach ($cartInfo as $cart) {
  152. $SumPrice = bcadd($SumPrice, bcmul($cart['cart_num'], $cart[$key], 2), 2);
  153. }
  154. return $SumPrice;
  155. }
  156. /**
  157. * 拼团
  158. * @param $cartInfo
  159. * @return array
  160. */
  161. public static function getCombinationOrderPriceGroup($cartInfo)
  162. {
  163. $storePostage = floatval(sys_config('store_postage')) ?: 0;
  164. $storeFreePostage = floatval(sys_config('store_free_postage')) ?: 0;
  165. $totalPrice = self::getCombinationOrderTotalPrice($cartInfo);
  166. $costPrice = self::getCombinationOrderTotalPrice($cartInfo);
  167. if (!$storeFreePostage) {
  168. $storePostage = 0;
  169. } else {
  170. foreach ($cartInfo as $cart) {
  171. if (!StoreCombination::where('id', $cart['combination_id'])->value('is_postage'))
  172. $storePostage = bcadd($storePostage, StoreCombination::where('id', $cart['combination_id'])->value('postage'), 2);
  173. }
  174. if ($storeFreePostage <= $totalPrice) $storePostage = 0;
  175. }
  176. return compact('storePostage', 'storeFreePostage', 'totalPrice', 'costPrice');
  177. }
  178. /**
  179. * 拼团价格
  180. * @param $cartInfo
  181. * @return float
  182. */
  183. public static function getCombinationOrderTotalPrice($cartInfo)
  184. {
  185. $totalPrice = 0;
  186. foreach ($cartInfo as $cart) {
  187. if ($cart['combination_id']) {
  188. $totalPrice = bcadd($totalPrice, bcmul($cart['cart_num'], StoreCombination::where('id', $cart['combination_id'])->value('price'), 2), 2);
  189. }
  190. }
  191. return (float)$totalPrice;
  192. }
  193. /**
  194. * 缓存订单信息
  195. * @param $uid
  196. * @param $cartInfo
  197. * @param $priceGroup
  198. * @param array $other
  199. * @param int $cacheTime
  200. * @return string
  201. * @throws \Psr\SimpleCache\InvalidArgumentException
  202. */
  203. public static function cacheOrderInfo($uid, $cartInfo, $priceGroup, $other = [], $cacheTime = 600)
  204. {
  205. do {
  206. $key = md5(time() . rand(100000, 999999));
  207. } while (Cache::has('user_order_' . $uid . $key));
  208. Cache::set('user_order_' . $uid . $key, compact('cartInfo', 'priceGroup', 'other'), $cacheTime);
  209. return $key;
  210. }
  211. /**
  212. * 获取订单缓存信息
  213. * @param $uid
  214. * @param $key
  215. * @return mixed|null
  216. * @throws \Psr\SimpleCache\InvalidArgumentException
  217. */
  218. public static function getCacheOrderInfo($uid, $key)
  219. {
  220. $cacheName = 'user_order_' . $uid . $key;
  221. if (!Cache::has($cacheName)) return null;
  222. return Cache::get($cacheName);
  223. }
  224. /**
  225. * 删除订单缓存
  226. * @param $uid
  227. * @param $key
  228. */
  229. public static function clearCacheOrderInfo($uid, $key)
  230. {
  231. Cache::delete('user_order_' . $uid . $key);
  232. }
  233. /**
  234. * 生成订单
  235. * @param $uid
  236. * @param $key
  237. * @param $addressId
  238. * @param $payType
  239. * @param bool $useIntegral
  240. * @param int $couponId
  241. * @param string $mark
  242. * @param int $combinationId
  243. * @param int $pinkId
  244. * @param int $seckill_id
  245. * @param int $bargain_id
  246. * @param bool $test
  247. * @param int $isChannel
  248. * @param int $shipping_type
  249. * @param string $real_name
  250. * @param string $phone
  251. * @return StoreOrder|bool|\think\Model
  252. * @throws \think\Exception
  253. * @throws DataNotFoundException
  254. * @throws ModelNotFoundException
  255. * @throws \think\exception\DbException
  256. */
  257. public static function cacheKeyCreateOrder($uid, $key, $addressId, $payType, $useIntegral = false, $couponId = 0, $mark = '', $combinationId = 0, $pinkId = 0, $seckill_id = 0, $bargain_id = 0, $test = false, $isChannel = 0, $shipping_type = 1, $real_name = '', $phone = '', $storeId = 0)
  258. {
  259. self::beginTrans();
  260. try {
  261. $shipping_type = (int)$shipping_type;
  262. $offlinePayStatus = (int)sys_config('offline_pay_status') ?? (int)2;
  263. if ($offlinePayStatus == 2) unset(self::$payType['offline']);
  264. if (!array_key_exists($payType, self::$payType)) return self::setErrorInfo('选择支付方式有误!', true);
  265. if (self::be(['unique' => $key, 'uid' => $uid])) return self::setErrorInfo('请勿重复提交订单', true);
  266. $userInfo = User::getUserInfo($uid);
  267. if (!$userInfo) return self::setErrorInfo('用户不存在!', true);
  268. $cartGroup = self::getCacheOrderInfo($uid, $key);
  269. // @file_put_contents('cart.txt', json_encode($cartGroup) . "-购物车内容\r\n", 8);
  270. if (!$cartGroup) return self::setErrorInfo('订单已过期,请刷新当前页面!', true);
  271. $cartInfo = $cartGroup['cartInfo'];
  272. $priceGroup = $cartGroup['priceGroup'];
  273. $other = $cartGroup['other'];
  274. $payPrice = (float)$priceGroup['totalPrice'];
  275. $payIntegral = (float)$priceGroup['totalIntegral'];
  276. $addr = UserAddress::where('uid', $uid)->where('id', $addressId)->find();
  277. if ($payType == 'offline' && sys_config('offline_postage') == 1) {
  278. $payPostage = 0;
  279. } else {
  280. $payPostage = self::getOrderPriceGroup($cartInfo, $addr)['storePostage'];
  281. }
  282. if ($shipping_type === 1) {
  283. if (!$test && !$addressId) return self::setErrorInfo('请选择收货地址!', true);
  284. if (!$test && (!UserAddress::be(['uid' => $uid, 'id' => $addressId, 'is_del' => 0]) || !($addressInfo = UserAddress::find($addressId))))
  285. return self::setErrorInfo('地址选择有误!', true);
  286. } else {
  287. if ((!$real_name || !$phone) && !$test) return self::setErrorInfo('请填写姓名和电话', true);
  288. $addressInfo['real_name'] = $real_name;
  289. $addressInfo['phone'] = $phone;
  290. $addressInfo['province'] = '';
  291. $addressInfo['city'] = '';
  292. $addressInfo['district'] = '';
  293. $addressInfo['detail'] = '';
  294. }
  295. $cartIds = [];
  296. $totalNum = 0;
  297. $gainIntegral = 0;
  298. $is_type = 0;
  299. foreach ($cartInfo as $cart) {
  300. $cartIds[] = $cart['id'];
  301. $totalNum += $cart['cart_num'];
  302. if (!$seckill_id) $seckill_id = $cart['seckill_id'];
  303. if (!$bargain_id) $bargain_id = $cart['bargain_id'];
  304. if (!$combinationId) $combinationId = $cart['combination_id'];
  305. $cartInfoGainIntegral = isset($cart['productInfo']['give_integral']) ? bcmul($cart['cart_num'], $cart['productInfo']['give_integral'], 2) : 0;
  306. $gainIntegral = bcadd($gainIntegral, $cartInfoGainIntegral, 2);
  307. if ($cart['productInfo']['is_health'] == 1) {
  308. $is_type = 4;
  309. } elseif ($cart['productInfo']['is_life'] == 1) {
  310. $is_type = 5;
  311. }
  312. if ($cart['productInfo']['is_explosive'] != 1 && $userInfo['is_first'] == 0) {
  313. return self::setErrorInfo('首单只能购买报单商品', true);
  314. }
  315. }
  316. $deduction = $seckill_id || $bargain_id || $combinationId;
  317. if ($deduction) {
  318. $couponId = 0;
  319. $useIntegral = false;
  320. if (!$test) {
  321. unset(self::$payType['offline']);
  322. if (!array_key_exists($payType, self::$payType)) return self::setErrorInfo('营销产品不能使用线下支付!', true);
  323. }
  324. }
  325. //使用优惠劵
  326. $res1 = true;
  327. if ($couponId) {
  328. $couponInfo = StoreCouponUser::validAddressWhere()->where('id', $couponId)->where('uid', $uid)->find();
  329. if (!$couponInfo) return self::setErrorInfo('选择的优惠劵无效!', true);
  330. $coupons = StoreCouponUser::getUsableCouponList($uid, ['valid' => $cartInfo], $payPrice);
  331. $flag = false;
  332. foreach ($coupons as $coupon) {
  333. if ($coupon['id'] == $couponId) {
  334. $flag = true;
  335. continue;
  336. }
  337. }
  338. if (!$flag)
  339. return self::setErrorInfo('不满足优惠劵的使用条件!', true);
  340. $payPrice = (float)bcsub($payPrice, $couponInfo['coupon_price'], 2);
  341. $res1 = StoreCouponUser::useCoupon($couponId);
  342. $couponPrice = $couponInfo['coupon_price'];
  343. } else {
  344. $couponId = 0;
  345. $couponPrice = 0;
  346. }
  347. if (!$res1) return self::setErrorInfo('使用优惠劵失败!', true);
  348. //$shipping_type = 1 快递发货 $shipping_type = 2 门店自提
  349. $store_self_mention = sys_config('store_self_mention') ?? 0;
  350. if (!$store_self_mention) $shipping_type = 1;
  351. if ($shipping_type === 1) {
  352. //是否包邮
  353. if ((isset($other['offlinePostage']) && $other['offlinePostage'] && $payType == 'offline')) $payPostage = 0;
  354. $payPrice = (float)bcadd($payPrice, $payPostage, 2);
  355. } else if ($shipping_type === 2) {
  356. //门店自提没有邮费支付
  357. $priceGroup['storePostage'] = 0;
  358. $payPostage = 0;
  359. if (!$storeId && !$test) {
  360. return self::setErrorInfo('请选择门店', true);
  361. }
  362. }
  363. $is_brokerage = 0;
  364. if ($is_type == 4 || $is_type == 5) {
  365. $is_brokerage = 1;
  366. //佣金抵扣
  367. $res2 = true;
  368. $SurplusIntegral = $userInfo['brokerage_price'];
  369. if ($payIntegral > 0) {
  370. if ($userInfo['brokerage_price'] < $payIntegral) {
  371. return self::setErrorInfo('健康币不足', true);
  372. } else {
  373. $res2 = false !== User::bcDec($userInfo['uid'], 'brokerage_price', $payIntegral, 'uid');
  374. }
  375. $SurplusIntegral = bcsub($userInfo['brokerage_price'], $payIntegral, 2);
  376. $res2 = $res2 && false != UserBill::expend('积分商品', $uid, 'brokerage_price', 'brokerage_product', $payIntegral, $key, $SurplusIntegral, '购买健康商品使用' . $payIntegral . '健康币');
  377. }
  378. // 健康币抵扣 $other['integralRatio']是积分抵扣比例
  379. if ($useIntegral && $SurplusIntegral > 0) {
  380. $deductionPrice = (float)bcmul($SurplusIntegral, $other['integralRatio'], 2);
  381. if ($deductionPrice < $payPrice) {
  382. $payPrice = bcsub($payPrice, $deductionPrice, 2);
  383. $usedIntegral = $SurplusIntegral;
  384. $SurplusIntegral = 0;
  385. $res2 = false !== User::edit(['brokerage_price' => 0], $userInfo['uid'], 'uid');
  386. } else {
  387. $deductionPrice = $payPrice;
  388. $usedIntegral = (float)bcdiv($payPrice, $other['integralRatio'], 2);
  389. $SurplusIntegral = bcsub($SurplusIntegral, $usedIntegral, 2);
  390. $res2 = false !== User::bcDec($userInfo['uid'], 'brokerage_price', $usedIntegral, 'uid');
  391. $payPrice = 0;
  392. }
  393. $res2 = $res2 && false != UserBill::expend('健康币抵扣', $uid, 'brokerage_price', 'deduction', $usedIntegral, $key, $SurplusIntegral, '购买商品使用' . floatval($usedIntegral) . '健康币抵扣' . floatval($deductionPrice) . '元');
  394. } else {
  395. $deductionPrice = 0;
  396. $usedIntegral = 0;
  397. }
  398. if (!$res2) return self::setErrorInfo('使用健康币抵扣失败!', true);
  399. if ($payPrice <= 0) $payPrice = 0;
  400. } else {
  401. // //积分抵扣
  402. $res2 = true;
  403. $is_brokerage = 0;
  404. $SurplusIntegral = $userInfo['integral'];
  405. if ($payIntegral > 0) {
  406. if ($userInfo['integral'] < $payIntegral) {
  407. return self::setErrorInfo('健康豆不足', true);
  408. } else {
  409. $res2 = false !== User::bcDec($userInfo['uid'], 'integral', $payIntegral, 'uid');
  410. }
  411. $SurplusIntegral = bcsub($userInfo['integral'], $payIntegral, 2);
  412. $res2 = $res2 && false != UserBill::expend('积分商品', $uid, 'integral', 'integral_product', $payIntegral, $key, $SurplusIntegral, '购买积分商品使用' . $payIntegral . '健康豆');
  413. }
  414. //积分抵扣
  415. if ($useIntegral && $SurplusIntegral > 0) {
  416. $deductionPrice = (float)bcmul($SurplusIntegral, $other['integralRatio'], 2);
  417. if ($deductionPrice < $payPrice) {
  418. $payPrice = bcsub($payPrice, $deductionPrice, 2);
  419. $usedIntegral = $SurplusIntegral;
  420. $SurplusIntegral = 0;
  421. $res2 = false !== User::edit(['integral' => 0], $userInfo['uid'], 'uid');
  422. } else {
  423. $deductionPrice = $payPrice;
  424. $usedIntegral = (float)bcdiv($payPrice, $other['integralRatio'], 2);
  425. $SurplusIntegral = bcsub($SurplusIntegral, $usedIntegral, 2);
  426. $res2 = false !== User::bcDec($userInfo['uid'], 'integral', $usedIntegral, 'uid');
  427. $payPrice = 0;
  428. }
  429. $res2 = $res2 && false != UserBill::expend('积分抵扣', $uid, 'integral', 'deduction', $usedIntegral, $key, $SurplusIntegral, '购买商品使用' . floatval($usedIntegral) . '积分抵扣' . floatval($deductionPrice) . '元');
  430. } else {
  431. $deductionPrice = 0;
  432. $usedIntegral = 0;
  433. }
  434. if (!$res2) return self::setErrorInfo('使用积分抵扣失败!', true);
  435. if ($payPrice <= 0) $payPrice = 0;
  436. }
  437. if ($test) {
  438. self::rollbackTrans();
  439. return [
  440. 'total_price' => $priceGroup['totalPrice'],
  441. 'pay_price' => $payPrice,
  442. 'pay_postage' => $payPostage,
  443. 'coupon_price' => $couponPrice,
  444. 'deduction_price' => $deductionPrice,
  445. 'totalIntegral' => $payIntegral,
  446. 'SurplusIntegral' => $SurplusIntegral,
  447. ];
  448. }
  449. $orderInfo = [
  450. 'uid' => $uid,
  451. 'order_id' => $test ? 0 : self::getNewOrderId(),
  452. 'real_name' => $addressInfo['real_name'],
  453. 'user_phone' => $addressInfo['phone'],
  454. 'user_address' => $addressInfo['province'] . ' ' . $addressInfo['city'] . ' ' . $addressInfo['district'] . ' ' . $addressInfo['detail'],
  455. 'cart_id' => $cartIds,
  456. 'total_num' => $totalNum,
  457. 'total_price' => $priceGroup['totalPrice'],
  458. 'total_postage' => $priceGroup['storePostage'],
  459. 'coupon_id' => $couponId,
  460. 'coupon_price' => $couponPrice,
  461. 'pay_price' => $payPrice,
  462. 'pay_postage' => $payPostage,
  463. 'deduction_price' => $deductionPrice,
  464. 'paid' => 0,
  465. 'pay_type' => $payType,
  466. 'use_integral' => $usedIntegral + $payIntegral,
  467. 'gain_integral' => $gainIntegral,
  468. 'mark' => htmlspecialchars($mark),
  469. 'combination_id' => $combinationId,
  470. 'pink_id' => $pinkId,
  471. 'seckill_id' => $seckill_id,
  472. 'bargain_id' => $bargain_id,
  473. 'cost' => $priceGroup['costPrice'],
  474. 'is_channel' => $isChannel,
  475. 'add_time' => time(),
  476. 'unique' => $key,
  477. 'shipping_type' => $shipping_type,
  478. 'is_brokerage' => $is_brokerage,
  479. ];
  480. if ($shipping_type === 2) {
  481. $orderInfo['verify_code'] = self::getStoreCode();
  482. $orderInfo['store_id'] = SystemStore::getStoreDispose($storeId, 'id');
  483. if (!$orderInfo['store_id']) return self::setErrorInfo('暂无门店无法选择门店自提!', true);
  484. }
  485. $order = self::create($orderInfo);
  486. if (!$order) return self::setErrorInfo('订单生成失败!', true);
  487. $res5 = true;
  488. foreach ($cartInfo as $cart) {
  489. //减库存加销量
  490. if ($combinationId) $res5 = $res5 && StoreCombination::decCombinationStock($cart['cart_num'], $combinationId, isset($cart['productInfo']['attrInfo']) ? $cart['productInfo']['attrInfo']['unique'] : '');
  491. else if ($seckill_id) $res5 = $res5 && StoreSeckill::decSeckillStock($cart['cart_num'], $seckill_id, isset($cart['productInfo']['attrInfo']) ? $cart['productInfo']['attrInfo']['unique'] : '');
  492. else if ($bargain_id) $res5 = $res5 && StoreBargain::decBargainStock($cart['cart_num'], $bargain_id, isset($cart['productInfo']['attrInfo']) ? $cart['productInfo']['attrInfo']['unique'] : '');
  493. else $res5 = $res5 && StoreProduct::decProductStock($cart['cart_num'], $cart['productInfo']['id'], isset($cart['productInfo']['attrInfo']) ? $cart['productInfo']['attrInfo']['unique'] : '');
  494. }
  495. //保存购物车商品信息
  496. $res4 = false !== StoreOrderCartInfo::setCartInfo($order['id'], $cartInfo);
  497. //购物车状态修改
  498. $res6 = false !== StoreCart::where('id', 'IN', $cartIds)->update(['is_pay' => 1]);
  499. if (!$res4 || !$res5 || !$res6) return self::setErrorInfo('订单生成失败!', true);
  500. //自动设置默认地址
  501. UserRepository::storeProductOrderCreateEbApi($order, compact('cartInfo', 'addressId'));
  502. self::clearCacheOrderInfo($uid, $key);
  503. self::commitTrans();
  504. StoreOrderStatus::status($order['id'], 'cache_key_create_order', '订单生成');
  505. return $order;
  506. } catch (\PDOException $e) {
  507. self::rollbackTrans();
  508. return self::setErrorInfo('生成订单时SQL执行错误错误原因:' . $e->getMessage());
  509. } catch (\Exception $e) {
  510. self::rollbackTrans();
  511. return self::setErrorInfo('生成订单时系统错误错误原因:' . $e->getMessage());
  512. }
  513. }
  514. /**
  515. * 回退积分
  516. * @param $order 订单信息
  517. * @return bool
  518. */
  519. public static function RegressionIntegral($order)
  520. {
  521. if (!empty($order['is_brokerage'])) {
  522. if ($order['is_brokerage'] == 1) {
  523. return self::RegressionBrokerage($order);
  524. }
  525. }
  526. if ($order['paid'] || $order['status'] == -2 || $order['is_del']) return true;
  527. if ($order['use_integral'] <= 0) return true;
  528. if ((int)$order['status'] != -2 && (int)$order['refund_status'] != 2 && $order['back_integral'] >= $order['use_integral']) return true;
  529. $res = User::bcInc($order['uid'], 'integral', $order['use_integral']);
  530. if (!$res) return self::setErrorInfo('回退积分增加失败');
  531. UserBill::income('积分回退', $order['uid'], 'integral', 'deduction', $order['use_integral'], $order['unique'], User::where('uid', $order['uid'])->value('integral'), '购买商品失败,回退积分' . floatval($order['use_integral']));
  532. return false !== self::where('order_id', $order['order_id'])->update(['back_integral' => $order['use_integral']]);
  533. }
  534. /**
  535. * 回退佣金(健康币)
  536. * @param $order 订单信息
  537. * @return bool
  538. */
  539. public static function RegressionBrokerage($order)
  540. {
  541. if ($order['paid'] || $order['status'] == -2 || $order['is_del']) return true;
  542. if ($order['use_integral'] <= 0) return true;
  543. if ((int)$order['status'] != -2 && (int)$order['refund_status'] != 2 && $order['back_integral'] >= $order['use_integral']) return true;
  544. $res = User::bcInc($order['uid'], 'brokerage_price', $order['use_integral']);
  545. if (!$res) return self::setErrorInfo('回退健康币增加失败');
  546. UserBill::income('健康币回退', $order['uid'], 'brokerage_price', 'deduction', $order['use_integral'], $order['unique'], User::where('uid', $order['uid'])->value('integral'), '购买商品失败,回退健康币' . floatval($order['use_integral']));
  547. return false !== self::where('order_id', $order['order_id'])->update(['back_integral' => $order['use_integral']]);
  548. }
  549. /**
  550. * 回退库存和销量
  551. * @param $order 订单信息
  552. * @return bool
  553. * @throws DataNotFoundException
  554. * @throws ModelNotFoundException
  555. * @throws \think\exception\DbException
  556. */
  557. public static function RegressionStock($order)
  558. {
  559. if ($order['paid'] || $order['status'] == -2 || $order['is_del']) return true;
  560. $combinationId = $order['combination_id'];
  561. $seckill_id = $order['seckill_id'];
  562. $bargain_id = $order['bargain_id'];
  563. $res5 = true;
  564. $cartInfo = StoreOrderCartInfo::where('cart_id', 'in', $order['cart_id'])->select();
  565. foreach ($cartInfo as $cart) {
  566. //增库存减销量
  567. if ($combinationId) $res5 = $res5 && StoreCombination::incCombinationStock($cart['cart_info']['cart_num'], $combinationId);
  568. else if ($seckill_id) $res5 = $res5 && StoreSeckill::incSeckillStock($cart['cart_info']['cart_num'], $seckill_id);
  569. else if ($bargain_id) $res5 = $res5 && StoreBargain::incBargainStock($cart['cart_info']['cart_num'], $bargain_id);
  570. else $res5 = $res5 && StoreProduct::incProductStock($cart['cart_info']['cart_num'], $cart['cart_info']['productInfo']['id'], isset($cart['cart_info']['productInfo']['attrInfo']) ? $cart['cart_info']['productInfo']['attrInfo']['unique'] : '');
  571. }
  572. return $res5;
  573. }
  574. /**
  575. * 回退优惠卷
  576. * @param $order 订单信息
  577. * @return bool
  578. */
  579. public static function RegressionCoupon($order)
  580. {
  581. if ($order['paid'] || $order['status'] == -2 || $order['is_del']) return true;
  582. $res = true;
  583. if ($order['coupon_id'] && StoreCouponUser::be(['id' => $order['coupon_id'], 'uid' => $order['uid'], 'status' => 1])) {
  584. $res = $res && false !== StoreCouponUser::where('id', $order['coupon_id'])->where('uid', $order['uid'])->update(['status' => 0, 'use_time' => 0]);
  585. }
  586. return $res;
  587. }
  588. /**
  589. * 取消订单
  590. * @param string order_id 订单id
  591. * @param $uid
  592. * @return bool
  593. * @throws DataNotFoundException
  594. * @throws ModelNotFoundException
  595. * @throws \think\exception\DbException
  596. */
  597. public static function cancelOrder($order_id, $uid)
  598. {
  599. $order = self::where('order_id', $order_id)->where('uid', $uid)->find();
  600. if (!$order) return self::setErrorInfo('没有查到此订单');
  601. self::beginTrans();
  602. try {
  603. $orderInfo = $order->toArray();
  604. if ($orderInfo['is_brokerage'] == 1) {
  605. $res = self::RegressionBrokerage($order) && self::RegressionStock($order) && self::RegressionCoupon($order);
  606. } else {
  607. $res = self::RegressionIntegral($order) && self::RegressionStock($order) && self::RegressionCoupon($order);
  608. }
  609. $order->is_del = 1;
  610. if ($res && $order->save()) {
  611. self::commitTrans();
  612. return true;
  613. } else
  614. return false;
  615. } catch (\Exception $e) {
  616. self::rollbackTrans();
  617. return self::setErrorInfo(['line' => $e->getLine(), 'message' => $e->getMessage()]);
  618. }
  619. }
  620. /**
  621. * 生成订单唯一id
  622. * @param $uid 用户uid
  623. * @return string
  624. */
  625. public static function getNewOrderId()
  626. {
  627. do {
  628. list($msec, $sec) = explode(' ', microtime());
  629. $msectime = number_format((floatval($msec) + floatval($sec)) * 1000, 0, '', '');
  630. $orderId = 'wx' . $msectime . mt_rand(10000, 99999);
  631. } while (self::be(['order_id' => $orderId]));// $orderId = 'wx' . $msectime . mt_rand(10000, 99999);
  632. return $orderId;
  633. }
  634. /**
  635. * 修改订单号
  636. * @param $orderId
  637. * @return string
  638. */
  639. public static function changeOrderId($orderId)
  640. {
  641. $ymd = substr($orderId, 2, 8);
  642. $key = substr($orderId, 16);
  643. return 'wx' . $ymd . date('His') . $key;
  644. }
  645. /**
  646. * 查找购物车里的所有产品标题
  647. * @param $cartId 购物车id
  648. * @return bool|string
  649. */
  650. public static function getProductTitle($cartId)
  651. {
  652. $title = '';
  653. try {
  654. $orderCart = StoreOrderCartInfo::where('cart_id', 'in', $cartId)->field('cart_info')->select();
  655. foreach ($orderCart as $item) {
  656. if (isset($item['cart_info']['productInfo']['store_name'])) {
  657. $title .= $item['cart_info']['productInfo']['store_name'] . '|';
  658. }
  659. }
  660. unset($item);
  661. if (!$title) {
  662. $productIds = StoreCart::where('id', 'in', $cartId)->column('product_id');
  663. $productlist = ($productlist = StoreProduct::getProductField($productIds, 'store_name')) ? $productlist->toArray() : [];
  664. foreach ($productlist as $item) {
  665. if (isset($item['store_name'])) $title .= $item['store_name'] . '|';
  666. }
  667. }
  668. if ($title) $title = substr($title, 0, strlen($title) - 1);
  669. unset($item);
  670. } catch (\Exception $e) {
  671. }
  672. return $title;
  673. }
  674. /**
  675. * 获取门店自提唯一核销码
  676. * @return bool|string
  677. */
  678. public static function getStoreCode()
  679. {
  680. list($msec, $sec) = explode(' ', microtime());
  681. $num = bcadd(time(), mt_rand(10, 999999), 0) . '' . substr($msec, 2, 3);//生成随机数
  682. if (strlen($num) < 12)
  683. $num = str_pad((string)$num, 12, 0, STR_PAD_RIGHT);
  684. else
  685. $num = substr($num, 0, 12);
  686. if (self::be(['verify_code' => $num])) return self::getStoreCode();
  687. return $num;
  688. }
  689. /**
  690. * 余额支付
  691. * @param $order_id
  692. * @param $uid
  693. * @param string $formId
  694. * @return bool
  695. * @throws \think\Exception
  696. * @throws DataNotFoundException
  697. * @throws ModelNotFoundException
  698. * @throws \think\exception\DbException
  699. */
  700. public static function yuePay($order_id, $uid, $formId = '')
  701. {
  702. $orderInfo = self::where('uid', $uid)->where('order_id', $order_id)->where('is_del', 0)->find();
  703. if (!$orderInfo) return self::setErrorInfo('订单不存在!');
  704. if ($orderInfo['paid']) return self::setErrorInfo('该订单已支付!');
  705. // if($orderInfo['pay_type'] != 'yue') return self::setErrorInfo('该订单不能使用余额支付!');
  706. $userInfo = User::getUserInfo($uid);
  707. if ($userInfo['now_money'] < $orderInfo['pay_price'])
  708. return self::setErrorInfo(['status' => 'pay_deficiency', 'msg' => '余额不足' . floatval($orderInfo['pay_price'])]);
  709. self::beginTrans();
  710. $res1 = false !== User::bcDec($uid, 'now_money', $orderInfo['pay_price'], 'uid');
  711. $res2 = UserBill::expend('购买商品', $uid, 'now_money', 'pay_product', $orderInfo['pay_price'], $orderInfo['id'], $userInfo['now_money'], '余额支付' . floatval($orderInfo['pay_price']) . '元购买商品');
  712. $res3 = self::paySuccess($order_id, 'yue', $formId);//余额支付成功
  713. try {
  714. PaymentRepositories::yuePayProduct($userInfo, $orderInfo);
  715. } catch (\Exception $e) {
  716. self::rollbackTrans();
  717. return self::setErrorInfo($e->getMessage());
  718. }
  719. $res = $res1 && $res2 && $res3;
  720. self::checkTrans($res);
  721. return $res;
  722. }
  723. /**
  724. * 佣金(健康币)支付
  725. * @param $order_id
  726. * @param $uid
  727. * @param string $formId
  728. * @return bool
  729. * @throws \think\Exception
  730. * @throws DataNotFoundException
  731. * @throws ModelNotFoundException
  732. * @throws \think\exception\DbException
  733. */
  734. public static function brokeragePay($order_id, $uid, $formId = '')
  735. {
  736. $orderInfo = self::where('uid', $uid)->where('order_id', $order_id)->where('is_del', 0)->find();
  737. if (!$orderInfo) return self::setErrorInfo('订单不存在!');
  738. if ($orderInfo['paid']) return self::setErrorInfo('该订单已支付!');
  739. // if($orderInfo['pay_type'] != 'yue') return self::setErrorInfo('该订单不能使用余额支付!');
  740. $userInfo = User::getUserInfo($uid);
  741. if ($userInfo['brokerage_price'] < $orderInfo['pay_price'])
  742. return self::setErrorInfo(['status' => 'pay_deficiency', 'msg' => '健康币不足' . floatval($orderInfo['pay_price'])]);
  743. self::beginTrans();
  744. $res1 = false !== User::bcDec($uid, 'brokerage_price', $orderInfo['pay_price'], 'uid');
  745. $res2 = UserBill::expend('购买商品', $uid, 'brokerage_price', 'pay_product', $orderInfo['pay_price'], $orderInfo['id'], $userInfo['brokerage_price'], '健康币支付' . floatval($orderInfo['pay_price']) . '元购买商品');
  746. $res3 = self::paySuccess($order_id, 'yue', $formId);//余额支付成功
  747. try {
  748. PaymentRepositories::brokeragePayProduct($userInfo, $orderInfo);
  749. } catch (\Exception $e) {
  750. self::rollbackTrans();
  751. return self::setErrorInfo($e->getMessage());
  752. }
  753. $res = $res1 && $res2 && $res3;
  754. self::checkTrans($res);
  755. return $res;
  756. }
  757. /**
  758. * 微信支付 为 0元时
  759. * @param $order_id
  760. * @param $uid
  761. * @param string $formId
  762. * @return bool
  763. * @throws \think\Exception
  764. * @throws DataNotFoundException
  765. * @throws ModelNotFoundException
  766. * @throws \think\exception\DbException
  767. */
  768. public static function jsPayPrice($order_id, $uid, $formId = '')
  769. {
  770. $orderInfo = self::where('uid', $uid)->where('order_id', $order_id)->where('is_del', 0)->find();
  771. if (!$orderInfo) return self::setErrorInfo('订单不存在!');
  772. if ($orderInfo['paid']) return self::setErrorInfo('该订单已支付!');
  773. $userInfo = User::getUserInfo($uid);
  774. self::beginTrans();
  775. $res1 = UserBill::expend('购买商品', $uid, 'now_money', 'pay_product', $orderInfo['pay_price'], $orderInfo['id'], $userInfo['now_money'], '微信支付' . floatval($orderInfo['pay_price']) . '元购买商品');
  776. $res2 = self::paySuccess($order_id, 'weixin', $formId);//微信支付为0时
  777. $res = $res1 && $res2;
  778. self::checkTrans($res);
  779. return $res;
  780. }
  781. /**
  782. * 用户申请退款
  783. * @param $uni
  784. * @param $uid
  785. * @param string $refundReasonWap
  786. * @return bool
  787. */
  788. public static function orderApplyRefund($uni, $uid, $refundReasonWap = '', $refundReasonWapExplain = '', $refundReasonWapImg = [])
  789. {
  790. $order = self::getUserOrderDetail($uid, $uni);
  791. if (!$order) return self::setErrorInfo('支付订单不存在!');
  792. if ($order['refund_status'] == 2) return self::setErrorInfo('订单已退款!');
  793. if ($order['refund_status'] == 1) return self::setErrorInfo('正在申请退款中!');
  794. if ($order['status'] == 1) return self::setErrorInfo('订单当前无法退款!');
  795. $carts = StoreOrderCartInfo::whereIn('cart_id', $order['cart_id'])->select();
  796. foreach ($carts as $cart) {
  797. $info = is_string($cart['care_info']) ? json_decode($cart['cart_info'], true) : $cart['care_info'];
  798. if ($info['productInfo']['store_type'] == 2) return self::setErrorInfo('虚拟产品订单无法退款!');
  799. }
  800. self::beginTrans();
  801. $res1 = false !== StoreOrderStatus::status($order['id'], 'apply_refund', '用户申请退款,原因:' . $refundReasonWap);
  802. $res2 = false !== self::edit(['refund_status' => 1, 'refund_reason_time' => time(), 'refund_reason_wap' => $refundReasonWap, 'refund_reason_wap_explain' => $refundReasonWapExplain, 'refund_reason_wap_img' => json_encode($refundReasonWapImg)], $order['id'], 'id');
  803. $res = $res1 && $res2;
  804. self::checkTrans($res);
  805. if (!$res)
  806. return self::setErrorInfo('申请退款失败!');
  807. else {
  808. try {
  809. if (in_array($order['is_channel'], [0, 2])) {
  810. //公众号发送模板消息通知客服
  811. WechatTemplateService::sendAdminNoticeTemplate([
  812. 'first' => "亲,有个订单申请退款 \n订单号:{$order['order_id']}",
  813. 'keyword1' => '退款申请',
  814. 'keyword2' => '已支付',
  815. 'keyword3' => date('Y/m/d H:i', time()),
  816. 'remark' => '请及时处理'
  817. ]);
  818. }
  819. if (in_array($order['is_channel'], [1, 2])) {
  820. //小程序 发送模板消息
  821. RoutineTemplate::sendOrderRefundStatus($order, $refundReasonWap);
  822. }
  823. //通知后台消息提醒
  824. ChannelService::instance()->send('NEW_REFUND_ORDER', ['order_id' => $order['order_id']]);
  825. } catch (\Exception $e) {
  826. }
  827. //发送短信
  828. event('ShortMssageSend', [$order['order_id'], 'AdminRefund']);
  829. return true;
  830. }
  831. }
  832. /**
  833. * //TODO 支付成功后
  834. * @param $orderId
  835. * @param string $paytype
  836. * @param string $formId
  837. * @return bool
  838. * @throws DataNotFoundException
  839. * @throws DbException
  840. * @throws ModelNotFoundException
  841. */
  842. public static function paySuccess($orderId, $paytype = 'weixin', $formId = '')
  843. {
  844. $order = self::where('order_id', $orderId)->find();
  845. $resPink = true;
  846. $res1 = self::where('order_id', $orderId)->update(['paid' => 1, 'pay_type' => $paytype, 'pay_time' => time(), 'is_del' => 0, 'is_system_del' => 0, 'mark' => '']);//订单改为支付
  847. if ($order->combination_id && $res1 && !$order->refund_status) $resPink = StorePink::createPink($order);//创建拼团
  848. $oid = self::where('order_id', $orderId)->value('id');
  849. StoreOrderStatus::status($oid, 'pay_success', '用户付款成功');
  850. $now_money = User::where('uid', $order['uid'])->value('now_money');
  851. UserBill::expend('购买商品', $order['uid'], 'now_money', 'pay_money', $order['pay_price'], $order['id'], $now_money, '支付' . floatval($order['pay_price']) . '元购买商品');
  852. //支付成功后
  853. event('OrderPaySuccess', [$order, $formId]);
  854. $type = User::where('uid', $order['uid'])->value('is_first');
  855. // 是否是报单商品
  856. $array = $order->cart_id;
  857. foreach ($array as $v){
  858. $product_id = StoreCart::where('id',$v)->value('product_id');
  859. $is_explosive = StoreProduct::where('id',$product_id)->value('is_explosive');
  860. if ($is_explosive == 1){
  861. $type = 0;
  862. break;
  863. }
  864. }
  865. if ($type == 1) {
  866. self::team_rewards($order, 2); //分发团队奖励 2复购
  867. } else {
  868. self::team_rewards($order, 1); //分发团队奖励 1首单
  869. User::where('uid', $order['uid'])->update(['is_first' => 1]); //修改用户是否首单
  870. }
  871. $res1 = StoreOrder::gainUserIntegral($order); //直接发积分
  872. $res = $res1 && $resPink && UserSpread::setSpreadSure($order['uid']) && User::backOrderBrokerage($order);
  873. return false !== $res;
  874. }
  875. // 分发团队奖励 1首单 2复购
  876. public static function team_rewards($order, $type)
  877. {
  878. try {
  879. $nickname = User::where('uid', $order['uid'])->value('nickname');
  880. $user_spread_group = self::get_spread_user($order['uid']); //获取所有上级id
  881. @file_put_contents('quanju.txt', json_encode($user_spread_group) . "-所有上级\r\n", 8);
  882. $group_info = User::where('uid', 'in', $user_spread_group)->column('uid,level'); //获取所有上级信息
  883. @file_put_contents('quanju.txt', json_encode($group_info) . "-所有人\r\n", 8);
  884. // 提取所有level组成新数组
  885. $groupIds = array_column($group_info, 'level');
  886. @file_put_contents('quanju.txt', json_encode($groupIds) . "-新数组\r\n", 8);
  887. $make = app()->make(SystemUserLevel::class);
  888. // 统计每个level出现的次数
  889. $levelCounts = array_count_values($groupIds);
  890. @file_put_contents('quanju.txt', json_encode($levelCounts) . "-所有等级的人数2222\r\n", 8);
  891. $levelCounts2 = [];
  892. foreach ($levelCounts as $k => $v) { //遍历所有等级
  893. $level_id = $make->where('id', $k)->value('grade');
  894. $levelCounts2[$level_id] = $v;
  895. }
  896. if ($type == 1) {
  897. $field = 'first_ratio';
  898. $title = '首单奖励';
  899. } elseif ($type == 2) {
  900. $field = 'ratio';
  901. $title = '复购奖励';
  902. }
  903. ksort($levelCounts2);
  904. @file_put_contents('quanju.txt', json_encode($levelCounts2) . "-所有等级的人数\r\n", 8);
  905. $last_num = 0;
  906. $last_level = 0;
  907. foreach ($levelCounts2 as $k => $v) { //遍历所有等级
  908. if ($v > 0) {
  909. @file_put_contents('quanju.txt', $v . "-当前等级的人数\r\n", 8);
  910. @file_put_contents('quanju.txt', $k . "-当前等级\r\n", 8);
  911. $level_group = User::where('level', $k)->where('uid', 'in', $user_spread_group)->column('uid,nickname,brokerage_price,level'); //获取这个等级的所有用户
  912. $level = $make->where('grade', $k)->find(); //用户等级
  913. if ($level) {
  914. $ratio = bcmul($level[$field], 0.01, 2); //奖励比例
  915. @file_put_contents('quanju.txt', $ratio . "-当前等级比例\r\n", 8);
  916. $award_price = bcmul($order['total_price'], $ratio, 2); //奖励金额
  917. @file_put_contents('quanju.txt', $award_price . "-当前等级分到的总金额\r\n", 8);
  918. if ($last_num > 0) {
  919. $award_price = bcsub($award_price, $last_num, 2); //当前等级分到的总金额扣除上个等级分到的总金额
  920. }
  921. @file_put_contents('quanju.txt', $award_price . "-扣除上个等级分到的总金额后的当前等级分到的总金额\r\n", 8);
  922. $last_num = bcadd($last_num, $award_price, 2); //之前等级分到的总金额
  923. @file_put_contents('quanju.txt', $last_num . "-需要扣除的上个等级分到的总金额\r\n", 8);
  924. $user_award = bcdiv($award_price, $v, 2); //每个用户奖励金额
  925. @file_put_contents('quanju.txt', $user_award . "-当前等级分到的个人金额\r\n", 8);
  926. if ($user_award <= 0) {
  927. continue;
  928. }
  929. foreach ($level_group as $key => $value) {
  930. $after = bcadd($value['brokerage_price'], $user_award, 2); //更新用户奖励金额
  931. @file_put_contents('quanju.txt', $after . "-当前等级分到个人金额结算之后\r\n", 8);
  932. $mark = $value['nickname'] . '获得分账健康币' . $title . ':' . $user_award . '元';
  933. $res = UserBill::income('获得分账健康币', $value['uid'], 'brokerage_price', 'spread_award', $user_award, $order['id'], $after, $mark, 1);
  934. User::where('uid', $value['uid'])->update(['brokerage_price' => $after]);
  935. // 通知提现用户
  936. $openid = WechatUser::where('uid', $value['uid'])->value('openid');
  937. if (!empty($openid)) {
  938. $group = [
  939. 'first' => '获得健康币分账',
  940. 'remark' => '点击查看订单详情'
  941. ];
  942. $time = date('Y-m-d H:i:s', time());
  943. $group = array_merge($group, [
  944. 'amount1' => $user_award, //到账金额
  945. // 'thing12' => $nickname, //付款人
  946. 'time3' => $time, //支付时间
  947. ]);
  948. @file_put_contents('quanju.txt', json_encode($group) . "-模版消息5\r\n", 8);
  949. $res = WechatTemplateService::sendTemplate($openid, WechatTemplateService::BROKERAGE_PRICE, $group);
  950. @file_put_contents('quanju.txt', json_encode($res) . "-模版消息返回5\r\n", 8);
  951. }
  952. }
  953. }
  954. }
  955. }
  956. } catch (\Exception $e) {
  957. @file_put_contents('quanju.txt', $e->getMessage() . "-团队奖励错误信息\r\n", 8);
  958. @file_put_contents('quanju.txt', $e->getLine() . "-团队奖励错误位置\r\n", 8);
  959. }
  960. }
  961. //获取所有上级id
  962. public static function get_spread_user($id, $init = true, $parentMap = null)
  963. {
  964. if ($init) {
  965. // 获取所有用户的上级映射 (uid => spread_uid)
  966. $us = User::column('spread_uid', 'uid');
  967. $parentMap = $us; // 存储 uid->上级ID 的映射
  968. $id = (array)$id; // 确保ID转为数组
  969. }
  970. $result = []; // 存储所有上级ID
  971. $visited = []; // 防止循环引用
  972. $queue = (array)$id; // 初始化队列
  973. while (!empty($queue)) {
  974. $current = array_shift($queue); // 取出当前用户ID
  975. // 如果当前用户未处理过且有上级
  976. if (!isset($visited[$current]) && isset($parentMap[$current]) && $parentMap[$current] > 0) {
  977. $parentId = $parentMap[$current]; // 获取直接上级ID
  978. $visited[$current] = true; // 标记当前用户已访问
  979. // 避免重复处理
  980. if (!isset($visited[$parentId])) {
  981. $result[] = $parentId; // 添加到结果
  982. $queue[] = $parentId; // 将上级加入队列继续查找
  983. }
  984. }
  985. }
  986. return array_unique($result); // 返回去重后的上级ID列表
  987. }
  988. /*
  989. * 线下支付消息通知
  990. * 待完善
  991. *
  992. * */
  993. public static function createOrderTemplate($order)
  994. {
  995. //$goodsName = StoreOrderCartInfo::getProductNameList($order['id']);
  996. // RoutineTemplateService::sendTemplate(WechatUser::getOpenId($order['uid']),RoutineTemplateService::ORDER_CREATE, [
  997. // 'first'=>'亲,您购买的商品已支付成功',
  998. // 'keyword1'=>date('Y/m/d H:i',$order['add_time']),
  999. // 'keyword2'=>implode(',',$goodsName),
  1000. // 'keyword3'=>$order['order_id'],
  1001. // 'remark'=>'点击查看订单详情'
  1002. // ],Url::build('/wap/My/order',['uni'=>$order['order_id']],true,true));
  1003. // RoutineTemplateService::sendAdminNoticeTemplate([
  1004. // 'first'=>"亲,您有一个新订单 \n订单号:{$order['order_id']}",
  1005. // 'keyword1'=>'新订单',
  1006. // 'keyword2'=>'线下支付',
  1007. // 'keyword3'=>date('Y/m/d H:i',time()),
  1008. // 'remark'=>'请及时处理'
  1009. // ]);
  1010. }
  1011. /**
  1012. * 获取订单详情
  1013. * @param $uid
  1014. * @param $key
  1015. * @return array|\think\Model|null
  1016. * @throws DataNotFoundException
  1017. * @throws ModelNotFoundException
  1018. * @throws \think\exception\DbException
  1019. */
  1020. public static function getUserOrderDetail($uid, $key)
  1021. {
  1022. return self::where('order_id|unique', $key)->where('uid', $uid)->where('is_del', 0)->find();
  1023. }
  1024. /**
  1025. * TODO 订单发货
  1026. * @param array $postageData 发货信息
  1027. * @param string $oid orderID
  1028. */
  1029. public static function orderPostageAfter($postageData, $oid)
  1030. {
  1031. $order = self::where('id', $oid)->find();
  1032. if ($postageData['delivery_type'] == 'send') {//送货
  1033. RoutineTemplate::sendOrderPostage($order);
  1034. } else if ($postageData['delivery_type'] == 'express') {//发货
  1035. RoutineTemplate::sendOrderPostage($order, 1);
  1036. }
  1037. }
  1038. /** 收货后发送模版消息
  1039. * @param $order
  1040. */
  1041. public static function orderTakeAfter($order)
  1042. {
  1043. $title = self::getProductTitle($order['cart_id']);
  1044. if ($order['is_channel'] == 1) {//小程序
  1045. RoutineTemplate::sendOrderTakeOver($order, $title);
  1046. } else {
  1047. $openid = WechatUser::where('uid', $order['uid'])->value('openid');
  1048. \crmeb\services\WechatTemplateService::sendTemplate($openid, \crmeb\services\WechatTemplateService::ORDER_TAKE_SUCCESS, [
  1049. 'first' => '亲,您的订单已收货',
  1050. 'keyword1' => $order['order_id'],
  1051. 'keyword2' => '已收货',
  1052. 'keyword3' => date('Y-m-d H:i:s', time()),
  1053. 'keyword4' => $title,
  1054. 'remark' => '感谢您的光临!'
  1055. ]);
  1056. }
  1057. }
  1058. /**
  1059. * 删除订单
  1060. * @param $uni
  1061. * @param $uid
  1062. * @return bool
  1063. */
  1064. public static function removeOrder($uni, $uid)
  1065. {
  1066. $order = self::getUserOrderDetail($uid, $uni);
  1067. if (!$order) return self::setErrorInfo('订单不存在!');
  1068. $order = self::tidyOrder($order);
  1069. if ($order['_status']['_type'] != 0 && $order['_status']['_type'] != -2 && $order['_status']['_type'] != 4)
  1070. return self::setErrorInfo('该订单无法删除!');
  1071. if (false !== self::edit(['is_del' => 1], $order['id'], 'id') && false !== StoreOrderStatus::status($order['id'], 'remove_order', '删除订单')) {
  1072. //未支付和已退款的状态下才可以退积分退库存退优惠券
  1073. if ($order['_status']['_type'] == 0 || $order['_status']['_type'] == -2) {
  1074. event('StoreOrderRegressionAllAfter', [$order]);
  1075. }
  1076. event('UserOrderRemoved', $uni);
  1077. return true;
  1078. } else
  1079. return self::setErrorInfo('订单删除失败!');
  1080. }
  1081. /**
  1082. * //TODO 用户确认收货
  1083. * @param $uni
  1084. * @param $uid
  1085. */
  1086. public static function takeOrder($uni, $uid)
  1087. {
  1088. $order = self::getUserOrderDetail($uid, $uni);
  1089. if (!$order) return self::setErrorInfo('订单不存在!');
  1090. $order = self::tidyOrder($order);
  1091. if ($order['_status']['_type'] != 2) return self::setErrorInfo('订单状态错误!');
  1092. self::beginTrans();
  1093. if (false !== self::edit(['status' => 2], $order['id'], 'id') &&
  1094. false !== StoreOrderStatus::status($order['id'], 'user_take_delivery', '用户已收货')) {
  1095. try {
  1096. OrderRepository::storeProductOrderUserTakeDelivery($order, $uid);
  1097. UserBill::where('uid', $order['uid'])->where('link_id', $order['id'])->where('type', 'pay_money')->update(['take' => 1]);
  1098. } catch (\Exception $e) {
  1099. self::rollbackTrans();
  1100. return self::setErrorInfo($e->getMessage());
  1101. }
  1102. self::commitTrans();
  1103. event('UserLevelAfter', [User::get($uni)]);
  1104. event('UserOrderTake', $uni);
  1105. //短信通知
  1106. event('ShortMssageSend', [$order['order_id'], ['Receiving', 'AdminConfirmTakeOver']]);
  1107. return true;
  1108. } else {
  1109. self::rollbackTrans();
  1110. return false;
  1111. }
  1112. }
  1113. /**
  1114. * 获取订单状态购物车等信息
  1115. * @param $order
  1116. * @param bool $detail 是否获取订单购物车详情
  1117. * @param bool $isPic 是否获取订单状态图片
  1118. * @return mixed
  1119. * @throws DataNotFoundException
  1120. * @throws ModelNotFoundException
  1121. * @throws \think\exception\DbException
  1122. */
  1123. public static function tidyOrder($order, $detail = false, $isPic = false)
  1124. {
  1125. if ($detail == true && isset($order['id'])) {
  1126. $cartInfo = StoreOrderCartInfo::where('oid', $order['id'])->column('cart_info', 'unique') ?: [];
  1127. $info = [];
  1128. $is_virtual = false;
  1129. foreach ($cartInfo as $k => $cart) {
  1130. $cart = json_decode($cart, true);
  1131. $cart['unique'] = $k;
  1132. if (($cart['productInfo']['store_type'] ?? 1) == 2) $is_virtual = true;
  1133. //新增是否评价字段
  1134. $cart['is_reply'] = StoreProductReply::where('unique', $k)->count();
  1135. array_push($info, $cart);
  1136. unset($cart);
  1137. }
  1138. $order['cartInfo'] = $info;
  1139. $order['is_virtual'] = $is_virtual;
  1140. }
  1141. $status = [];
  1142. if (!$order['paid'] && $order['pay_type'] == 'offline' && !$order['status'] >= 2) {
  1143. $status['_type'] = 9;
  1144. $status['_title'] = '线下付款';
  1145. $status['_msg'] = '商家处理中,请耐心等待';
  1146. $status['_class'] = 'nobuy';
  1147. } else if (!$order['paid']) {
  1148. $status['_type'] = 0;
  1149. $status['_title'] = '未支付';
  1150. //系统预设取消订单时间段
  1151. $keyValue = ['order_cancel_time', 'order_activity_time', 'order_bargain_time', 'order_seckill_time', 'order_pink_time'];
  1152. //获取配置
  1153. $systemValue = SystemConfigService::more($keyValue);
  1154. //格式化数据
  1155. $systemValue = self::setValeTime($keyValue, is_array($systemValue) ? $systemValue : []);
  1156. if ($order['pink_id'] || $order['combination_id']) {
  1157. $order_pink_time = $systemValue['order_pink_time'] ? $systemValue['order_pink_time'] : $systemValue['order_activity_time'];
  1158. $time = bcadd($order['add_time'], $order_pink_time * 3600, 0);
  1159. $status['_msg'] = '请在' . date('m-d H:i:s', $time) . '前完成支付!';
  1160. } else if ($order['seckill_id']) {
  1161. $order_seckill_time = $systemValue['order_seckill_time'] ? $systemValue['order_seckill_time'] : $systemValue['order_activity_time'];
  1162. $time = bcadd($order['add_time'], $order_seckill_time * 3600, 0);
  1163. $status['_msg'] = '请在' . date('m-d H:i:s', $time) . '前完成支付!';
  1164. } else if ($order['bargain_id']) {
  1165. $order_bargain_time = $systemValue['order_bargain_time'] ? $systemValue['order_bargain_time'] : $systemValue['order_activity_time'];
  1166. $time = bcadd($order['add_time'], $order_bargain_time * 3600, 0);
  1167. $status['_msg'] = '请在' . date('m-d H:i:s', $time) . '前完成支付!';
  1168. } else {
  1169. $time = bcadd($order['add_time'], $systemValue['order_cancel_time'] * 3600, 0);
  1170. $status['_msg'] = '请在' . date('m-d H:i:s', $time) . '前完成支付!';
  1171. }
  1172. $status['_class'] = 'nobuy';
  1173. } else if ($order['refund_status'] == 1) {
  1174. $status['_type'] = -1;
  1175. $status['_title'] = '申请退款中';
  1176. $status['_msg'] = '商家审核中,请耐心等待';
  1177. $status['_class'] = 'state-sqtk';
  1178. } else if ($order['refund_status'] == 2) {
  1179. $status['_type'] = -2;
  1180. $status['_title'] = '已退款';
  1181. $status['_msg'] = '已为您退款,感谢您的支持';
  1182. $status['_class'] = 'state-sqtk';
  1183. } else if (!$order['status']) {
  1184. if ($order['pink_id']) {
  1185. if (StorePink::where('id', $order['pink_id'])->where('status', 1)->count()) {
  1186. $status['_type'] = 1;
  1187. $status['_title'] = '拼团中';
  1188. $status['_msg'] = '等待其他人参加拼团';
  1189. $status['_class'] = 'state-nfh';
  1190. } else {
  1191. $status['_type'] = 1;
  1192. $status['_title'] = '未发货';
  1193. $status['_msg'] = '商家未发货,请耐心等待';
  1194. $status['_class'] = 'state-nfh';
  1195. }
  1196. } else {
  1197. if ($order['shipping_type'] === 1) {
  1198. $status['_type'] = 1;
  1199. $status['_title'] = '未发货';
  1200. $status['_msg'] = '商家未发货,请耐心等待';
  1201. $status['_class'] = 'state-nfh';
  1202. } else {
  1203. $status['_type'] = 1;
  1204. $status['_title'] = '待核销';
  1205. $status['_msg'] = '待核销,请到核销点进行核销';
  1206. $status['_class'] = 'state-nfh';
  1207. }
  1208. }
  1209. } else if ($order['status'] == 1) {
  1210. if ($order['delivery_type'] == 'send') {//TODO 送货
  1211. $status['_type'] = 2;
  1212. $status['_title'] = '待收货';
  1213. $status['_msg'] = date('m月d日H时i分', StoreOrderStatus::getTime($order['id'], 'delivery')) . '服务商已送货';
  1214. $status['_class'] = 'state-ysh';
  1215. } else {//TODO 发货
  1216. $status['_type'] = 2;
  1217. $status['_title'] = '待收货';
  1218. if ($order['delivery_type'] == 'fictitious')
  1219. $_time = StoreOrderStatus::getTime($order['id'], 'delivery_fictitious');
  1220. else
  1221. $_time = StoreOrderStatus::getTime($order['id'], 'delivery_goods');
  1222. $status['_msg'] = date('m月d日H时i分', $_time) . '服务商已发货';
  1223. $status['_class'] = 'state-ysh';
  1224. }
  1225. } else if ($order['status'] == 2) {
  1226. $status['_type'] = 3;
  1227. $status['_title'] = '待评价';
  1228. $status['_msg'] = '已收货,快去评价一下吧';
  1229. $status['_class'] = 'state-ypj';
  1230. } else if ($order['status'] == 3) {
  1231. $status['_type'] = 4;
  1232. $status['_title'] = '交易完成';
  1233. $status['_msg'] = '交易完成,感谢您的支持';
  1234. $status['_class'] = 'state-ytk';
  1235. }
  1236. if (isset($order['pay_type']))
  1237. $status['_payType'] = isset(self::$payType[$order['pay_type']]) ? self::$payType[$order['pay_type']] : '其他方式';
  1238. if (isset($order['delivery_type']))
  1239. $status['_deliveryType'] = isset(self::$deliveryType[$order['delivery_type']]) ? self::$deliveryType[$order['delivery_type']] : '其他方式';
  1240. $order['_status'] = $status;
  1241. $order['_pay_time'] = isset($order['pay_time']) && $order['pay_time'] != null ? date('Y-m-d H:i:s', $order['pay_time']) : date('Y-m-d H:i:s', $order['add_time']);
  1242. $order['_add_time'] = isset($order['add_time']) ? (strstr($order['add_time'], '-') === false ? date('Y-m-d H:i:s', $order['add_time']) : $order['add_time']) : '';
  1243. $order['status_pic'] = '';
  1244. //获取产品状态图片
  1245. if ($isPic) {
  1246. $order_details_images = sys_data('order_details_images') ?: [];
  1247. foreach ($order_details_images as $image) {
  1248. if (isset($image['order_status']) && $image['order_status'] == $order['_status']['_type']) {
  1249. $order['status_pic'] = $image['pic'];
  1250. break;
  1251. }
  1252. }
  1253. }
  1254. $order['offlinePayStatus'] = (int)sys_config('offline_pay_status') ?? (int)2;
  1255. return $order;
  1256. }
  1257. /**
  1258. * 设置订单查询状态
  1259. * @param $status
  1260. * @param int $uid
  1261. * @param null $model
  1262. * @return StoreOrder|null
  1263. */
  1264. public static function statusByWhere($status, $uid = 0, $model = null)
  1265. {
  1266. // $orderId = StorePink::where('uid',$uid)->where('status',1)->column('order_id','id');//获取正在拼团的订单编号
  1267. if ($model == null) $model = new self;
  1268. if ('' === $status)
  1269. return $model;
  1270. else if ($status == 0)//未支付
  1271. return $model->where('paid', 0)->where('status', 0)->where('refund_status', 0);
  1272. else if ($status == 1)//待发货
  1273. return $model->where('paid', 1)->where('status', 0)->where('refund_status', 0);
  1274. else if ($status == 2)//待收货
  1275. return $model->where('paid', 1)->where('status', 1)->where('refund_status', 0);
  1276. else if ($status == 3)//待评价
  1277. return $model->where('paid', 1)->where('status', 2)->where('refund_status', 0);
  1278. else if ($status == 4)//已完成
  1279. return $model->where('paid', 1)->where('status', 3)->where('refund_status', 0);
  1280. else if ($status == -1)//退款中
  1281. return $model->where('paid', 1)->where('refund_status', 1);
  1282. else if ($status == -2)//已退款
  1283. return $model->where('paid', 1)->where('refund_status', 2);
  1284. else if ($status == -3)//退款
  1285. return $model->where('paid', 1)->where('refund_status', 'IN', '1,2');
  1286. // else if($status == 11){
  1287. // return $model->where('order_id','IN',implode(',',$orderId));
  1288. // }
  1289. else
  1290. return $model;
  1291. }
  1292. /**
  1293. * 获取订单并分页
  1294. * @param $uid
  1295. * @param string $status
  1296. * @param int $page
  1297. * @param int $limit
  1298. * @return mixed
  1299. * @throws DataNotFoundException
  1300. * @throws ModelNotFoundException
  1301. * @throws \think\exception\DbException
  1302. */
  1303. public static function getUserOrderList($uid, $status = '', $page = 0, $limit = 8)
  1304. {
  1305. if ($page) $list = self::statusByWhere($status, $uid)->where('is_del', 0)->where('uid', $uid)
  1306. ->field('add_time,seckill_id,bargain_id,combination_id,id,order_id,pay_price,total_num,total_price,pay_postage,total_postage,paid,status,refund_status,pay_type,coupon_price,deduction_price,pink_id,delivery_type,is_del,shipping_type')
  1307. ->order('add_time DESC')->page((int)$page, (int)$limit)->select()->toArray();
  1308. else $list = self::statusByWhere($status, $uid)->where('is_del', 0)->where('uid', $uid)
  1309. ->field('add_time,seckill_id,bargain_id,combination_id,id,order_id,pay_price,total_num,total_price,pay_postage,total_postage,paid,status,refund_status,pay_type,coupon_price,deduction_price,pink_id,delivery_type,is_del,shipping_type')
  1310. ->order('add_time DESC')->page((int)$page, (int)$limit)->select()->toArray();
  1311. foreach ($list as $k => $order) {
  1312. $list[$k] = self::tidyOrder($order, true);
  1313. }
  1314. return $list;
  1315. }
  1316. /**
  1317. * 获取推广人地下用户的订单金额
  1318. * @param string $uid
  1319. * @param string $status
  1320. * @return array
  1321. */
  1322. public static function getUserOrderCount($uid = '', $status = '')
  1323. {
  1324. $res = self::statusByWhere($status, $uid)->where('uid', 'IN', $uid)->column('pay_price');
  1325. return $res;
  1326. }
  1327. /**
  1328. * 搜索某个订单详细信息
  1329. * @param $uid
  1330. * @param $order_id
  1331. * @return bool|mixed
  1332. * @throws DataNotFoundException
  1333. * @throws ModelNotFoundException
  1334. * @throws \think\exception\DbException
  1335. */
  1336. public static function searchUserOrder($uid, $order_id)
  1337. {
  1338. $order = self::where('uid', $uid)->where('order_id', $order_id)->where('is_del', 0)->field('seckill_id,bargain_id,combination_id,id,order_id,pay_price,total_num,total_price,pay_postage,total_postage,paid,status,refund_status,pay_type,coupon_price,deduction_price,delivery_type,shipping_type')
  1339. ->order('add_time DESC')->find();
  1340. if (!$order)
  1341. return false;
  1342. else
  1343. return self::tidyOrder($order->toArray(), true);
  1344. }
  1345. /**
  1346. * 订单评价信息记录
  1347. * @param $oid
  1348. * @return StoreOrderStatus|\think\Model
  1349. * @throws \Exception
  1350. */
  1351. public static function orderOver($oid)
  1352. {
  1353. $res = self::edit(['status' => '3'], $oid, 'id');
  1354. if (!$res) exception('评价后置操作失败!');
  1355. return StoreOrderStatus::status($oid, 'check_order_over', '用户评价');
  1356. }
  1357. /**
  1358. * 设置订单产品评价完毕事件
  1359. * @param $oid
  1360. * @return StoreOrderStatus|\think\Model
  1361. * @throws \Exception
  1362. */
  1363. public static function checkOrderOver($oid)
  1364. {
  1365. $uniqueList = StoreOrderCartInfo::where('oid', $oid)->column('unique', 'unique');
  1366. //订单产品全部评价完成
  1367. if (StoreProductReply::where('unique', 'IN', $uniqueList)->where('oid', $oid)->count() == count($uniqueList)) {
  1368. event('StoreProductOrderOver', [$oid]);
  1369. return self::orderOver($oid);
  1370. }
  1371. }
  1372. public static function getOrderStatusNum($uid)
  1373. {
  1374. $noBuy = (int)self::where('uid', $uid)->where('paid', 0)->where('is_del', 0)->where('pay_type', '<>', 'offline')->count();
  1375. $noPostageNoPink = (int)self::where('o.uid', $uid)->alias('o')->where('o.paid', 1)->where('o.pink_id', 0)->where('o.is_del', 0)->where('o.status', 0)->where('o.pay_type', '<>', 'offline')->count();
  1376. $noPostageYesPink = (int)self::where('o.uid', $uid)->alias('o')->join('StorePink p', 'o.pink_id = p.id')->where('p.status', 2)->where('o.paid', 1)->where('o.is_del', 0)->where('o.status', 0)->where('o.pay_type', '<>', 'offline')->count();
  1377. $noPostage = (int)bcadd($noPostageNoPink, $noPostageYesPink, 0);
  1378. $noTake = (int)self::where('uid', $uid)->where('paid', 1)->where('is_del', 0)->where('status', 1)->where('pay_type', '<>', 'offline')->count();
  1379. $noReply = (int)self::where('uid', $uid)->where('paid', 1)->where('is_del', 0)->where('status', 2)->count();
  1380. $noPink = (int)self::where('o.uid', $uid)->alias('o')->join('StorePink p', 'o.pink_id = p.id')->where('p.status', 1)->where('o.paid', 1)->where('o.is_del', 0)->where('o.status', 0)->where('o.pay_type', '<>', 'offline')->count();
  1381. $noRefund = (int)self::where('uid', $uid)->where('paid', 1)->where('is_del', 0)->where('refund_status', 'IN', '1,2')->count();
  1382. return compact('noBuy', 'noPostage', 'noTake', 'noReply', 'noPink', 'noRefund');
  1383. }
  1384. /**
  1385. * 购买商品赠送积分
  1386. * @param $order
  1387. * @return bool
  1388. * @throws \think\Exception
  1389. * @throws DataNotFoundException
  1390. * @throws ModelNotFoundException
  1391. * @throws \think\exception\DbException
  1392. */
  1393. public static function gainUserIntegral($order)
  1394. {
  1395. if ($order['gain_integral'] > 0) {
  1396. $userInfo = User::getUserInfo($order['uid']);
  1397. BaseModel::beginTrans();
  1398. $res1 = false != User::where('uid', $userInfo['uid'])->update(['integral' => bcadd($userInfo['integral'], $order['gain_integral'], 2)]);
  1399. $res2 = false != UserBill::income('购买商品赠送健康豆', $order['uid'], 'integral', 'gain', $order['gain_integral'], $order['id'], $userInfo['integral'], '购买商品赠送' . floatval($order['gain_integral']) . '健康豆');
  1400. $res = $res1 && $res2;
  1401. BaseModel::checkTrans($res);
  1402. return $res;
  1403. }
  1404. return true;
  1405. }
  1406. /**
  1407. * 获取当前订单中有没有拼团存在
  1408. * @param $pid
  1409. * @return int|string
  1410. */
  1411. public static function getIsOrderPink($pid = 0, $uid = 0)
  1412. {
  1413. return self::where('uid', $uid)->where('pink_id', $pid)->where('refund_status', 0)->where('is_del', 0)->count();
  1414. }
  1415. /**
  1416. * 获取order_id
  1417. * @param $pid
  1418. * @return mixed
  1419. */
  1420. public static function getStoreIdPink($pid = 0, $uid = 0)
  1421. {
  1422. return self::where('uid', $uid)->where('pink_id', $pid)->where('is_del', 0)->value('order_id');
  1423. }
  1424. /**
  1425. * 删除当前用户拼团未支付的订单
  1426. */
  1427. public static function delCombination()
  1428. {
  1429. self::where('combination', '>', 0)->where('paid', 0)->where('uid', User::getActiveUid())->delete();
  1430. }
  1431. public static function getUserPrice($uid = 0)
  1432. {
  1433. if (!$uid) return 0;
  1434. $price = self::where('paid', 1)->where('uid', $uid)->where('status', 2)->where('refund_status', 0)->column('pay_price', 'id');
  1435. $count = 0;
  1436. if ($price) {
  1437. foreach ($price as $v) {
  1438. $count = bcadd($count, $v, 2);
  1439. }
  1440. }
  1441. return $count;
  1442. }
  1443. /**
  1444. * 个人中心获取个人订单列表和订单搜索
  1445. * @param int $uid 用户uid
  1446. * @param int | string 查找订单类型
  1447. * @param int $first 分页
  1448. * @param int 每页显示多少条
  1449. * @param string $search 订单号
  1450. * @return array
  1451. * */
  1452. public static function getUserOrderSearchList($uid, $type, $page, $limit, $search)
  1453. {
  1454. if ($search) {
  1455. $order = self::searchUserOrder($uid, $search) ?: [];
  1456. $list = $order == false ? [] : [$order];
  1457. } else {
  1458. $list = self::getUserOrderList($uid, $type, $page, $limit);
  1459. }
  1460. foreach ($list as $k => $order) {
  1461. $list[$k] = self::tidyOrder($order, true);
  1462. if ($list[$k]['_status']['_type'] == 3) {
  1463. foreach ($order['cartInfo'] ?: [] as $key => $product) {
  1464. $list[$k]['cartInfo'][$key]['is_reply'] = StoreProductReply::isReply($product['unique'], 'product');
  1465. $list[$k]['cartInfo'][$key]['add_time'] = isset($product['add_time']) ? date('Y-m-d H:i', $product['add_time']) : '时间错误';
  1466. }
  1467. }
  1468. }
  1469. return $list;
  1470. }
  1471. /**
  1472. * 获取用户下级的订单
  1473. * @param int $xuid 下级用户用户uid
  1474. * @param int $uid 用户uid
  1475. * @param int $type 订单类型
  1476. * @param int $first 截取行数
  1477. * @param int $limit 展示条数
  1478. * @return array
  1479. * */
  1480. public static function getSubordinateOrderlist($xUid, $uid, $type, $first, $limit)
  1481. {
  1482. $list = [];
  1483. if (!$xUid) {
  1484. $arr = User::getOneSpreadUid($uid);
  1485. foreach ($arr as $v) $list = StoreOrder::getUserOrderList($v, $type, $first, $limit);
  1486. } else $list = self::getUserOrderList($xUid, $type, $first, $limit);
  1487. foreach ($list as $k => $order) {
  1488. $list[$k] = self::tidyOrder($order, true);
  1489. if ($list[$k]['_status']['_type'] == 3) {
  1490. foreach ($order['cartInfo'] ?: [] as $key => $product) {
  1491. $list[$k]['cartInfo'][$key]['is_reply'] = StoreProductReply::isReply($product['unique'], 'product');
  1492. }
  1493. }
  1494. }
  1495. return $list;
  1496. }
  1497. /**
  1498. * 获取 今日 昨日 本月 订单金额
  1499. * @return mixed
  1500. */
  1501. public static function getOrderTimeData()
  1502. {
  1503. $to_day = strtotime(date('Y-m-d'));//今日
  1504. $pre_day = strtotime(date('Y-m-d', strtotime('-1 day')));//昨日
  1505. $now_month = strtotime(date('Y-m'));//本月
  1506. //今日成交额
  1507. // $data['todayPrice'] = (float)number_format(self::where('is_del', 0)->where('pay_time', '>=', $to_day)->where('paid', 1)->where('refund_status', 0)->value('sum(pay_price)'), 2) ?? 0;
  1508. $data['todayPrice'] = number_format(self::where('is_del', 0)->where('pay_time', '>=', $to_day)->where('paid', 1)->where('refund_status', 0)->value('sum(pay_price)'), 2) ?? 0;
  1509. //今日订单数
  1510. $data['todayCount'] = self::where('is_del', 0)->where('pay_time', '>=', $to_day)->where('paid', 1)->where('refund_status', 0)->count();
  1511. //昨日成交额
  1512. $data['proPrice'] = number_format(self::where('is_del', 0)->where('pay_time', '<', $to_day)->where('pay_time', '>=', $pre_day)->where('paid', 1)->where('refund_status', 0)->value('sum(pay_price)'), 2) ?? 0;
  1513. //昨日订单数
  1514. $data['proCount'] = self::where('is_del', 0)->where('pay_time', '<', $to_day)->where('pay_time', '>=', $pre_day)->where('paid', 1)->where('refund_status', 0)->count();
  1515. //本月成交额
  1516. $data['monthPrice'] = number_format(self::where('is_del', 0)->where('pay_time', '>=', $now_month)->where('paid', 1)->where('refund_status', 0)->value('sum(pay_price)'), 2) ?? 0;
  1517. //本月订单数
  1518. $data['monthCount'] = self::where('is_del', 0)->where('pay_time', '>=', $now_month)->where('paid', 1)->where('refund_status', 0)->count();
  1519. return $data;
  1520. }
  1521. /**
  1522. * 获取某个用户的订单统计数据
  1523. * @param $uid
  1524. * @return mixed
  1525. */
  1526. public static function getOrderData($uid)
  1527. {
  1528. //订单支付没有退款 数量
  1529. $data['order_count'] = self::where('is_del', 0)->where('paid', 1)->where('uid', $uid)->where('refund_status', 0)->count();
  1530. //订单支付没有退款 支付总金额
  1531. $data['sum_price'] = self::where('is_del', 0)->where('paid', 1)->where('uid', $uid)->where('refund_status', 0)->sum('pay_price');
  1532. //订单待支付 数量
  1533. $data['unpaid_count'] = self::statusByWhere(0, $uid)->where('is_del', 0)->where('uid', $uid)->count();
  1534. //订单待发货 数量
  1535. $data['unshipped_count'] = self::statusByWhere(1, $uid)->where('is_del', 0)->where('uid', $uid)->count();
  1536. //订单待收货 数量
  1537. $data['received_count'] = self::statusByWhere(2, $uid)->where('is_del', 0)->where('uid', $uid)->count();
  1538. //订单待评价 数量
  1539. $data['evaluated_count'] = self::statusByWhere(3, $uid)->where('is_del', 0)->where('uid', $uid)->count();
  1540. //订单已完成 数量
  1541. $data['complete_count'] = self::statusByWhere(4, $uid)->where('is_del', 0)->where('uid', $uid)->count();
  1542. //订单退款
  1543. $data['refund_count'] = self::statusByWhere(-1, $uid)->where('is_del', 0)->where('uid', $uid)->count();
  1544. return $data;
  1545. }
  1546. /**
  1547. * 获取订单统计数据
  1548. * @param $uid
  1549. * @return mixed
  1550. */
  1551. public static function getOrderDataAdmin()
  1552. {
  1553. //订单支付没有退款 数量
  1554. $data['order_count'] = self::where('is_del', 0)->where('paid', 1)->where('refund_status', 0)->count();
  1555. //订单支付没有退款 支付总金额
  1556. $data['sum_price'] = self::where('is_del', 0)->where('paid', 1)->where('refund_status', 0)->sum('pay_price');
  1557. //订单待支付 数量
  1558. $data['unpaid_count'] = self::statusByWhere(0, 0)->where('is_del', 0)->count();
  1559. //订单待发货 数量
  1560. $data['unshipped_count'] = self::statusByWhere(1, 0)->where('is_del', 0)->count();
  1561. //订单待收货 数量
  1562. $data['received_count'] = self::statusByWhere(2, 0)->where('is_del', 0)->count();
  1563. //订单待评价 数量
  1564. $data['evaluated_count'] = self::statusByWhere(3, 0)->where('is_del', 0)->count();
  1565. //订单已完成 数量
  1566. $data['complete_count'] = self::statusByWhere(4, 0)->where('is_del', 0)->count();
  1567. //订单退款 数量
  1568. $data['refund_count'] = self::statusByWhere(-3, 0)->where('is_del', 0)->count();
  1569. return $data;
  1570. }
  1571. /**
  1572. * 累计消费
  1573. * @param $uid
  1574. * @return float
  1575. */
  1576. public static function getOrderStatusSum($uid)
  1577. {
  1578. return self::where('uid', $uid)->where('is_del', 0)->where('paid', 1)->sum('pay_price');
  1579. }
  1580. public static function getPinkOrderId($id)
  1581. {
  1582. return self::where('id', $id)->value('order_id');
  1583. }
  1584. /**
  1585. * 未支付订单自动取消
  1586. * @param int $limit 分页截取条数
  1587. * @param string $prefid 缓存名称
  1588. * @param int $expire 缓存时间
  1589. * @return string|null
  1590. * @throws \Psr\SimpleCache\InvalidArgumentException
  1591. */
  1592. public static function orderUnpaidCancel()
  1593. {
  1594. //系统预设取消订单时间段
  1595. $keyValue = ['order_cancel_time', 'order_activity_time', 'order_bargain_time', 'order_seckill_time', 'order_pink_time'];
  1596. //获取配置
  1597. $systemValue = SystemConfigService::more($keyValue);
  1598. //格式化数据
  1599. $systemValue = self::setValeTime($keyValue, is_array($systemValue) ? $systemValue : []);
  1600. //检查是否有未支付的订单 未支付查询条件
  1601. $unPidCount = self::where('paid', 0)->where('pay_type', '<>', 'offline')->where('is_del', 0)->where('status', 0)->where('refund_status', 0)->count();
  1602. if (!$unPidCount) return null;
  1603. try {
  1604. $res = true;
  1605. // 未支付查询条件
  1606. $orderList = self::where('paid', 0)->where('pay_type', '<>', 'offline')->where('is_del', 0)->where('status', 0)->where('refund_status', 0)->field('add_time,pink_id,order_id,seckill_id,bargain_id,combination_id,status,cart_id,use_integral,refund_status,uid,unique,back_integral,coupon_id,paid,is_del')->select();
  1607. foreach ($orderList as $order) {
  1608. if ($order['seckill_id']) {
  1609. //优先使用单独配置的过期时间
  1610. $order_seckill_time = $systemValue['order_seckill_time'] ? $systemValue['order_seckill_time'] : $systemValue['order_activity_time'];
  1611. $res = $res && self::RegressionAll($order_seckill_time, $order);
  1612. unset($order_seckill_time);
  1613. } else if ($order['bargain_id']) {
  1614. $order_bargain_time = $systemValue['order_bargain_time'] ? $systemValue['order_bargain_time'] : $systemValue['order_activity_time'];
  1615. $res = $res && self::RegressionAll($order_bargain_time, $order);
  1616. unset($order_bargain_time);
  1617. } else if ($order['pink_id'] || $order['combination_id']) {
  1618. $order_pink_time = $systemValue['order_pink_time'] ? $systemValue['order_pink_time'] : $systemValue['order_activity_time'];
  1619. $res = $res && self::RegressionAll($order_pink_time, $order);
  1620. unset($order_pink_time);
  1621. } else {
  1622. $res = $res && self::RegressionAll($systemValue['order_cancel_time'], $order);
  1623. }
  1624. }
  1625. if (!$res) throw new \Exception('更新错误');
  1626. unset($orderList, $res, $pages);
  1627. return null;
  1628. } catch (PDOException $e) {
  1629. Log::error('未支付自动取消时发生数据库查询错误,错误原因为:' . $e->getMessage());
  1630. throw new \Exception($e->getMessage());
  1631. } catch (\think\Exception $e) {
  1632. Log::error('未支付自动取消时发生系统错误,错误原因为:' . $e->getMessage());
  1633. throw new \Exception($e->getMessage());
  1634. }
  1635. }
  1636. /**
  1637. * 未支付订单超过预设时间回退所有,如果不设置未支付过期时间,将不取消订单
  1638. * @param $time 预设时间
  1639. * @param $order 订单详情
  1640. * @return bool
  1641. * @throws DataNotFoundException
  1642. * @throws ModelNotFoundException
  1643. * @throws \think\exception\DbException
  1644. */
  1645. protected static function RegressionAll($time, $order)
  1646. {
  1647. if ($time == 0) return true;
  1648. if (($order['add_time'] + bcmul($time, 3600, 0)) < time()) {
  1649. $res1 = self::RegressionStock($order);
  1650. if ($order['is_brokerage'] == 1) {
  1651. $res2 = self::RegressionBrokerage($order);
  1652. } else {
  1653. $res2 = self::RegressionIntegral($order);
  1654. }
  1655. $res3 = self::RegressionCoupon($order);
  1656. $res = $res1 && $res2 && $res3;
  1657. if ($res) $res = false !== self::where('order_id', $order['order_id'])->update(['is_del' => 1, 'mark' => '订单未支付已超过系统预设时间']);
  1658. unset($res1, $res2, $res3);
  1659. return $res;
  1660. } else
  1661. return true;
  1662. }
  1663. /**
  1664. * 格式化数据
  1665. * @param array $array 原本数据键
  1666. * @param $value 需要格式化的数据
  1667. * @param int $default 默认值
  1668. * @return mixed
  1669. */
  1670. protected static function setValeTime(array $array, $value, $default = 0)
  1671. {
  1672. foreach ($array as $item) {
  1673. if (!isset($value[$item]))
  1674. $value[$item] = $default;
  1675. else if (is_string($value[$item]))
  1676. $value[$item] = (float)$value[$item];
  1677. }
  1678. return $value;
  1679. }
  1680. public static function getOrderTotalPrice($cartInfo)
  1681. {
  1682. $totalPrice = 0;
  1683. foreach ($cartInfo as $cart) {
  1684. $totalPrice = bcadd($totalPrice, bcmul($cart['cart_num'], $cart['truePrice'], 2), 2);
  1685. }
  1686. return $totalPrice;
  1687. }
  1688. public static function getOrderCostPrice($cartInfo)
  1689. {
  1690. $costPrice = 0;
  1691. foreach ($cartInfo as $cart) {
  1692. $costPrice = bcadd($costPrice, bcmul($cart['cart_num'], $cart['costPrice'], 2), 2);
  1693. }
  1694. return $costPrice;
  1695. }
  1696. public static function getCombinationOrderCostPrice($cartInfo)
  1697. {
  1698. $costPrice = 0;
  1699. foreach ($cartInfo as $cart) {
  1700. if ($cart['combination_id']) {
  1701. $costPrice = bcadd($costPrice, bcmul($cart['cart_num'], StoreCombination::where('id', $cart['combination_id'])->value('price'), 2), 2);
  1702. }
  1703. }
  1704. return (float)$costPrice;
  1705. }
  1706. public static function yueRefundAfter($order)
  1707. {
  1708. }
  1709. /**
  1710. * 获取余额支付的金额
  1711. * @param $uid
  1712. * @return float|int
  1713. */
  1714. public static function getOrderStatusYueSum($uid)
  1715. {
  1716. return self::where('uid', $uid)->where('is_del', 0)->where('is_del', 0)->where('pay_type', 'yue')->where('paid', 1)->sum('pay_price');
  1717. }
  1718. /**
  1719. * 砍价支付成功订单数量
  1720. * @param $bargain
  1721. * @return int
  1722. */
  1723. public static function getBargainPayCount($bargain)
  1724. {
  1725. return self::where('bargain_id', $bargain)->where(['paid' => 1, 'refund_status' => 0])->count();
  1726. }
  1727. /**
  1728. * 7天自动收货
  1729. * @return bool
  1730. */
  1731. public static function startTakeOrder()
  1732. {
  1733. //7天前时间戳
  1734. $systemDeliveryTime = SystemConfigService::get('system_delivery_time') ?? 0;
  1735. //0为取消自动收货功能
  1736. if ($systemDeliveryTime == 0) return true;
  1737. $sevenDay = strtotime(date('Y-m-d H:i:s', strtotime('-' . $systemDeliveryTime . ' day')));
  1738. $model = new self;
  1739. $model = $model->alias('o');
  1740. $model = $model->join('StoreOrderStatus s', 's.oid=o.id');
  1741. $model = $model->where('o.paid', 1);
  1742. $model = $model->where('s.change_type', 'delivery_goods');
  1743. $model = $model->where('s.change_time', '<', $sevenDay);
  1744. $model = $model->where('o.status', 1);
  1745. $model = $model->where('o.refund_status', 0);
  1746. $model = $model->where('o.is_del', 0);
  1747. $orderInfo = $model->column('id', 'id');
  1748. if (!count($orderInfo)) return true;
  1749. $res = true;
  1750. foreach ($orderInfo as $key => &$item) {
  1751. $order = self::get($item);
  1752. if ($order['status'] == 2) continue;
  1753. if ($order['paid'] == 1 && $order['status'] == 1) $data['status'] = 2;
  1754. else if ($order['pay_type'] == 'offline') $data['status'] = 2;
  1755. else continue;
  1756. if (!self::edit($data, $item, 'id')) continue;
  1757. try {
  1758. OrderRepository::storeProductOrderTakeDeliveryAdmin($order, $item);
  1759. $res = $res && true;
  1760. } catch (\Exception $e) {
  1761. $res = $res && false;
  1762. }
  1763. $res = $res && StoreOrderStatus::status($item, 'take_delivery', '已收货[自动收货]');
  1764. }
  1765. if (!$res) {
  1766. throw new \Exception('');
  1767. }
  1768. }
  1769. /**
  1770. * 获取订单信息
  1771. * @param $id
  1772. * @param string $field
  1773. * @return array|null|\think\Model
  1774. * @throws DataNotFoundException
  1775. * @throws ModelNotFoundException
  1776. * @throws \think\exception\DbException
  1777. */
  1778. public static function getOrderInfo($id, $field = 'order_id')
  1779. {
  1780. return self::where('id', $id)->field($field)->find();
  1781. }
  1782. /**
  1783. * 订单每月统计数据
  1784. * @param $page
  1785. * @param $limit
  1786. * @return array
  1787. */
  1788. public static function getOrderDataPriceCount($page, $limit, $start, $stop)
  1789. {
  1790. if (!$limit) return [];
  1791. $model = new self;
  1792. if ($start != '' && $stop != '') $model = $model->where('pay_time', '>', $start)->where('pay_time', '<=', $stop);
  1793. $model = $model->field('sum(pay_price) as price,count(id) as count,FROM_UNIXTIME(pay_time, \'%m-%d\') as time');
  1794. $model = $model->where('is_del', 0);
  1795. $model = $model->where('paid', 1);
  1796. $model = $model->where('refund_status', 0);
  1797. $model = $model->group("FROM_UNIXTIME(pay_time, '%Y-%m-%d')");
  1798. $model = $model->order('pay_time DESC');
  1799. if ($page) $model = $model->page($page, $limit);
  1800. return $model->select();
  1801. }
  1802. /**
  1803. * 前台订单管理订单列表获取
  1804. * @param $where
  1805. * @return mixed
  1806. */
  1807. public static function orderList($where)
  1808. {
  1809. $model = self::getOrderWhere($where, self::alias('a')->join('user r', 'r.uid=a.uid', 'LEFT'), 'a.', 'r')->field('a.id,a.order_id,a.add_time,a.status,a.total_num,a.total_price,a.total_postage,a.pay_price,a.pay_postage,a.paid,a.refund_status,a.remark,a.pay_type');
  1810. if ($where['order'] != '') {
  1811. $model = $model->order(self::setOrder($where['order']));
  1812. } else {
  1813. $model = $model->order('a.id desc');
  1814. }
  1815. $data = ($data = $model->page((int)$where['page'], (int)$where['limit'])->select()) && count($data) ? $data->toArray() : [];
  1816. return self::tidyAdminOrder($data);
  1817. }
  1818. /**
  1819. * 前台订单管理 订单信息设置
  1820. * @param $data
  1821. * @param bool $status
  1822. * @return mixed
  1823. * @throws DataNotFoundException
  1824. * @throws ModelNotFoundException
  1825. * @throws \think\exception\DbException
  1826. */
  1827. public static function tidyAdminOrder($data, $status = false)
  1828. {
  1829. foreach ($data as &$item) {
  1830. $_info = StoreOrderCartInfo::where('oid', $item['id'])->field('cart_info')->select()->toArray();
  1831. foreach ($_info as $k => $v) {
  1832. if (!is_array($v['cart_info']))
  1833. $_info[$k]['cart_info'] = json_decode($v['cart_info'], true);
  1834. }
  1835. foreach ($_info as $k => $v) {
  1836. unset($_info[$k]['cart_info']['type'], $_info[$k]['cart_info']['product_id'], $_info[$k]['cart_info']['combination_id'], $_info[$k]['cart_info']['seckill_id'], $_info[$k]['cart_info']['bargain_id'], $_info[$k]['cart_info']['bargain_id'], $_info[$k]['cart_info']['truePrice'], $_info[$k]['cart_info']['vip_truePrice'], $_info[$k]['cart_info']['trueStock'], $_info[$k]['cart_info']['costPrice'], $_info[$k]['cart_info']['productInfo']['id'], $_info[$k]['cart_info']['productInfo']['vip_price'], $_info[$k]['cart_info']['productInfo']['postage'], $_info[$k]['cart_info']['productInfo']['give_integral'], $_info[$k]['cart_info']['productInfo']['sales'], $_info[$k]['cart_info']['productInfo']['stock'], $_info[$k]['cart_info']['productInfo']['unit_name'], $_info[$k]['cart_info']['productInfo']['is_postage'], $_info[$k]['cart_info']['productInfo']['slider_image'], $_info[$k]['cart_info']['productInfo']['cost'], $_info[$k]['cart_info']['productInfo']['mer_id'], $_info[$k]['cart_info']['productInfo']['cate_id'], $_info[$k]['cart_info']['productInfo']['is_show'], $_info[$k]['cart_info']['productInfo']['store_info'], $_info[$k]['cart_info']['productInfo']['is_del'], $_info[$k]['cart_info']['is_pay'], $_info[$k]['cart_info']['is_del'], $_info[$k]['cart_info']['is_new'], $_info[$k]['cart_info']['add_time'], $_info[$k]['cart_info']['id'], $_info[$k]['cart_info']['uid'], $_info[$k]['cart_info']['product_attr_unique']);
  1837. $_info[$k]['cart_info']['productInfo']['suk'] = '';
  1838. if (isset($v['cart_info']['productInfo']['attrInfo'])) {
  1839. $_info[$k]['cart_info']['productInfo']['image'] = $_info[$k]['cart_info']['productInfo']['attrInfo']['image'];
  1840. $_info[$k]['cart_info']['productInfo']['price'] = $_info[$k]['cart_info']['productInfo']['attrInfo']['price'];
  1841. $_info[$k]['cart_info']['productInfo']['suk'] = $_info[$k]['cart_info']['productInfo']['attrInfo']['suk'];
  1842. unset($_info[$k]['cart_info']['productInfo']['attrInfo']);
  1843. }
  1844. if (!isset($v['cart_info']['productInfo']['ot_price'])) {
  1845. $_info[$k]['cart_info']['productInfo']['ot_price'] = $v['cart_info']['productInfo']['price'];
  1846. }
  1847. }
  1848. $item['_info'] = $_info;
  1849. $item['add_time'] = date('Y-m-d H:i:s', $item['add_time']);
  1850. // if($item['pink_id'] || $item['combination_id']){
  1851. // $pinkStatus = StorePink::where('order_id_key',$item['id'])->value('status');
  1852. // switch ($pinkStatus){
  1853. // case 1:
  1854. // $item['pink_name'] = '[拼团订单]正在进行中';
  1855. // $item['color'] = '#f00';
  1856. // break;
  1857. // case 2:
  1858. // $item['pink_name'] = '[拼团订单]已完成';
  1859. // $item['color'] = '#00f';
  1860. // break;
  1861. // case 3:
  1862. // $item['pink_name'] = '[拼团订单]未完成';
  1863. // $item['color'] = '#f0f';
  1864. // break;
  1865. // default:
  1866. // $item['pink_name'] = '[拼团订单]历史订单';
  1867. // $item['color'] = '#457856';
  1868. // break;
  1869. // }
  1870. // }elseif ($item['seckill_id']){
  1871. // $item['pink_name'] = '[秒杀订单]';
  1872. // $item['color'] = '#32c5e9';
  1873. // }elseif ($item['bargain_id']){
  1874. // $item['pink_name'] = '[砍价订单]';
  1875. // $item['color'] = '#12c5e9';
  1876. // }else{
  1877. // $item['pink_name'] = '[普通订单]';
  1878. // $item['color'] = '#895612';
  1879. // }
  1880. // if($item['paid']==1){
  1881. // switch ($item['pay_type']){
  1882. // case 'weixin':
  1883. // $item['pay_type_name']='微信支付';
  1884. // break;
  1885. // case 'yue':
  1886. // $item['pay_type_name']='余额支付';
  1887. // break;
  1888. // case 'offline':
  1889. // $item['pay_type_name']='线下支付';
  1890. // break;
  1891. // default:
  1892. // $item['pay_type_name']='其他支付';
  1893. // break;
  1894. // }
  1895. // }else{
  1896. // switch ($item['pay_type']){
  1897. // default:
  1898. // $item['pay_type_name']='未支付';
  1899. // break;
  1900. // case 'offline':
  1901. // $item['pay_type_name']='线下支付';
  1902. // $item['pay_type_info']=1;
  1903. // break;
  1904. // }
  1905. // }
  1906. if ($status) {
  1907. $status = [];
  1908. if (!$item['paid'] && $item['pay_type'] == 'offline' && !$item['status'] >= 2) {
  1909. $status['_type'] = 9;
  1910. $status['_title'] = '线下付款';
  1911. $status['_msg'] = '商家处理中,请耐心等待';
  1912. $status['_class'] = 'nobuy';
  1913. } else if (!$item['paid']) {
  1914. $status['_type'] = 0;
  1915. $status['_title'] = '未支付';
  1916. //系统预设取消订单时间段
  1917. $keyValue = ['order_cancel_time', 'order_activity_time', 'order_bargain_time', 'order_seckill_time', 'order_pink_time'];
  1918. //获取配置
  1919. $systemValue = SystemConfigService::more($keyValue);
  1920. //格式化数据
  1921. $systemValue = self::setValeTime($keyValue, is_array($systemValue) ? $systemValue : []);
  1922. if ($item['pink_id'] || $item['combination_id']) {
  1923. $order_pink_time = $systemValue['order_pink_time'] ? $systemValue['order_pink_time'] : $systemValue['order_activity_time'];
  1924. $time = bcadd($item['add_time'], $order_pink_time * 3600, 0);
  1925. $status['_msg'] = '请在' . date('Y-m-d H:i:s', $time) . '前完成支付!';
  1926. } else if ($item['seckill_id']) {
  1927. $order_seckill_time = $systemValue['order_seckill_time'] ? $systemValue['order_seckill_time'] : $systemValue['order_activity_time'];
  1928. $time = bcadd($item['add_time'], $order_seckill_time * 3600, 0);
  1929. $status['_msg'] = '请在' . date('Y-m-d H:i:s', $time) . '前完成支付!';
  1930. } else if ($item['bargain_id']) {
  1931. $order_bargain_time = $systemValue['order_bargain_time'] ? $systemValue['order_bargain_time'] : $systemValue['order_activity_time'];
  1932. $time = bcadd($item['add_time'], $order_bargain_time * 3600, 0);
  1933. $status['_msg'] = '请在' . date('Y-m-d H:i:s', $time) . '前完成支付!';
  1934. } else {
  1935. $time = bcadd($item['add_time'], $systemValue['order_cancel_time'] * 3600, 0);
  1936. $status['_msg'] = '请在' . date('Y-m-d H:i:s', $time) . '前完成支付!';
  1937. }
  1938. $status['_class'] = 'nobuy';
  1939. } else if ($item['refund_status'] == 1) {
  1940. $status['_type'] = -1;
  1941. $status['_title'] = '申请退款中';
  1942. $status['_msg'] = '商家审核中,请耐心等待';
  1943. $status['_class'] = 'state-sqtk';
  1944. } else if ($item['refund_status'] == 2) {
  1945. $status['_type'] = -2;
  1946. $status['_title'] = '已退款';
  1947. $status['_msg'] = '已为您退款,感谢您的支持';
  1948. $status['_class'] = 'state-sqtk';
  1949. } else if (!$item['status']) {
  1950. if ($item['pink_id']) {
  1951. if (StorePink::where('id', $item['pink_id'])->where('status', 1)->count()) {
  1952. $status['_type'] = 11;
  1953. $status['_title'] = '拼团中';
  1954. $status['_msg'] = '等待其他人参加拼团';
  1955. $status['_class'] = 'state-nfh';
  1956. } else {
  1957. $status['_type'] = 1;
  1958. $status['_title'] = '未发货';
  1959. $status['_msg'] = '商家未发货,请耐心等待';
  1960. $status['_class'] = 'state-nfh';
  1961. }
  1962. } else {
  1963. $status['_type'] = 1;
  1964. $status['_title'] = '未发货';
  1965. $status['_msg'] = '商家未发货,请耐心等待';
  1966. $status['_class'] = 'state-nfh';
  1967. }
  1968. } else if ($item['status'] == 1) {
  1969. if ($item['delivery_type'] == 'send') {//TODO 送货
  1970. $status['_type'] = 2;
  1971. $status['_title'] = '待收货';
  1972. $status['_msg'] = date('m月d日H时i分', StoreOrderStatus::getTime($item['id'], 'delivery')) . '服务商已送货';
  1973. $status['_class'] = 'state-ysh';
  1974. } else {//TODO 发货
  1975. $status['_type'] = 2;
  1976. $status['_title'] = '待收货';
  1977. $status['_msg'] = date('m月d日H时i分', StoreOrderStatus::getTime($item['id'], 'delivery_goods')) . '服务商已发货';
  1978. $status['_class'] = 'state-ysh';
  1979. }
  1980. } else if ($item['status'] == 2) {
  1981. $status['_type'] = 3;
  1982. $status['_title'] = '待评价';
  1983. $status['_msg'] = '已收货,快去评价一下吧';
  1984. $status['_class'] = 'state-ypj';
  1985. } else if ($item['status'] == 3) {
  1986. $status['_type'] = 4;
  1987. $status['_title'] = '交易完成';
  1988. $status['_msg'] = '交易完成,感谢您的支持';
  1989. $status['_class'] = 'state-ytk';
  1990. }
  1991. if (isset($item['pay_type']))
  1992. $status['_payType'] = isset(self::$payType[$item['pay_type']]) ? self::$payType[$item['pay_type']] : '其他方式';
  1993. if (isset($item['delivery_type']))
  1994. $status['_deliveryType'] = isset(self::$deliveryType[$item['delivery_type']]) ? self::$deliveryType[$item['delivery_type']] : '其他方式';
  1995. $item['_status'] = $status;
  1996. } else {
  1997. if ($item['paid'] == 0 && $item['status'] == 0) {
  1998. $item['status_name'] = '未支付';
  1999. } else if ($item['paid'] == 1 && $item['status'] == 0 && $item['refund_status'] == 0) {
  2000. $item['status_name'] = '未发货';
  2001. } else if ($item['paid'] == 1 && $item['status'] == 1 && $item['refund_status'] == 0) {
  2002. $item['status_name'] = '待收货';
  2003. } else if ($item['paid'] == 1 && $item['status'] == 2 && $item['refund_status'] == 0) {
  2004. $item['status_name'] = '待评价';
  2005. } else if ($item['paid'] == 1 && $item['status'] == 3 && $item['refund_status'] == 0) {
  2006. $item['status_name'] = '已完成';
  2007. }
  2008. }
  2009. // unset($item['refund_status']);
  2010. // else if($item['paid']==1 && $item['refund_status']==1){
  2011. // $item['status_name']=<<<HTML
  2012. //<b style="color:#f124c7">申请退款</b><br/>
  2013. //<span>退款原因:{$item['refund_reason_wap']}</span>
  2014. //HTML;
  2015. // }else if($item['paid']==1 && $item['refund_status']==2){
  2016. // $item['status_name']='已退款';
  2017. // }
  2018. // if($item['paid']==0 && $item['status']==0 && $item['refund_status']==0){
  2019. // $item['_status']=1;
  2020. // }else if($item['paid']==1 && $item['status']==0 && $item['refund_status']==0){
  2021. // $item['_status']=2;
  2022. // }else if($item['paid']==1 && $item['refund_status']==1){
  2023. // $item['_status']=3;
  2024. // }else if($item['paid']==1 && $item['status']==1 && $item['refund_status']==0){
  2025. // $item['_status']=4;
  2026. // }else if($item['paid']==1 && $item['status']==2 && $item['refund_status']==0){
  2027. // $item['_status']=5;
  2028. // }else if($item['paid']==1 && $item['status']==3 && $item['refund_status']==0){
  2029. // $item['_status']=6;
  2030. // }else if($item['paid']==1 && $item['refund_status']==2){
  2031. // $item['_status']=7;
  2032. // }
  2033. }
  2034. return $data;
  2035. }
  2036. /**
  2037. * 处理where条件
  2038. * @param $where
  2039. * @param $model
  2040. * @param string $aler
  2041. * @param string $join
  2042. * @return StoreOrder|null
  2043. */
  2044. public static function getOrderWhere($where, $model, $aler = '', $join = '')
  2045. {
  2046. if (isset($where['status']) && $where['status'] != '') $model = self::statusWhere($where['status'], $model, $aler);
  2047. if (isset($where['is_del']) && $where['is_del'] != '' && $where['is_del'] != -1) $model = $model->where($aler . 'is_del', $where['is_del']);
  2048. if (isset($where['combination_id'])) {
  2049. if ($where['combination_id'] == '普通订单') {
  2050. $model = $model->where($aler . 'combination_id', 0)->where($aler . 'seckill_id', 0)->where($aler . 'bargain_id', 0);
  2051. }
  2052. if ($where['combination_id'] == '拼团订单') {
  2053. $model = $model->where($aler . 'combination_id', ">", 0)->where($aler . 'pink_id', ">", 0);
  2054. }
  2055. if ($where['combination_id'] == '秒杀订单') {
  2056. $model = $model->where($aler . 'seckill_id', ">", 0);
  2057. }
  2058. if ($where['combination_id'] == '砍价订单') {
  2059. $model = $model->where($aler . 'bargain_id', ">", 0);
  2060. }
  2061. }
  2062. if (isset($where['type'])) {
  2063. switch ($where['type']) {
  2064. case 1:
  2065. $model = $model->where($aler . 'combination_id', 0)->where($aler . 'seckill_id', 0)->where($aler . 'bargain_id', 0);
  2066. break;
  2067. case 2:
  2068. $model = $model->where($aler . 'combination_id', ">", 0);
  2069. break;
  2070. case 3:
  2071. $model = $model->where($aler . 'seckill_id', ">", 0);
  2072. break;
  2073. case 4:
  2074. $model = $model->where($aler . 'bargain_id', ">", 0);
  2075. break;
  2076. }
  2077. }
  2078. if (isset($where['real_name']) && $where['real_name'] != '')
  2079. $model = $model->where($aler . 'order_id|' . $aler . 'real_name|' . $aler . 'user_phone' . ($join ? '|' . $join . '.nickname|' . $join . '.uid' : ''), 'LIKE', "%$where[real_name]%");
  2080. if (isset($where['data']) && $where['data'] !== '')
  2081. $model = self::getModelTime($where, $model, $aler . 'add_time');
  2082. return $model;
  2083. }
  2084. /**
  2085. * 设置where条件
  2086. * @param $status
  2087. * @param null $model
  2088. * @param string $alert
  2089. * @return StoreOrder|null
  2090. */
  2091. public static function statusWhere($status, $model = null, $alert = '')
  2092. {
  2093. if ($model == null) $model = new self;
  2094. if ('' === $status)
  2095. return $model;
  2096. else if ($status == 0)//未支付
  2097. return $model->where($alert . 'paid', 0)->where($alert . 'status', 0)->where($alert . 'refund_status', 0);
  2098. else if ($status == 1)//已支付 未发货
  2099. return $model->where($alert . 'paid', 1)->where($alert . 'status', 0)->where($alert . 'refund_status', 0);
  2100. else if ($status == 2)//已支付 待收货
  2101. return $model->where($alert . 'paid', 1)->where($alert . 'status', 1)->where($alert . 'refund_status', 0);
  2102. else if ($status == 3)// 已支付 已收货 待评价
  2103. return $model->where($alert . 'paid', 1)->where($alert . 'status', 2)->where($alert . 'refund_status', 0);
  2104. else if ($status == 4)// 交易完成
  2105. return $model->where($alert . 'paid', 1)->where($alert . 'status', 3)->where($alert . 'refund_status', 0);
  2106. else if ($status == -1)//退款中
  2107. return $model->where($alert . 'paid', 1)->where($alert . 'refund_status', 1);
  2108. else if ($status == -2)//已退款
  2109. return $model->where($alert . 'paid', 1)->where($alert . 'refund_status', 2);
  2110. else if ($status == -3)//退款
  2111. return $model->where($alert . 'paid', 1)->where($alert . 'refund_status', 'in', '1,2');
  2112. else
  2113. return $model;
  2114. }
  2115. /**
  2116. * 订单详情 管理员
  2117. * @param $orderId
  2118. * @param string $field
  2119. * @return array|null|\think\Model
  2120. * @throws DataNotFoundException
  2121. * @throws ModelNotFoundException
  2122. * @throws \think\exception\DbException
  2123. */
  2124. public static function getAdminOrderDetail($orderId, $field = '*')
  2125. {
  2126. return self::where('order_id', $orderId)->field($field)->find();
  2127. }
  2128. /**
  2129. * 获取指定时间区间的支付金额 管理员
  2130. * @param $start
  2131. * @param $stop
  2132. * @return float
  2133. */
  2134. public static function getOrderTimeBusinessVolumePrice($start, $stop)
  2135. {
  2136. return self::where('is_del', 0)->where('paid', 1)->where('refund_status', 0)->where('add_time', '>=', $start)->where('add_time', '<', $stop)->sum('pay_price');
  2137. }
  2138. /**
  2139. * 获取指定时间区间的支付订单数量 管理员
  2140. * @param $start
  2141. * @param $stop
  2142. * @return float
  2143. */
  2144. public static function getOrderTimeBusinessVolumeNumber($start, $stop)
  2145. {
  2146. return self::where('is_del', 0)->where('paid', 1)->where('refund_status', 0)->where('add_time', '>=', $start)->where('add_time', '<', $stop)->count();
  2147. }
  2148. /**
  2149. * 获取当前时间到指定时间的支付金额 管理员
  2150. * @param $start 开始时间
  2151. * @param $stop 结束时间
  2152. * @return mixed
  2153. */
  2154. public static function chartTimePrice($start, $stop)
  2155. {
  2156. $model = new self;
  2157. $model = $model->field('sum(pay_price) as num,FROM_UNIXTIME(add_time, \'%Y-%m-%d\') as time');
  2158. $model = $model->where('is_del', 0);
  2159. $model = $model->where('paid', 1);
  2160. $model = $model->where('refund_status', 0);
  2161. $model = $model->where('add_time', '>=', $start);
  2162. $model = $model->where('add_time', '<', $stop);
  2163. $model = $model->group("FROM_UNIXTIME(add_time, '%Y-%m-%d')");
  2164. $model = $model->order('add_time ASC');
  2165. return $model->select();
  2166. }
  2167. /**
  2168. * 获取当前时间到指定时间的支付订单数 管理员
  2169. * @param $start 开始时间
  2170. * @param $stop 结束时间
  2171. * @return mixed
  2172. */
  2173. public static function chartTimeNumber($start, $stop)
  2174. {
  2175. $model = new self;
  2176. $model = $model->field('count(id) as num,FROM_UNIXTIME(add_time, \'%Y-%m-%d\') as time');
  2177. $model = $model->where('is_del', 0);
  2178. $model = $model->where('paid', 1);
  2179. $model = $model->where('refund_status', 0);
  2180. $model = $model->where('add_time', '>=', $start);
  2181. $model = $model->where('add_time', '<', $stop);
  2182. $model = $model->group("FROM_UNIXTIME(add_time, '%Y-%m-%d')");
  2183. $model = $model->order('add_time ASC');
  2184. return $model->select();
  2185. }
  2186. /**
  2187. * 修改支付方式为线下支付
  2188. * @param $orderId
  2189. * @return bool
  2190. */
  2191. public static function setOrderTypePayOffline($orderId)
  2192. {
  2193. return self::edit(['pay_type' => 'offline'], $orderId, 'order_id');
  2194. }
  2195. /**
  2196. * 线下付款
  2197. * @param $id
  2198. * @return $this
  2199. */
  2200. public static function updateOffline($id)
  2201. {
  2202. $count = self::where('id', $id)->count();
  2203. if (!$count) return self::setErrorInfo('订单不存在');
  2204. $count = self::where('id', $id)->where('paid', 0)->count();
  2205. if (!$count) return self::setErrorInfo('订单已支付');
  2206. $res = self::where('id', $id)->update(['paid' => 1, 'pay_time' => time()]);
  2207. return $res;
  2208. }
  2209. /**
  2210. * 向创建订单10分钟未付款的用户发送短信
  2211. */
  2212. public static function sendTen()
  2213. {
  2214. $list = self::where('paid', 0)->where('is_del', 0)->where('is_system_del', 0)->where('add_time', '>', time() - 900)->where('add_time', '<', time() - 600)->column('user_phone');
  2215. foreach ($list as $phone) {
  2216. ShortLetterRepositories::send(true, $phone, [], 'ORDER_PAY_FALSE');
  2217. }
  2218. }
  2219. public function productInfo()
  2220. {
  2221. return $this->hasMany(StoreProductReply::class, 'oid', 'id');
  2222. }
  2223. public static function setOrderProductReplyWhere($where)
  2224. {
  2225. $model = self::where('status', 3)->order('add_time desc')->whereIn('id', function ($query) {
  2226. $query->name('store_order')->alias('o')->join('store_product_reply a', 'a.oid = o.id')->group('o.id')->field('o.id')->select();
  2227. })->with('productInfo', function ($query) use ($where) {
  2228. $alias = '';
  2229. if (isset($where['title']) && $where['title'] != '')
  2230. $query->where("{$alias}comment", 'LIKE', "%$where[title]%");
  2231. if (isset($where['is_reply']) && $where['is_reply'] != '') {
  2232. if ($where['is_reply'] >= 0) {
  2233. $query->where("{$alias}is_reply", $where['is_reply']);
  2234. } else {
  2235. $query->where("{$alias}is_reply", '>', 0);
  2236. }
  2237. }
  2238. if (isset($where['producr_id']) && $where['producr_id'] != 0)
  2239. $query->where($alias . 'product_id', $where['producr_id']);
  2240. $query->where("{$alias}is_del", 0);
  2241. });
  2242. return $model;
  2243. }
  2244. public static function getOrderProductReplyList($where)
  2245. {
  2246. $list = self::setOrderProductReplyWhere($where)->page((int)$where['message_page'], (int)$where['limit'])->select();
  2247. $list = count($list) ? $list->toArray() : [];
  2248. foreach ($list as $key => $item) {
  2249. if (isset($item['productInfo']) && is_array($item['productInfo']) && count($item['productInfo'])) {
  2250. foreach ($item['productInfo'] as $k => $v) {
  2251. if (!$v['nickname'] && $v['uid']) {
  2252. $v['nickname'] = User::where('uid', $v['uid'])->value('nickname');
  2253. $v['avatar'] = User::where('uid', $v['uid'])->value('avatar');
  2254. }
  2255. $v['image'] = '';
  2256. $v['store_name'] = '';
  2257. if ($v['product_id']) {
  2258. $product = StoreProduct::where('id', $v['product_id'])->field(['image', 'store_name'])->find();
  2259. if ($product) {
  2260. $v['image'] = $product['image'];
  2261. $v['store_name'] = $product['store_name'];
  2262. }
  2263. }
  2264. $list[$key]['productInfo'][$k] = $v;
  2265. }
  2266. }
  2267. }
  2268. $count = self::setOrderProductReplyWhere($where)->count();
  2269. return compact('list', 'count');
  2270. }
  2271. }