Order.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434
  1. <?php
  2. namespace app\data\controller\api\business;
  3. use app\data\model\DataUser;
  4. use app\data\model\ShopGoodsItem;
  5. use app\data\model\ShopOrder;
  6. use app\data\model\ShopOrderItem;
  7. use app\data\model\ShopOrderSend;
  8. use app\data\model\SystemUser;
  9. use app\data\model\SystemUserAddress;
  10. use think\admin\Controller;
  11. use hg\apidoc\annotation\Title;
  12. use hg\apidoc\annotation\Method;
  13. use hg\apidoc\annotation\Param;
  14. use hg\apidoc\annotation\Returned;
  15. use Yansongda\Pay\Exceptions\GatewayException;
  16. use Yansongda\Pay\Pay;
  17. use app\data\model\ShopGoods;
  18. use app\data\model\ShopOrderPay;
  19. use think\admin\model\SystemConfig;
  20. /**
  21. * 商家订单数据接口
  22. */
  23. class Order extends Controller
  24. {
  25. /**
  26. * @Title ("主页订单上标数量")
  27. * @Method ("get")
  28. * @return void
  29. * @throws \think\db\exception\DbException
  30. */
  31. public function order_statistics(){
  32. $admin_id=$this->uuid();
  33. $count = ['待付款','待发货','待收货','退款/售后'];
  34. $where=[];
  35. foreach ($count as &$v){
  36. switch ($v){
  37. case '待付款':
  38. $array = '2';
  39. break;
  40. case '待发货':
  41. $array = '4';
  42. break;
  43. case '待收货':
  44. $array = '5';
  45. break;
  46. case '退款/售后':
  47. $array = '7';
  48. break;
  49. }
  50. $v=ShopOrder::mk()->where('admin_id',$admin_id->id)->whereIn('status',$array)->where($where)->count();
  51. }
  52. $this->success('商城订单上标数量',$count);
  53. }
  54. /**
  55. * @Title ("商城订单上标数量")
  56. * @Method ("get")
  57. * @return void
  58. * @throws \think\db\exception\DbException
  59. */
  60. public function order_count(){
  61. $admin_id=$this->uuid();
  62. $count = ['全部','待付款','待发货','待收货','已完成'];
  63. foreach ($count as &$v){
  64. switch ($v){
  65. case '全部':
  66. $array = '0,1,2,3,4,5,6';
  67. break;
  68. case '待付款':
  69. $array = '2';
  70. break;
  71. case '待发货':
  72. $array = '4';
  73. break;
  74. case '待收货':
  75. $array = '5';
  76. break;
  77. case '已完成':
  78. $array = '6';
  79. break;
  80. }
  81. $v=ShopOrder::mk()->where('admin_id',$admin_id->id)->whereIn('status',$array)->count();
  82. }
  83. $this->success('商城订单上标数量',$count);
  84. }
  85. /**
  86. * @Title("我的订单")
  87. * @Method("post")
  88. * @Param ("page",desc="页码")
  89. * @Param("order_name",desc="搜索名称")
  90. * @Param ("status",desc="1全部 2 待支付 3代发货 4 待收货 5已完成")
  91. */
  92. public function order_list(){
  93. $admin_id=$this->uuid();
  94. $status = input('status',1);
  95. if(!empty($status)){
  96. switch ($status){
  97. case 1:
  98. $array = [0,1,2,3,4,5,6];
  99. break;
  100. case 2:
  101. $array = [2];
  102. break;
  103. case 3:
  104. $array = [4];
  105. break;
  106. case 4:
  107. $array = [5];
  108. break;
  109. case 5:
  110. $array = [6];
  111. break;
  112. }
  113. }
  114. $query = ShopOrder::mQuery()->like('order_name');
  115. $list = $query ->where('admin_id',$admin_id['id'])
  116. ->whereIn('status',$array)->order('id desc')->page(true, false, false, 10);
  117. foreach ($list['list'] as $k=>$v){
  118. $list['list'][$k]['goods_item']=ShopOrderItem::mk()->where('order_no',$list['list'][$k]['order_no'])->select();
  119. $list['list'][$k]['user_address']=ShopOrderSend::mk()->where('order_no',$list['list'][$k]['order_no'])->find();
  120. $list['list'][$k]['huanxinID'] = DataUser::mk()->where('id',$v['uuid'])->value('huanxinID');
  121. }
  122. $this->success('店铺订单列表',$list);
  123. }
  124. /**
  125. * @Title ("订单详情")
  126. * @Method ("post")
  127. * @Param ("order_id",desc="订单id")
  128. * @return void
  129. * @throws \think\db\exception\DataNotFoundException
  130. * @throws \think\db\exception\DbException
  131. * @throws \think\db\exception\ModelNotFoundException
  132. */
  133. public function order_info(){
  134. $admin_id=$this->uuid();
  135. $order_id = strval(input('order_id'));
  136. $str_admin_id = strval($admin_id['id']);
  137. $arr = [
  138. 'admin_id' => $str_admin_id,
  139. 'id' => $order_id
  140. ];
  141. $list = ShopOrder::mk()->where($arr)->find();
  142. $list['time']=0;
  143. if($list['status']==2){
  144. $list['time'] = strtotime($list['create_at'])+30*60-time();
  145. /* if($list['list']['time']<=3){
  146. ShopOrder::mk()->where('id',$list['list']['id'])->save(['status'=>0]);
  147. }*/
  148. }
  149. $list['user']=DataUser::mk()->where('id',$list['uuid'])->field('nickname,phone')->find();
  150. $list['goods_item']=ShopOrderItem::mk()->where('order_no',$list['order_no'])->select();
  151. $list['user_address']=ShopOrderSend::mk()->where('order_no',$list['order_no'])->find();
  152. $list['user_info']=DataUser::mk()->where('id',$list['uuid'])->field('headimg,nickname')->find();
  153. $list['huanxinID'] = DataUser::mk()->where('id',$list['uuid'])->value('huanxinID');
  154. $this->success('店铺订单列表',$list);
  155. }
  156. /**
  157. * @Title ("退款订单列表")
  158. * @Method ("get")
  159. * @Param ("page",desc="页码")
  160. * @return void
  161. * @throws \think\db\exception\DataNotFoundException
  162. * @throws \think\db\exception\DbException
  163. * @throws \think\db\exception\ModelNotFoundException
  164. */
  165. public function refund_list(){
  166. $admin_id=$this->uuid();
  167. $status =[7,8];
  168. $query = ShopOrder::mQuery()->like('order_name');
  169. $list = $query ->where('admin_id',$admin_id['id'])
  170. ->where('refund_del',1)->where(function ($query) {
  171. $query->where('status', 'in', '7,8')->whereOr('refund_status',3);
  172. })->order('id desc')->page(true, false, false, 10);
  173. // $query->where(function ($query,$admin_id) {
  174. // $query->where('admin_id', $admin_id['id'])->whereor('id', 2);
  175. // })->whereOr(function ($query) {
  176. // $query->where('name', 'like', 'think')->whereOr('name', 'like', 'thinkphp');
  177. // })->select();
  178. foreach ($list['list'] as $k=>$v){
  179. $list['list'][$k]['goods_item']=ShopOrderItem::mk()->where('order_no',$list['list'][$k]['order_no'])->select();
  180. $list['list'][$k]['user_address']=ShopOrderSend::mk()->where('order_no',$list['list'][$k]['order_no'])->find();
  181. }
  182. $this->success('退款订单',$list);
  183. }
  184. /**
  185. * @Title ("退款操作接口")
  186. * @Method ("post")
  187. * @Param ("order_id",desc="订单id")
  188. * @Param ("type",desc="退款操作 type=1同意退款 type=2 不同意驳回")
  189. * @Param ("reason",desc="拒绝退款原因")
  190. * @return void
  191. * @throws \think\db\exception\DataNotFoundException
  192. * @throws \think\db\exception\DbException
  193. * @throws \think\db\exception\ModelNotFoundException
  194. */
  195. public function examine_refund(){
  196. $admnd_id=$this->uuid();
  197. $data = $this->_vali([
  198. 'order_id.require'=>'退款订单不能为空',
  199. 'type.require'=>'操作类型能为空',
  200. 'reason.default'=>'',
  201. ]);
  202. $info = ShopOrder::mk()->where(['id'=>$data['order_id'],'admin_id'=>$admnd_id['id'],'status'=>7])->find();
  203. // $pay_money = ShopOrderPay::mk()->where(['status' => 2, 'pay_no'=>$info['payment_trade']])->value('money');
  204. $pay_money = ShopOrderPay::mk()->where(['pay_no'=>$info['payment_trade']])->value('money');
  205. if(empty($info)){
  206. $this->error('订单信息有误');
  207. }
  208. else{
  209. // 退款操作
  210. if($data['type']==1){
  211. //同意退款
  212. if($info['payment_type']=='支付宝支付') {
  213. $result = json_decode($this->refund_order($info['payment_trade'], $info['refund_money']), true);
  214. }
  215. if($info['payment_type']=='微信支付') {
  216. $result = json_decode($this->wxrefund_order($info['payment_trade'], $info['refund_money'],$pay_money), true);
  217. }
  218. if($result) {
  219. ShopOrder::mk()->where(['id' => $data['order_id'], 'admin_id' => $admnd_id['id']])->save(['status' => 8, 'refund_status' => 2, 'dk_time' => date('Y-m-d H:i:s')]);
  220. $this->success('已同意退款,支付金额原路退回');
  221. }
  222. else{
  223. $this->error('管理平台微信账户余额不足,请联系管理员');
  224. }
  225. }
  226. //统一退货
  227. else {
  228. ShopOrder::mk()->where(['id'=>$data['order_id'],'admin_id'=>$admnd_id['id']])->save(['status' => 4,'refund_status'=>3,'refuse_reason'=>$data['reason'],'dk_time'=>date('Y-m-d H:i:s')]);
  229. //不同意退款
  230. $this->success('不同意退款');
  231. }
  232. }
  233. }
  234. public static function refund_order($pay_no,$money){
  235. $config = [
  236. 'app_id' => '2021003161685907',
  237. 'notify_url' => '',
  238. 'return_url' => '',
  239. 'ali_public_key' =>'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0+yqR2nQ7uZBHoHeeLspwvZcB/jgMyjAxkJk7Dm9IR5VhTTSXNQYmOOjs+g628G52xxHQ/Z1pPK3dFshqIBTQC0VrrTyWFhypb8veKeo5RFzgWKvl1awvOdf5r6qXM6b3OjaBYqiqvpLdpZdVkEY9rLOwh6LM8XKYE3CfM466KypxYBrUeXRmDhweWVScSuOJGuhmd1O2RI2TIHjosxG10v4/s3nfNZ+aGQ+UnASRZbJ0GyyFlqyJ+mZGyAJBahWI4YYG6ZJMp2YNNUAWeb++gVG1Zw+HYMG57C0W6PCZ0LvS454ZRyx72WP+nKi7LMj8fkintEPbOkRd3M/OF42gQIDAQAB',
  240. 'private_key' =>'MIIEogIBAAKCAQEA0+yqR2nQ7uZBHoHeeLspwvZcB/jgMyjAxkJk7Dm9IR5VhTTSXNQYmOOjs+g628G52xxHQ/Z1pPK3dFshqIBTQC0VrrTyWFhypb8veKeo5RFzgWKvl1awvOdf5r6qXM6b3OjaBYqiqvpLdpZdVkEY9rLOwh6LM8XKYE3CfM466KypxYBrUeXRmDhweWVScSuOJGuhmd1O2RI2TIHjosxG10v4/s3nfNZ+aGQ+UnASRZbJ0GyyFlqyJ+mZGyAJBahWI4YYG6ZJMp2YNNUAWeb++gVG1Zw+HYMG57C0W6PCZ0LvS454ZRyx72WP+nKi7LMj8fkintEPbOkRd3M/OF42gQIDAQABAoIBACIGS0hv6sWQXkAhpbBIjGnq19fH02cjUeAC5OUwV/crQZvDYUraGqDhW3UVAe4qakaNgbudpEG5Xk7mGr9M6xDQrDyCfK5GdRG7YknC0VEFvj+1sm9f0bxigXkwf3WrDkcnc2mUWo2M5fTCK3YfuXxSNPPhp4PGa7mOgn07NyYH1+Zt4YZO6fBiHSqsgJo8tevWtjvrnc0cg2cUpDWQ41oGQRwD8S6QprOyCTAmCIsNNhlM19ebeFxG+8v0T3YQ9sWEMkdIXReGhEQbOxVeorp9rmViEf/EsZHV9QAWcZk2fAMwSCeC3CIBeorNdAAVxLUHNQP6slPDCQeCtFeWhIkCgYEA6uX5QetZkGQoKHZ5MEQt6AhLN3dPPv8E28kAT9UZcqMASMjyICzRvAeUPDuBrdy7lkufMo4GLYF5sFII4seMmxeHZCB0zdsnqNpoosXQFsK1tR9Q08E5tety/y8VfuONnyHICIV8wEgFtcHxYwCP9itiYpaiFdMhiuWrlGie8gMCgYEA5vZa1WitoSEVvf4c9QBWcw1eBC1P+oVgTmhBaYNRx1X6WZbP7NEqiYjwZOnXprTq8Gd8jIOHkDBOhtve3THiY4tpa1g3Kni0d9RHshYRKa9YTnAqDL4f7D8QC1mH8hDq26FsPMkehGQixVa5CwpP7Tu3KBY0Xmm4CFUPDhIZMCsCgYBx2UzaGkuqpCCim+lY73Kgh4SNOZJ7Ifck32L7TnmrCj3VCS/xUEfHLpU2LFFKBzYUPkrGofd0jtCAGQKdh8IqWVkRunliXNn4CQO2ANI+ddjEFI2EVJ64AYoXDKcKfRfjDOh62NgCCeZalcl9BoS/938T8ZZVpaMYQwDKSXrgKQKBgBCXegcCshZ1Lf6sFqBzGcLCHxLlvm0cz8JSMwDFckaDoqx07RLyI8Almj9lnRxYutfyVzww5rgxADMn8Gargrvr8/LGL5BZg31oPo5Ij4sTEaDw5dRshBaQoTJviBiXpoeInSHwwMR5/RV4GWr1nrBILewvTCvMJHBUy/QS0MRpAoGAe8GMTvLMjgJPnBJK6+p6vNDrpsZTNDlMhSrGFyxskwCeLZpSBFejN12HVoDXuypeA2KO7j6DXR4VxDyS8P0hUlc+iE9IHklT+PMxIuR88x6rqAL/a3DO+QkfYSb0IODLM0UlAFCp6/k7Lt73lkF9sJ4JRP4Fw3R3ddskYu33CzI=',
  241. 'log' => [ // optional
  242. 'file' => './logs/alipay.log',
  243. 'level' => 'info', // 建议生产环境等级调整为 info,开发环境为 debug
  244. 'type' => 'single', // optional, 可选 daily.
  245. 'max_file' => 30, // optional, 当 type 为 daily 时有效,默认 30 天
  246. ],
  247. 'http' => [ // optional
  248. 'timeout' => 5.0,
  249. 'connect_timeout' => 5.0,
  250. // 更多配置项请参考 [Guzzle](https://guzzle-cn.readthedocs.io/zh_CN/latest/request-options.html)
  251. ],
  252. // 'mode' => 'dev', // optional,设置此参数,将进入沙箱模式
  253. ];
  254. try{
  255. $order = [
  256. 'out_trade_no' => $pay_no,
  257. 'refund_amount' => $money,
  258. ];
  259. Pay::alipay($config)->refund($order);
  260. return true;
  261. }
  262. catch(GatewayException $e){
  263. return false;
  264. }
  265. }
  266. public static function wxrefund_order($pay_no,$money,$pay_money){
  267. $config = [
  268. 'appid' => 'wxa5033cf91977e574', // APP APPID
  269. 'app_id' => 'wxa5033cf91977e574', // 公众号 APPID
  270. 'miniapp_id' => 'wxa5033cf91977e574', // 小程序 APPID
  271. 'mch_id' => '1634830915',
  272. 'key' => '7aa3fg0htful8nttb135rnusbvmeggbi',
  273. 'notify_url' => '',
  274. 'cert_client' => '/www/wwwroot/ship-expert.zhousi.hdlkeji.com/ship-expert/public/cert/apiclient_cert.pem', // optional, 退款,红包等情况时需要用到
  275. 'cert_key' => '/www/wwwroot/ship-expert.zhousi.hdlkeji.com/ship-expert/public/cert/apiclient_key.pem',// optional, 退款,红包等情况时需要用到
  276. 'log' => [ // optional
  277. 'file' => './logs/wechat.log',
  278. 'level' => 'info', // 建议生产环境等级调整为 info,开发环境为 debug
  279. 'type' => 'single', // optional, 可选 daily.
  280. 'max_file' => 30, // optional, 当 type 为 daily 时有效,默认 30 天
  281. ],
  282. 'http' => [ // optional
  283. 'timeout' => 5.0,
  284. 'connect_timeout' => 5.0,
  285. // 更多配置项请参考 [Guzzle](https://guzzle-cn.readthedocs.io/zh_CN/latest/request-options.html)
  286. ],
  287. // 'mode' => 'dev',
  288. ];
  289. try{
  290. $order = [
  291. 'out_trade_no' => $pay_no,
  292. 'out_refund_no' => time(),
  293. 'total_fee' => $pay_money*100,
  294. 'refund_fee' => $money*100,
  295. 'refund_desc' => '退款',
  296. ];
  297. Pay::wechat($config)->refund($order); // 返回 `Yansongda\Supports\Collection` 实例,可以通过 `$result->xxx` 访问服务器返回的数据。
  298. return true;
  299. }
  300. catch(GatewayException $e){
  301. return false;
  302. }
  303. }
  304. //测试退款
  305. ///data/api.business.Order/test_refund
  306. //PAY20230909143935695142
  307. //2023090914392620142
  308. public function test_refund(){
  309. $config = [
  310. 'appid' => 'wxa5033cf91977e574', // APP APPID
  311. 'app_id' => 'wxa5033cf91977e574', // 公众号 APPID
  312. 'miniapp_id' => 'wxa5033cf91977e574', // 小程序 APPID
  313. 'mch_id' => '1634830915',
  314. 'key' => '7aa3fg0htful8nttb135rnusbvmeggbi',
  315. 'notify_url' => '',
  316. 'cert_client' => '/www/wwwroot/ship-expert.zhousi.hdlkeji.com/ship-expert/public/cert/apiclient_cert.pem', // optional, 退款,红包等情况时需要用到
  317. 'cert_key' => '/www/wwwroot/ship-expert.zhousi.hdlkeji.com/ship-expert/public/cert/apiclient_key.pem',// optional, 退款,红包等情况时需要用到
  318. 'log' => [ // optional
  319. 'file' => './logs/wechat.log',
  320. 'level' => 'info', // 建议生产环境等级调整为 info,开发环境为 debug
  321. 'type' => 'single', // optional, 可选 daily.
  322. 'max_file' => 30, // optional, 当 type 为 daily 时有效,默认 30 天
  323. ],
  324. 'http' => [ // optional
  325. 'timeout' => 5.0,
  326. 'connect_timeout' => 5.0,
  327. // 更多配置项请参考 [Guzzle](https://guzzle-cn.readthedocs.io/zh_CN/latest/request-options.html)
  328. ],
  329. // 'mode' => 'dev',
  330. ];
  331. // return json($config);
  332. // 退款
  333. $order = [
  334. 'out_trade_no' => 'PAY20231123092418203179',
  335. 'out_refund_no' => time(),
  336. 'total_fee' => '1',
  337. 'refund_fee' => '1',
  338. 'refund_desc' => '退款',
  339. ];
  340. $payResult = Pay::wechat($config)->refund($order); // 返回 `Yansongda\Supports\Collection` 实例,可以通过 `$result->xxx` 访问服务器返回的数据。
  341. dump($payResult);die;
  342. }
  343. /**
  344. * @Title ("立即发货")
  345. * @Method ("post")
  346. * @Param ("order_no",desc="订单编号")
  347. * @Param ("send_number",desc="快递编号")
  348. * @Param ("company_name",desc="快递公司")
  349. * @Param ("name",desc="发货姓名")
  350. * @Param ("phone",desc="发货联系号码")
  351. * @Param ("province",desc="省")
  352. * @Param ("city",desc="城市")
  353. * @Param ("area",desc="地区")
  354. * @Param ("address",desc="详细地址")
  355. * @return void
  356. */
  357. public function order_send(){
  358. $admin_id = $this->uuid();
  359. $data = $this->_vali(
  360. [
  361. 'order_no.require'=>'订单信息不能为空',
  362. 'send_number.require'=>'快递单号不能为空',
  363. 'company_name.require'=>'快递公司名称不能为空',
  364. 'name.require'=>'发货商家联系人',
  365. 'phone.require'=>'商家联系号码',
  366. 'province.require'=>'发货商家省',
  367. 'city.require'=>'商家市',
  368. 'area.require'=>'发货商家区县',
  369. 'address.require'=>'详细地址'
  370. ]
  371. );
  372. $send_data = [
  373. 'send_number'=>$data['send_number'],
  374. 'company_name'=>$data['company_name'],
  375. 'send_datetime'=>date('Y-m-d H:i:s'),
  376. 'fa_name'=>$data['name'],
  377. 'fa_phone'=>$data['phone'],
  378. 'fa_address'=>$data['province'].$data['city'].$data['area'].$data['address'],
  379. 'shou_name'=>$data['name'],
  380. 'shou_phone'=>$data['phone'],
  381. 'shou_address'=>$data['province'].$data['city'].$data['area'].$data['address'],
  382. ];
  383. ShopOrderSend::mk()->where('order_no',$data['order_no'])->save($send_data);
  384. ShopOrder::mk()->where('order_no',$data['order_no'])->save(['status'=>5]);
  385. $this->success('发货成功');
  386. }
  387. /**
  388. * @Title ("删除退款记录")
  389. * @Method ("post")
  390. * @Param ("order_id",desc="订单id")
  391. * @return void
  392. */
  393. public function del_refund(){
  394. $this->uuid();
  395. $data = $this->_vali(
  396. [
  397. 'order_id.require'=>'订单id不能为空',
  398. ]
  399. );
  400. ShopOrder::mk()->where('id',$data['order_id'])->save(['refund_del'=>2]);
  401. $this->success('退款记录已清除');
  402. }
  403. public function uuid(){
  404. $purchase_model = new Common($this->app);
  405. $uuid = $purchase_model->uuid();
  406. return $uuid;
  407. }
  408. }