StoreOrder.php 97 KB

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