Test.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\Area;
  5. use app\common\model\AreaApi;
  6. use app\common\service\ZopOrderService;
  7. /**
  8. * 测试接口
  9. */
  10. class Test extends Api
  11. {
  12. protected $noNeedLogin = ['*'];
  13. protected $noNeedRight = ['*'];
  14. /**
  15. * 测试方法
  16. *
  17. * @return void
  18. */
  19. public function index()
  20. {
  21. // common_log('aaa');
  22. // $data = array("key1", "key2", "key3", "key4", "key5", "key6", "key7", "key8", "key9", "key10", "key11", "key12", "key13", "key14", "key15", "key16");
  23. // dd(array_chunk($data, 5), array_column(array_chunk($data, 5), 0));
  24. // $params = [
  25. // 'channel' => '08-2278-ae1q-9999',
  26. // 'goodsId' => '982012220836',
  27. // 'resourceContents' => [
  28. // [
  29. // 'content' => 'aaa',
  30. // 'sort' => 1
  31. // ]
  32. // ]
  33. // ];
  34. // $result = ZopOrderService::resourceUpload($params);
  35. // dd($result);
  36. // $sum = 0;
  37. // $codes = ZopOrderService::PROVINCE_CODE;
  38. // // $code = 17;
  39. // foreach ($codes as $code => $name) {
  40. // $params = [
  41. // 'provinceCode' => $code
  42. // ];
  43. // $result = ZopOrderService::postInfo($params);
  44. // if ($result['code'] == 0) {
  45. // $data = $result['data'];
  46. // foreach ($data as $val) {
  47. // $val['code'] = $code;
  48. // AreaApi::create($val);
  49. // }
  50. // }
  51. // }
  52. // $provinces = Area::where('level', 1)->select();
  53. // $failIds = [];
  54. // foreach ($provinces as $province) {
  55. // $shortName = $province->shortname ?? '';
  56. // if (empty($shortName)) {
  57. // $failIds[] = $province->id;
  58. // continue;
  59. // }
  60. // // 查询省份对应的code
  61. // $areaApi = AreaApi::where('postProvinceName', $shortName)->find();
  62. // if (empty($areaApi)) {
  63. // $failIds[] = $province->id;
  64. // continue;
  65. // }
  66. // $province->post_code = $areaApi->postProvinceCode;
  67. // $province->num_code = $areaApi->numProvinceCode;
  68. // $province->save();
  69. // }
  70. // dd($failIds);
  71. // $cities = Area::where('level', 2)->select();
  72. // $failIds = [];
  73. // foreach ($cities as $city) {
  74. // $shortName = $city->shortname ?? '';
  75. // $pid = $city->pid ?? 0;
  76. // if (empty($shortName)) {
  77. // $failIds[] = $city->id;
  78. // continue;
  79. // }
  80. // $province = Area::where('id', $pid)->find();
  81. // if (empty($province)) {
  82. // $failIds[] = $city->id;
  83. // continue;
  84. // }
  85. // $postProvinceCode = $province->post_code ?? '';
  86. // // 查询省份对应的code
  87. // $areaApi = AreaApi::where([
  88. // 'postProvinceCode' => $postProvinceCode,
  89. // 'postCityName' => ['like', $shortName . '%']
  90. // ])->find();
  91. // if (empty($areaApi)) {
  92. // $failIds[] = $city->id;
  93. // continue;
  94. // }
  95. // $city->post_code = $areaApi->postCityCode;
  96. // $city->num_code = $areaApi->numCityCode;
  97. // $city->save();
  98. // }
  99. // $districts = Area::where('level', 3)->select();
  100. // $failIds = [];
  101. // foreach ($districts as $district) {
  102. // $shortName = $district->shortname ?? '';
  103. // $pid = $district->pid ?? 0;
  104. // if (empty($shortName)) {
  105. // $failIds[] = $district->id;
  106. // continue;
  107. // }
  108. // $city = Area::where('id', $pid)->find();
  109. // if (empty($city)) {
  110. // $failIds[] = $district->id;
  111. // continue;
  112. // }
  113. // $postCityCode = $city->post_code ?? '';
  114. // // 查询省份对应的code
  115. // $areaApi = AreaApi::where([
  116. // 'postCityCode' => $postCityCode,
  117. // 'postDistrictName' => ['like', $shortName . '%']
  118. // ])->find();
  119. // if (empty($areaApi)) {
  120. // $failIds[] = $district->id;
  121. // continue;
  122. // }
  123. // $district->post_code = $areaApi->postDistrictCode;
  124. // $district->save();
  125. // }
  126. // dd($failIds);
  127. }
  128. }