StoreOrder.php 97 KB

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