StoreOrder.php 108 KB

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