StoreOrder.php 100 KB

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