Order.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  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. ->whereIn('status',$status)->where('refund_del',1)->whereOr('refund_status',3)->order('id desc')->page(true, false, false, 10);
  171. foreach ($list['list'] as $k=>$v){
  172. $list['list'][$k]['goods_item']=ShopOrderItem::mk()->where('order_no',$list['list'][$k]['order_no'])->select();
  173. $list['list'][$k]['user_address']=ShopOrderSend::mk()->where('order_no',$list['list'][$k]['order_no'])->find();
  174. }
  175. $this->success('退款订单',$list);
  176. }
  177. /**
  178. * @Title ("退款操作接口")
  179. * @Method ("post")
  180. * @Param ("order_id",desc="订单id")
  181. * @Param ("type",desc="退款操作 type=1同意退款 type=2 不同意驳回")
  182. * @Param ("reason",desc="拒绝退款原因")
  183. * @return void
  184. * @throws \think\db\exception\DataNotFoundException
  185. * @throws \think\db\exception\DbException
  186. * @throws \think\db\exception\ModelNotFoundException
  187. */
  188. public function examine_refund(){
  189. $admnd_id=$this->uuid();
  190. $data = $this->_vali([
  191. 'order_id.require'=>'退款订单不能为空',
  192. 'type.require'=>'操作类型能为空',
  193. 'reason.default'=>'',
  194. ]);
  195. $info = ShopOrder::mk()->where(['id'=>$data['order_id'],'admin_id'=>$admnd_id['id'],'status'=>7])->find();
  196. $pay_money = ShopOrderPay::mk()->where(['status' => 2, 'pay_no'=>$info['payment_trade']])->value('money');
  197. if(empty($info)){
  198. $this->error('订单信息有误');
  199. }
  200. else{
  201. // 退款操作
  202. if($data['type']==1){
  203. //同意退款
  204. if($info['payment_type']=='支付宝支付') {
  205. $result = json_decode($this->refund_order($info['payment_trade'], $info['refund_money']), true);
  206. }
  207. if($info['payment_type']=='微信支付') {
  208. $result = json_decode($this->wxrefund_order($info['payment_trade'], $info['refund_money'],$pay_money), true);
  209. }
  210. if($result) {
  211. 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')]);
  212. $this->success('已同意退款,支付金额原路退回');
  213. }
  214. else{
  215. $this->error('金额未退回查看支付账户');
  216. }
  217. }
  218. //统一退货
  219. else {
  220. 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')]);
  221. //不同意退款
  222. $this->success('不同意退款');
  223. }
  224. }
  225. }
  226. public static function refund_order($pay_no,$money){
  227. $config = [
  228. 'app_id' => '2021003161685907',
  229. 'notify_url' => '',
  230. 'return_url' => '',
  231. 'ali_public_key' =>'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0+yqR2nQ7uZBHoHeeLspwvZcB/jgMyjAxkJk7Dm9IR5VhTTSXNQYmOOjs+g628G52xxHQ/Z1pPK3dFshqIBTQC0VrrTyWFhypb8veKeo5RFzgWKvl1awvOdf5r6qXM6b3OjaBYqiqvpLdpZdVkEY9rLOwh6LM8XKYE3CfM466KypxYBrUeXRmDhweWVScSuOJGuhmd1O2RI2TIHjosxG10v4/s3nfNZ+aGQ+UnASRZbJ0GyyFlqyJ+mZGyAJBahWI4YYG6ZJMp2YNNUAWeb++gVG1Zw+HYMG57C0W6PCZ0LvS454ZRyx72WP+nKi7LMj8fkintEPbOkRd3M/OF42gQIDAQAB',
  232. '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=',
  233. 'log' => [ // optional
  234. 'file' => './logs/alipay.log',
  235. 'level' => 'info', // 建议生产环境等级调整为 info,开发环境为 debug
  236. 'type' => 'single', // optional, 可选 daily.
  237. 'max_file' => 30, // optional, 当 type 为 daily 时有效,默认 30 天
  238. ],
  239. 'http' => [ // optional
  240. 'timeout' => 5.0,
  241. 'connect_timeout' => 5.0,
  242. // 更多配置项请参考 [Guzzle](https://guzzle-cn.readthedocs.io/zh_CN/latest/request-options.html)
  243. ],
  244. // 'mode' => 'dev', // optional,设置此参数,将进入沙箱模式
  245. ];
  246. try{
  247. $order = [
  248. 'out_trade_no' => $pay_no,
  249. 'refund_amount' => $money,
  250. ];
  251. Pay::alipay($config)->refund($order);
  252. return true;
  253. }
  254. catch(GatewayException $e){
  255. return false;
  256. }
  257. }
  258. public static function wxrefund_order($pay_no,$money,$pay_money){
  259. $config = [
  260. 'appid' => 'wxa5033cf91977e574', // APP APPID
  261. 'app_id' => 'wxa5033cf91977e574', // 公众号 APPID
  262. 'miniapp_id' => 'wxa5033cf91977e574', // 小程序 APPID
  263. 'mch_id' => '1634830915',
  264. 'key' => '7aa3fg0htful8nttb135rnusbvmeggbi',
  265. 'notify_url' => '',
  266. 'cert_client' => '/www/wwwroot/ship-expert.zhousi.hdlkeji.com/ship-expert/public/cert/apiclient_cert.pem', // optional, 退款,红包等情况时需要用到
  267. 'cert_key' => '/www/wwwroot/ship-expert.zhousi.hdlkeji.com/ship-expert/public/cert/apiclient_key.pem',// optional, 退款,红包等情况时需要用到
  268. 'log' => [ // optional
  269. 'file' => './logs/wechat.log',
  270. 'level' => 'info', // 建议生产环境等级调整为 info,开发环境为 debug
  271. 'type' => 'single', // optional, 可选 daily.
  272. 'max_file' => 30, // optional, 当 type 为 daily 时有效,默认 30 天
  273. ],
  274. 'http' => [ // optional
  275. 'timeout' => 5.0,
  276. 'connect_timeout' => 5.0,
  277. // 更多配置项请参考 [Guzzle](https://guzzle-cn.readthedocs.io/zh_CN/latest/request-options.html)
  278. ],
  279. // 'mode' => 'dev',
  280. ];
  281. try{
  282. $order = [
  283. 'out_trade_no' => $pay_no,
  284. 'out_refund_no' => time(),
  285. 'total_fee' => $pay_money*100,
  286. 'refund_fee' => $money*100,
  287. 'refund_desc' => '退款',
  288. ];
  289. Pay::wechat($config)->refund($order); // 返回 `Yansongda\Supports\Collection` 实例,可以通过 `$result->xxx` 访问服务器返回的数据。
  290. return true;
  291. }
  292. catch(GatewayException $e){
  293. return false;
  294. }
  295. }
  296. //测试退款
  297. ///data/api.business.Order/test_refund
  298. //PAY20230909143935695142
  299. //2023090914392620142
  300. public function test_refund(){
  301. $config = [
  302. 'appid' => 'wxa5033cf91977e574', // APP APPID
  303. 'app_id' => 'wxa5033cf91977e574', // 公众号 APPID
  304. 'miniapp_id' => 'wxa5033cf91977e574', // 小程序 APPID
  305. 'mch_id' => '1634830915',
  306. 'key' => '7aa3fg0htful8nttb135rnusbvmeggbi',
  307. 'notify_url' => '',
  308. 'cert_client' => '/www/wwwroot/ship-expert.zhousi.hdlkeji.com/ship-expert/public/cert/apiclient_cert.pem', // optional, 退款,红包等情况时需要用到
  309. 'cert_key' => '/www/wwwroot/ship-expert.zhousi.hdlkeji.com/ship-expert/public/cert/apiclient_key.pem',// optional, 退款,红包等情况时需要用到
  310. 'log' => [ // optional
  311. 'file' => './logs/wechat.log',
  312. 'level' => 'info', // 建议生产环境等级调整为 info,开发环境为 debug
  313. 'type' => 'single', // optional, 可选 daily.
  314. 'max_file' => 30, // optional, 当 type 为 daily 时有效,默认 30 天
  315. ],
  316. 'http' => [ // optional
  317. 'timeout' => 5.0,
  318. 'connect_timeout' => 5.0,
  319. // 更多配置项请参考 [Guzzle](https://guzzle-cn.readthedocs.io/zh_CN/latest/request-options.html)
  320. ],
  321. // 'mode' => 'dev',
  322. ];
  323. // return json($config);
  324. // 退款
  325. $order = [
  326. 'out_trade_no' => 'PAY20231123092418203179',
  327. 'out_refund_no' => time(),
  328. 'total_fee' => '1',
  329. 'refund_fee' => '1',
  330. 'refund_desc' => '退款',
  331. ];
  332. $payResult = Pay::wechat($config)->refund($order); // 返回 `Yansongda\Supports\Collection` 实例,可以通过 `$result->xxx` 访问服务器返回的数据。
  333. dump($payResult);die;
  334. }
  335. /**
  336. * @Title ("立即发货")
  337. * @Method ("post")
  338. * @Param ("order_no",desc="订单编号")
  339. * @Param ("send_number",desc="快递编号")
  340. * @Param ("company_name",desc="快递公司")
  341. * @Param ("name",desc="发货姓名")
  342. * @Param ("phone",desc="发货联系号码")
  343. * @Param ("province",desc="省")
  344. * @Param ("city",desc="城市")
  345. * @Param ("area",desc="地区")
  346. * @Param ("address",desc="详细地址")
  347. * @return void
  348. */
  349. public function order_send(){
  350. $admin_id = $this->uuid();
  351. $data = $this->_vali(
  352. [
  353. 'order_no.require'=>'订单信息不能为空',
  354. 'send_number.require'=>'快递单号不能为空',
  355. 'company_name.require'=>'快递公司名称不能为空',
  356. 'name.require'=>'发货商家联系人',
  357. 'phone.require'=>'商家联系号码',
  358. 'province.require'=>'发货商家省',
  359. 'city.require'=>'商家市',
  360. 'area.require'=>'发货商家区县',
  361. 'address.require'=>'详细地址'
  362. ]
  363. );
  364. $send_data = [
  365. 'send_number'=>$data['send_number'],
  366. 'company_name'=>$data['company_name'],
  367. 'send_datetime'=>date('Y-m-d H:i:s'),
  368. 'fa_name'=>$data['name'],
  369. 'fa_phone'=>$data['phone'],
  370. 'fa_address'=>$data['province'].$data['city'].$data['area'].$data['address'],
  371. 'shou_name'=>$data['name'],
  372. 'shou_phone'=>$data['phone'],
  373. 'shou_address'=>$data['province'].$data['city'].$data['area'].$data['address'],
  374. ];
  375. ShopOrderSend::mk()->where('order_no',$data['order_no'])->save($send_data);
  376. ShopOrder::mk()->where('order_no',$data['order_no'])->save(['status'=>5]);
  377. $this->success('发货成功');
  378. }
  379. /**
  380. * @Title ("删除退款记录")
  381. * @Method ("post")
  382. * @Param ("order_id",desc="订单id")
  383. * @return void
  384. */
  385. public function del_refund(){
  386. $this->uuid();
  387. $data = $this->_vali(
  388. [
  389. 'order_id.require'=>'订单id不能为空',
  390. ]
  391. );
  392. ShopOrder::mk()->where('id',$data['order_id'])->save(['refund_del'=>2]);
  393. $this->success('退款记录已清除');
  394. }
  395. public function uuid(){
  396. $purchase_model = new Common($this->app);
  397. $uuid = $purchase_model->uuid();
  398. return $uuid;
  399. }
  400. }