MobileOrder.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  1. <?php
  2. namespace app\common\model;
  3. use app\admin\model\Mobile;
  4. use app\admin\model\Admin;
  5. use app\admin\model\MobileOrderAdmin;
  6. use app\common\library\MobileConstant;
  7. use app\common\service\Refund;
  8. use app\common\service\SmsSend;
  9. use app\service\byte_dance\ByteDanceOrderPush;
  10. use app\service\byte_dance\ByteDanceSettle;
  11. use app\service\fast_hand\Settle;
  12. use think\Db;
  13. use think\db\Query;
  14. use think\Model;
  15. /**
  16. * 配置模型
  17. * @method static static filterSaled()
  18. * @method static static expired()
  19. * @method static static filterWillOver()
  20. * @method static static filterFlow()
  21. * @method $this filterShow($type)
  22. * @method $this waitPay()
  23. */
  24. class MobileOrder extends Model
  25. {
  26. protected $readonly=[
  27. 'user_id',
  28. ];
  29. use TraitModel;
  30. const STATUS_WAIT_SEND=10;
  31. const STATUS_CAN_SEND=15;
  32. const STATUS_REFUND=30;
  33. const STATUS_REFUNDED=90;
  34. //供应商页面展示tab
  35. public static $GongYSStatus=[
  36. self::STATUS_CAN_SEND=>'待发货',
  37. 17=>'有号码未发货',
  38. 20=>'已发货待激活',
  39. 25=>'已完成',
  40. 60=>'无号码',
  41. ];
  42. public static $status=[
  43. 0=>'待付款',
  44. self::STATUS_WAIT_SEND=>'已付款',
  45. self::STATUS_CAN_SEND=>'待发货',
  46. 17=>'有号码未发货',
  47. 20=>'已发货待激活',
  48. 25=>'已完成',
  49. self::STATUS_REFUND=>'申请退款',
  50. 50=>'已关闭',
  51. 60=>'无号码',
  52. 70=>'换卡',
  53. 80=>'争议单',
  54. self::STATUS_REFUNDED=>'已退款',
  55. ];
  56. public static $refundAllowStatus=[
  57. self::STATUS_WAIT_SEND,
  58. 15,
  59. 17,
  60. 20,
  61. 60,
  62. 70,
  63. ];
  64. public static $refundAllowStatusFlow=[
  65. 10,
  66. 15,
  67. 20,
  68. 23,
  69. 110,
  70. ];
  71. public static $flowStatus=[
  72. 0=>'待付款',//待付款
  73. 10=>'已付款未处理',//已付款未处理
  74. 15=>'待处理',//待处理
  75. 20=>'已提交运营商',//已提交运营商
  76. 23=>'已发货',//已发货
  77. 25=>'已完结',//已激活/已完结
  78. self::STATUS_REFUND=>'申请退款',
  79. 50=>'已关闭',//已激活/已完结
  80. self::STATUS_REFUNDED=>'已退款',
  81. 110=>'审核失败',//审核失败
  82. ];
  83. public static $frontStatus=[
  84. 0,
  85. self::STATUS_WAIT_SEND,
  86. self::STATUS_CAN_SEND,
  87. 17,20,25,30,90,50,
  88. ];
  89. public static $payTypes=[
  90. 1=>'微信',
  91. 2=>'支付宝',
  92. 3=>'京东',
  93. 4=>'抖音',
  94. self::PT_KS=>'快手',
  95. ];
  96. const PT_DY=4;
  97. const PT_KS=5;
  98. protected $hidden=[
  99. 'status_bak',
  100. ];
  101. protected $append=[
  102. 'allow_refund',
  103. ];
  104. // 自动写入时间戳字段
  105. protected $autoWriteTimestamp = true;
  106. public function mobile(){
  107. return $this->belongsTo(Mobile::class)->setEagerlyType(0);
  108. }
  109. public function info(){
  110. return $this->hasOne(MobileOrderInfo::class);
  111. }
  112. public function mind(){
  113. return $this->hasOne(MobileOrderMind::class);
  114. }
  115. public function operation(){
  116. return $this->hasMany(MobileOrderOperation::class)->order('mobile_order_operation.id','desc');
  117. }
  118. public function admin(){
  119. return $this->hasMany(MobileOrderAdmin::class);
  120. }
  121. public function orderStatus(){
  122. return $this->hasMany(MobileOrderStatus::class);
  123. }
  124. public function refundLog(){
  125. return $this->hasMany(MobileOrderRefundLog::class);
  126. }
  127. public function rules(){
  128. return $this->hasMany(MobileOrderRules::class);
  129. }
  130. public function proxy(){
  131. $columns=Admin::getTableInfo()['fields'];
  132. unset($columns['password']);
  133. return $this->belongsTo(Admin::class)->field($columns);
  134. }
  135. public function getAddressAttr($a,$b){
  136. return Area::getNameString($b['city']).$a;
  137. }
  138. public function getAllowRefundAttr($_,$model){
  139. if(empty($model['type'])){
  140. return false;
  141. }
  142. if($model['type']==Mobile::FLOW){
  143. return in_array($model['status'],self::$refundAllowStatusFlow);
  144. }
  145. return in_array($model['status'],self::$refundAllowStatus);
  146. }
  147. public function setCityAttr($a){
  148. if(is_array($a)){
  149. return implode(',',$a);
  150. }
  151. return $a;
  152. }
  153. public function saveRules(){
  154. if($this['type']==1) {
  155. $mobile=$this['mobile'];
  156. $filters=MobileConstant::getFilters();
  157. $rules=[];
  158. foreach ($filters as $rule=>$filter){
  159. $fit=false;
  160. foreach ($filter as $column){
  161. if($mobile[$column]){
  162. $fit=true;
  163. break;
  164. }
  165. }
  166. if($fit){
  167. $rules[]=[
  168. 'rule'=>$rule
  169. ];
  170. }
  171. }
  172. $this->rules()->saveAll($rules);
  173. }
  174. }
  175. protected static function init()
  176. {
  177. self::beforeInsert(function (self $mobileOrder){
  178. $mobileOrder['order_no']=order_no();
  179. $mobileOrder['expire_time']=time()+86400;
  180. $mobileOrder['brand']=$mobileOrder['mobile']['brand'];
  181. #计算盈利
  182. $mobileOrder['amount_profit']=bcsub($mobileOrder['amount_base'],$mobileOrder['amount_di']);
  183. if($mobileOrder['amount_profit']<0){
  184. $mobileOrder['amount_profit']=0;
  185. }
  186. });
  187. self::afterInsert(function (self $mobileOrder){
  188. $mobileOrder->info()->save([
  189. 'mobile'=>$mobileOrder['mobile'],
  190. 'info'=>$mobileOrder['mobile']['info'],
  191. ]);
  192. #保存规律
  193. $mobileOrder->saveRules();
  194. });
  195. self::beforeUpdate(function (self $mobileOrder){
  196. $data=$mobileOrder->getChangedData();
  197. #记录status
  198. if(isset($data['status'])){
  199. $mobileOrder->orderStatus()->save([
  200. 'status'=>$mobileOrder->origin['status'],
  201. ]);
  202. }
  203. #物流信息
  204. if(!empty($data['trans_id'])){
  205. $mobileOrder['trans_name']=LogisticsCompany::getNameById($data['trans_id']);
  206. }
  207. if(isset($data['trans_id']) && !$data['trans_id']){
  208. $mobileOrder['trans_name']=null;
  209. }
  210. #主播
  211. });
  212. self::afterUpdate(function (self $mobileOrder){
  213. #同步订单
  214. /*if($mobileOrder['pay_type']==4){
  215. $push=new ByteDanceOrderPush();
  216. $push->setOrder($mobileOrder);
  217. $push->setPayment(null);
  218. $push->get();
  219. }*/
  220. });
  221. }
  222. public function sendNotifyToUser(){
  223. $mobileOrder=$this;
  224. if($mobileOrder['trans_name'] && $mobileOrder['trans_no']) {
  225. SmsSend::orderSend($mobileOrder['phone'], $mobileOrder['trans_name'], $mobileOrder['trans_no']);
  226. }
  227. }
  228. public function scopeExpired(Query $query){
  229. $query->where('status',0)->where('expire_time','<',time())->where('amount','>',0);
  230. }
  231. public function scopeFilterWillOver(Query $query){
  232. $query->whereIn('status',[20,23])->where('send_time','<=',strtotime('-3days'));
  233. }
  234. public function scopeFilterFlow(Query $query){
  235. $query->where('type',2);
  236. }
  237. public function cancel(){
  238. if($this['pay_time'] || $this['pay_time']!=0){
  239. return;
  240. }
  241. $this['status']=50;
  242. $this->save();
  243. }
  244. public function continuePay(){
  245. if($this['expire_time']<time()){
  246. throw_user('订单已过期');
  247. }
  248. if($this['status']!=0){
  249. throw_user('订单状态有误');
  250. }
  251. if($this['type']!=1){
  252. throw_user('该产品无需支付');
  253. }
  254. if(!$this['mobile']){
  255. throw_user('手机号不存在或已下架');
  256. }
  257. $this['mobile']->shouldBuy();
  258. }
  259. #wechat,alipay,dy
  260. public function paySuccessCallback($payment=null,$data=[],$type='wechat'){
  261. $mobileOrder=$this;
  262. if(!empty($mobileOrder['pay_time'])){
  263. throw_user("手机订单已支付");
  264. }
  265. if(Mobile::isTypeNo($mobileOrder['type'])) {
  266. $mobileOrder['status'] = MobileOrder::STATUS_CAN_SEND;
  267. }else{
  268. $mobileOrder['status'] = 10;
  269. }
  270. if($payment) {
  271. $payConfig=get_addon_config('epay');
  272. $mobileOrder['pay_time'] = $payment['pay_time'];
  273. if ($type == 'wechat') {
  274. $mobileOrder['pay_type'] = 1;
  275. $mobileOrder['pay_no'] = $data['transaction_id'];
  276. $mobileOrder['pay_mid_wechat']=$payConfig['wechat']['mch_id'];
  277. } elseif ($type == 'alipay') {
  278. $mobileOrder['pay_type'] = 2;
  279. $mobileOrder['pay_no'] = $data['trade_no'];
  280. $mobileOrder['pay_mid_alipay']=$payConfig['alipay']['app_id'];
  281. }elseif ($type=='dy'){
  282. $mobileOrder['pay_type'] = 4;
  283. $mobileOrder['pay_no'] = $data['channel_no'];
  284. $mobileOrder['pay_mid_dy']=$data['appid'];
  285. }elseif ($type=='ks'){
  286. $mobileOrder['pay_type'] = 5;
  287. $mobileOrder['pay_no'] = $data['ks_order_no'];
  288. $mobileOrder['pay_mid_ks']=$data['appid'];
  289. }
  290. $mobileOrder['payment_id'] = $payment['id'];
  291. SmsSend::orderPayed($mobileOrder['phone']);
  292. SmsSend::orderedSupplyNotice($mobileOrder);
  293. }else{
  294. $mobileOrder['pay_time']=time();
  295. }
  296. if (!$mobileOrder->save()) {
  297. throw_user("订单保存失败");
  298. }
  299. Mobile::whenOrderPayed($mobileOrder->mobile);
  300. }
  301. public function originData(){
  302. return $this->origin;
  303. }
  304. public function checkAllowRefund(){
  305. if($this['amount']<=0){
  306. throw_user('该订单未支付无法退款');
  307. }
  308. if(in_array($this['type'],[Mobile::BEAUTI,Mobile::API]) && !in_array($this['status'],self::$refundAllowStatus)){
  309. throw_user('当前状态不允许退款');
  310. }elseif($this['type']==Mobile::FLOW && !in_array($this['status'],self::$refundAllowStatusFlow)){
  311. throw_user('流量卡当前状态不允许退款');
  312. }
  313. if(empty($this->payment)){
  314. throw_user('该订单无支付信息无法退款');
  315. }
  316. }
  317. public function makeUserRefund($reason){
  318. $this['status_bak']=$this['status'];
  319. $this['status']=self::STATUS_REFUND;
  320. $this['refund_reason']=$reason;
  321. $this->save();
  322. }
  323. public static function flowStatus(){
  324. $s=self::$flowStatus;
  325. return $s;
  326. }
  327. public function frontStatus(){
  328. return self::$frontStatus;
  329. }
  330. public function scopeFilterShow(Query $query,$type){
  331. if ($type==1){
  332. $query->whereIn('mobile_order.status',$this->frontStatus());
  333. }else{
  334. $query->whereIn('mobile_order.status',array_keys(self::flowStatus()));
  335. }
  336. }
  337. public function makeRefund($from,$user,$data){
  338. $model=$this;
  339. $model['amount_refund'] = $data['amount'];
  340. $model['refund_no'] = session_create_id();
  341. $model['refund_audit_remark']=$data['refund_reason'];
  342. $statusBak=$model['status_bak'];
  343. if(is_null($model['status_bak'])) {
  344. $model['status_bak'] = $model['status'];
  345. }
  346. if ($data['pass']) {
  347. if ($data['amount'] > $model['amount']) {
  348. throw_user('退款金额不能大于付款金额');
  349. }
  350. Refund::setType($model)->refund();
  351. $model['status'] = self::STATUS_REFUNDED;
  352. SmsSend::orderRefund($model['phone']);
  353. #退款盈利哦
  354. $model['amount_profit']=bcsub($model['amount'],$model['amount_refund']);
  355. }else{
  356. $model['amount_refund']=0;
  357. if(!is_null($statusBak)){
  358. $model['status'] = $statusBak;
  359. }
  360. }
  361. $model->save();
  362. $model->refundLog()->save(MobileOrderRefundLog::withRefund($from,$user,$data));
  363. }
  364. public function makeOver($settle=true){
  365. $this['status']=25;
  366. $this->save();
  367. if($settle) {
  368. if ($this['payment_id']) {
  369. if ($this['pay_type'] == self::PT_DY) {
  370. $this->dySettle();
  371. } elseif ($this['pay_type'] == self::PT_KS) {
  372. $this->ksSettle();
  373. }
  374. }
  375. }
  376. }
  377. public function flowOrderSubmit(){
  378. $this['status']=0;
  379. }
  380. public function scopeWaitPay(Query $query){
  381. $query->where('status',0);
  382. }
  383. #销售金额
  384. public function scopeFilterSaled(Query $query){
  385. $query->whereNotIn('mobile_order.status',[0,50,90]);
  386. }
  387. #发货
  388. public function dealSend($trans_no,$trans_id){
  389. $this['trans_no']=$trans_no;
  390. $this['trans_id']=$trans_id;
  391. if($this['type']==1){
  392. $this['status']=20;
  393. }else{
  394. $this['status']=23;
  395. }
  396. $this['send_time']=time();
  397. $this->save();
  398. $this->sendNotifyToUser();
  399. }
  400. #30天内同一手机号不弄下单
  401. // public static function hasOrdered($phone,Mobile $mobile){
  402. public static function hasOrdered($phone,$mobile_brand){
  403. return
  404. self::whereNotIn('status',[0,50])
  405. ->where('create_time','>',strtotime('-30days'))
  406. ->where('phone',$phone)
  407. //->where('brand',$mobile['brand'])
  408. ->where('brand',$mobile_brand)
  409. ->value('id');
  410. }
  411. /**
  412. * 流量单限制
  413. */
  414. public static function orderLimit($id_no, $limit = 30, $mobileBrand = ''){
  415. $days = '-'.$limit.' days';
  416. if(!$id_no || !$mobileBrand) return true;
  417. // $brands = Mobile::$flowBrand;
  418. // $brand = $brands[$mobileBrand] ?? '';
  419. // if(!$brand) return false;
  420. return
  421. self::whereNotIn('status',[0,50])
  422. ->where('create_time','>',strtotime($days))
  423. ->where('id_no', $id_no)
  424. ->where('brand', $mobileBrand)
  425. // ->fetchSql()
  426. ->value('id');
  427. }
  428. public function payment(){
  429. return $this->belongsTo(Payment::class);
  430. }
  431. public function dySettle(){
  432. if($this['pay_type']!=self::PT_DY){
  433. throw_user('必须抖音支付才能结算');
  434. }
  435. $settle=new ByteDanceSettle();
  436. $settle->setMobileOrder($this);
  437. $settle->get();
  438. }
  439. public function ksSettle(){
  440. $settle=new Settle();
  441. $settle->setOrder($this);
  442. list($succ,$msg,$data)=$settle->get();
  443. if(!$succ){
  444. throw_user("快手结算失败:$msg");
  445. }
  446. }
  447. public function getOrderStatusText(){
  448. if(Mobile::isTypeNo($this['type'])){
  449. $status=self::$status;
  450. }else{
  451. $status=self::flowStatus();
  452. }
  453. return $status[$this['status']];
  454. }
  455. }