StoreOrder.php 102 KB

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