StoreOrder.php 99 KB

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