MobileOrder.php 15 KB

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