StoreOrder.php 105 KB

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