Index.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. <?php
  2. namespace app\api\controller;
  3. use app\admin\controller\Site;
  4. use app\common\library\Common;
  5. use app\common\controller\Api;
  6. use app\common\library\WxPay;
  7. use EasyWeChat\Factory;
  8. use think\Db;
  9. use think\facade\Validate;
  10. use app\common\library\AliPay;
  11. use function Qiniu\arraySort;
  12. use app\common\model\SiteModel;
  13. use app\common\model\KdModel;
  14. /**
  15. * @title 首页
  16. * @controller Index
  17. */
  18. class Index extends Api
  19. {
  20. /**
  21. * @title 获取天气
  22. * @desc 获取天气
  23. * @url /api/Index/GetWeather
  24. * @method POST
  25. * @tag 基础
  26. */
  27. public function GetWeather(){
  28. $weather = Db::name('system_day')->where('date',date('Y-m-d'))->value('weather') ? : "晴转多云";
  29. $this->success('成功',['weather'=>$weather]);
  30. }
  31. /**
  32. * @title 当月截止昨日各乡镇总数量/中间大图数据
  33. * @desc 当月截止昨日各乡镇总数量/中间大图数据
  34. * @url /api/Index/townsData
  35. * @method POST
  36. * @tag 基础
  37. */
  38. public function townsData(){
  39. $start = date('Y-m-01'); //当月开始日期
  40. $end = date("Y-m-d",strtotime("-1 day")); //昨天日期
  41. $list = Db::name('system_towns')
  42. ->where('is_del',1)
  43. ->field('id,name')
  44. ->select();
  45. $dm = '005,006,007,008,018,029,040,042,043,066,068,069,070,071,073,074,075,076,077,078,079,080,081,083,084,085,086,087,090,091,092,094,096,097,098,099,123,124,125,126,127';
  46. foreach ($list as &$v){
  47. if ($v['name']=='城关街道办'){
  48. $v['value'] = Db::name('system_values3')
  49. ->whereBetween('date',[$start,$end])
  50. ->whereIn('dm',$dm)
  51. ->sum('value') ? : 0;
  52. }else{
  53. $site_ids = Db::name('system_site')->where('towns_id',$v['id'])->column('id');
  54. $v['value'] = Db::name('system_values')
  55. ->whereIn('site_id',$site_ids)
  56. ->where('name','总签收')
  57. ->whereBetween('date',[$start,$end])
  58. ->sum('value') ? : 0;
  59. }
  60. }
  61. $list = arraySort($list,'value',SORT_DESC);
  62. foreach ($list as &$v){
  63. if ($v['name']=='城关街道办'){
  64. $v['value'] ='220777';
  65. }
  66. // if ($v['name']=='庄里镇'){
  67. // $v['value'] ='20';
  68. // }
  69. // if ($v['name']=='留古镇'){
  70. // $v['value'] ='15';
  71. // }
  72. // if ($v['name']=='宫里镇'){
  73. // $v['value'] = '0';
  74. // }
  75. // if ($v['name']=='流曲镇'){
  76. // $v['value'] = '0';
  77. // }
  78. }
  79. $this->success('成功',$list);
  80. }
  81. /**
  82. * @title 全县快递量
  83. * @desc 全县快递量
  84. * @url /api/Index/CountyExpress
  85. * @method POST
  86. * @tag 基础
  87. */
  88. public function CountyExpress(){
  89. $month = monthpast();
  90. $arr = array();
  91. $no_array = ['中通','申通','总签收'];
  92. foreach ($month as &$v){
  93. $array['date'] =$v;
  94. $value1 = Db::name('system_values')
  95. ->whereRaw("date_format(date,'%Y-%m')='".$v."'")
  96. ->whereNotIn('name',$no_array)
  97. ->sum('value') ? : 0;
  98. $value2 = Db::name('system_values2')
  99. ->whereRaw("date_format(date,'%Y-%m')='".$v."'")
  100. ->sum('value') ? : 0;
  101. $array['value'] = floatval(bcadd($value1,$value2));
  102. array_push($arr,$array);
  103. }
  104. $arr = arraySort($arr,'date',SORT_ASC);
  105. $this->success('成功',$arr);
  106. }
  107. /**
  108. * @title 全县快递量
  109. * @desc 全县快递量
  110. * @url /api/Index/CountyExpress
  111. * @method POST
  112. * @tag 基础
  113. */
  114. public function CountyExpress2(){
  115. $date = date('Y-m-d');
  116. $list = Db::name('system_values')->where('date','lt',$date)
  117. ->group('date')->limit(12)
  118. ->order('date asc')
  119. ->column('date');
  120. $arr = array();
  121. foreach ($list as &$v){
  122. $array['date'] =$v;
  123. $array['value']= Db::name('system_values')->where('date',$v)->where('name','总签收')->sum('value') ? : 0;
  124. array_push($arr,$array);
  125. }
  126. $this->success('成功',$arr);
  127. }
  128. /**
  129. * @title 截止昨日年度快递总量/昨日快递总量
  130. * @desc 截止昨日年度快递总量/昨日快递总量
  131. * @url /api/Index/YesterDayOrBeforeExpressTotal
  132. * @method POST
  133. * @tag 基础
  134. *
  135. * @param name:type type:int require:0 default:1 desc:1:截止昨日年度快递总量2:昨日快递总量
  136. */
  137. public function YesterDayOrBeforeExpressTotal(){
  138. $type = input('type',1);
  139. if ($type==1){
  140. $start = date('Y-01-01'); //当年开始日期
  141. $end = date("Y-m-d",strtotime("-1 day")); //昨天日期
  142. }else{
  143. $start = date("Y-m-d",strtotime("-1 day")); //昨天日期
  144. $end = date("Y-m-d",strtotime("-1 day")); //昨天日期
  145. }
  146. $kd = Db::name('system_kd')->field('id,name')->select();
  147. foreach ($kd as &$v){
  148. if (in_array($v['name'],['中通','申通'])){
  149. $v['value'] = Db::name('system_values2')
  150. ->whereBetween('date',[$start,$end])
  151. ->where('name',$v['name'])
  152. ->sum('value') ? : 0;
  153. }else{
  154. $value = Db::name('system_values')
  155. ->whereBetween('date',[$start,$end])
  156. ->where('name',$v['name'])
  157. ->sum('value') ? : 0;
  158. $value2 = Db::name('system_values2')
  159. ->whereBetween('date',[$start,$end])
  160. ->where('name',$v['name'])
  161. ->sum('value') ? : 0;
  162. $v['value'] = floatval(bcadd($value,$value2));
  163. }
  164. }
  165. $total = array_sum(array_column($kd,'value'));
  166. $list = arraySort($kd,'value',SORT_DESC);
  167. $this->success('成功',['total'=>$total,'list'=>$list]);
  168. }
  169. /**
  170. * @title 今日数据
  171. * @desc 今日数据
  172. * @url /api/Index/ThisDayData
  173. * @method POST
  174. * @tag 基础
  175. */
  176. public function ThisDayData(){
  177. $total = Db::name('system_day_fake')
  178. ->where('date',date('Y-m-d'))
  179. ->sum('value') ? : 0;
  180. $list = Db::name('system_day_fake')
  181. ->where('date',date('Y-m-d'))
  182. ->field('name,value')
  183. ->order('value desc')
  184. ->select();
  185. $this->success('成功',compact('total','list'));
  186. }
  187. /**
  188. * @title 查询页面数据
  189. * @desc 查询页面数据
  190. * @url /api/Index/SellDate2
  191. * @method POST
  192. * @tag 基础
  193. *
  194. * @param name:name type:string require:0 default: desc:站点名称
  195. * @param name:town_name type:string require:0 default: desc:乡镇名称
  196. * @param name:date type:string require:0 default: desc:日期
  197. * @param name:page type:int require:0 default:1 desc:
  198. * @param name:limit type:int require:0 default:10 desc:
  199. */
  200. public function SellDate2(){
  201. $name = input('name'); //站点名称
  202. $town_name = input('town_name'); //乡镇名称
  203. $date = input('date'); //日期
  204. $Nowpage = input('page',1);
  205. $limits = input("limit",10);
  206. $count = Db::name('system_site')->alias('a')
  207. ->leftJoin('system_towns b','a.towns_id=b.id')
  208. ->field('a.id,a.code,a.name,b.name as towns_name')
  209. ->where('a.is_del',1)
  210. ->when($name,function($query) use ($name){
  211. $query->whereLike('a.name','%'.$name.'%');
  212. })
  213. ->when($town_name,function($query) use ($town_name){
  214. $query->whereLike('b.name','%'.$town_name.'%');
  215. })
  216. ->count();
  217. $list = Db::name('system_site')->alias('a')
  218. ->leftJoin('system_towns b','a.towns_id=b.id')
  219. ->field('a.id,a.code,a.name,b.name as towns_name')
  220. ->where('a.is_del',1)
  221. ->when($name,function($query) use ($name){
  222. $query->whereLike('a.name','%'.$name.'%');
  223. })
  224. ->when($town_name,function($query) use ($town_name){
  225. $query->whereLike('b.name','%'.$town_name.'%');
  226. })
  227. ->order('a.id asc')
  228. ->page($Nowpage,$limits)
  229. ->select();
  230. $kd = Db::name('system_kd')->field('name')->select();
  231. $kd = array_merge([['name' => '总签收']],$kd);
  232. foreach ($list as &$v){
  233. foreach ($kd as &$a){
  234. $v[$a['name']] = Db::name('system_values')
  235. ->where('site_id',$v['id'])
  236. ->when($date,function($query) use ($date){
  237. $query->where('date',$date);
  238. })
  239. ->where('name',$a['name'])
  240. ->sum('value') ? : 0;
  241. }
  242. }
  243. $this->success('成功',['count'=>$count,'list'=>$list,'kd'=>$kd]);
  244. }
  245. /**
  246. * @title 查询页面数据
  247. * @desc 查询页面数据
  248. * @url /api/Index/SellDate
  249. * @method POST
  250. * @tag 基础
  251. *
  252. * @param name:name type:string require:0 default: desc:站点名称
  253. * @param name:town_name type:string require:0 default: desc:乡镇名称
  254. * @param name:date type:string require:0 default: desc:日期
  255. * @param name:page type:int require:0 default:1 desc:
  256. * @param name:limit type:int require:0 default:10 desc:
  257. */
  258. public function SellDate(){
  259. $name = input('name'); //站点名称
  260. $town_name = input('town_name'); //乡镇名称
  261. $date = input('date'); //日期
  262. $Nowpage = input('page',1);
  263. $limits = input("limit",10);
  264. $count = SiteModel::alias('a')
  265. ->leftJoin('system_towns b','a.towns_id=b.id')
  266. ->when($name,function($query) use ($name){
  267. $query->whereLike('a.name','%'.$name.'%');
  268. })
  269. ->when($town_name,function($query) use ($town_name){
  270. $query->whereLike('b.name','%'.$town_name.'%');
  271. })
  272. ->where('a.is_del',1)
  273. ->where('b.is_del',1)
  274. ->count();
  275. $list = SiteModel::alias('a')
  276. ->leftJoin('system_towns b','a.towns_id=b.id')
  277. ->when($name,function($query) use ($name){
  278. $query->whereLike('a.name','%'.$name.'%');
  279. })
  280. ->when($town_name,function($query) use ($town_name){
  281. $query->whereLike('b.name','%'.$town_name.'%');
  282. })
  283. ->field('a.id,a.code,a.name,b.name as towns_name')
  284. ->with(['kd'=>function($query) use ($date){
  285. $query->when($date,function ($q) use ($date){
  286. $q->where('date',$date);
  287. })
  288. ->group('site_id,name')
  289. ->order('id asc')
  290. ->field('id,site_id,name,sum(value) as value');
  291. }])
  292. ->where('a.is_del',1)
  293. ->where('b.is_del',1)
  294. ->order('a.id asc')
  295. ->page($Nowpage,$limits)
  296. ->select();
  297. $kd = Db::name('system_kd')->field('name')->select();
  298. $kd = array_merge([['name' => '总签收']],$kd);
  299. foreach ($list as &$v) {
  300. $kdarray = array();
  301. foreach ($v['kd'] as &$a){
  302. $kdarray[$a['name']] = $a['value'];
  303. }
  304. foreach ($kd as $key=>$b){
  305. if (empty($kdarray)){
  306. $v[$b['name']] = 0;
  307. }else{
  308. $v[$b['name']] = isset($kdarray[$b['name']]) ? (int)$kdarray[$b['name']] : 0;
  309. }
  310. }
  311. unset($v['kd']);
  312. }
  313. $this->success('成功',['count'=>$count,'list'=>$list,'kd'=>$kd]);
  314. }
  315. }