StoreOrder.php 101 KB

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