Index.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  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'] ='10';
  65. }
  66. if ($v['name']=='宫里镇'){
  67. $v['value'] = '5';
  68. }
  69. if ($v['name']=='流曲镇'){
  70. $v['value'] = '15';
  71. }
  72. }
  73. $this->success('成功',$list);
  74. }
  75. /**
  76. * @title 全县快递量
  77. * @desc 全县快递量
  78. * @url /api/Index/CountyExpress
  79. * @method POST
  80. * @tag 基础
  81. */
  82. public function CountyExpress(){
  83. $month = monthpast();
  84. $arr = array();
  85. $no_array = ['中通','申通','总签收'];
  86. foreach ($month as &$v){
  87. $array['date'] =$v;
  88. $value1 = Db::name('system_values')
  89. ->whereRaw("date_format(date,'%Y-%m')='".$v."'")
  90. ->whereNotIn('name',$no_array)
  91. ->sum('value') ? : 0;
  92. $value2 = Db::name('system_values2')
  93. ->whereRaw("date_format(date,'%Y-%m')='".$v."'")
  94. ->sum('value') ? : 0;
  95. $array['value'] = floatval(bcadd($value1,$value2));
  96. array_push($arr,$array);
  97. }
  98. $arr = arraySort($arr,'date',SORT_ASC);
  99. $this->success('成功',$arr);
  100. }
  101. /**
  102. * @title 全县快递量
  103. * @desc 全县快递量
  104. * @url /api/Index/CountyExpress
  105. * @method POST
  106. * @tag 基础
  107. */
  108. public function CountyExpress2(){
  109. $date = date('Y-m-d');
  110. $list = Db::name('system_values')->where('date','lt',$date)
  111. ->group('date')->limit(12)
  112. ->order('date asc')
  113. ->column('date');
  114. $arr = array();
  115. foreach ($list as &$v){
  116. $array['date'] =$v;
  117. $array['value']= Db::name('system_values')->where('date',$v)->where('name','总签收')->sum('value') ? : 0;
  118. array_push($arr,$array);
  119. }
  120. $this->success('成功',$arr);
  121. }
  122. /**
  123. * @title 截止昨日年度快递总量/昨日快递总量
  124. * @desc 截止昨日年度快递总量/昨日快递总量
  125. * @url /api/Index/YesterDayOrBeforeExpressTotal
  126. * @method POST
  127. * @tag 基础
  128. *
  129. * @param name:type type:int require:0 default:1 desc:1:截止昨日年度快递总量2:昨日快递总量
  130. */
  131. public function YesterDayOrBeforeExpressTotal(){
  132. $type = input('type',1);
  133. if ($type==1){
  134. $start = date('Y-01-01'); //当年开始日期
  135. $end = date("Y-m-d",strtotime("-1 day")); //昨天日期
  136. }else{
  137. $start = date("Y-m-d",strtotime("-1 day")); //昨天日期
  138. $end = date("Y-m-d",strtotime("-1 day")); //昨天日期
  139. }
  140. $kd = Db::name('system_kd')->field('id,name')->select();
  141. foreach ($kd as &$v){
  142. if (in_array($v['name'],['中通','申通'])){
  143. $v['value'] = Db::name('system_values2')
  144. ->whereBetween('date',[$start,$end])
  145. ->where('name',$v['name'])
  146. ->sum('value') ? : 0;
  147. }else{
  148. $value = Db::name('system_values')
  149. ->whereBetween('date',[$start,$end])
  150. ->where('name',$v['name'])
  151. ->sum('value') ? : 0;
  152. $value2 = Db::name('system_values2')
  153. ->whereBetween('date',[$start,$end])
  154. ->where('name',$v['name'])
  155. ->sum('value') ? : 0;
  156. $v['value'] = floatval(bcadd($value,$value2));
  157. }
  158. }
  159. $total = array_sum(array_column($kd,'value'));
  160. $list = arraySort($kd,'value',SORT_DESC);
  161. $this->success('成功',['total'=>$total,'list'=>$list]);
  162. }
  163. /**
  164. * @title 今日数据
  165. * @desc 今日数据
  166. * @url /api/Index/ThisDayData
  167. * @method POST
  168. * @tag 基础
  169. */
  170. public function ThisDayData(){
  171. $total = Db::name('system_day_fake')
  172. ->where('date',date('Y-m-d'))
  173. ->sum('value') ? : 0;
  174. $list = Db::name('system_day_fake')
  175. ->where('date',date('Y-m-d'))
  176. ->field('name,value')
  177. ->order('value desc')
  178. ->select();
  179. $this->success('成功',compact('total','list'));
  180. }
  181. /**
  182. * @title 查询页面数据
  183. * @desc 查询页面数据
  184. * @url /api/Index/SellDate2
  185. * @method POST
  186. * @tag 基础
  187. *
  188. * @param name:name type:string require:0 default: desc:站点名称
  189. * @param name:town_name type:string require:0 default: desc:乡镇名称
  190. * @param name:date type:string require:0 default: desc:日期
  191. * @param name:page type:int require:0 default:1 desc:
  192. * @param name:limit type:int require:0 default:10 desc:
  193. */
  194. public function SellDate2(){
  195. $name = input('name'); //站点名称
  196. $town_name = input('town_name'); //乡镇名称
  197. $date = input('date'); //日期
  198. $Nowpage = input('page',1);
  199. $limits = input("limit",10);
  200. $count = Db::name('system_site')->alias('a')
  201. ->leftJoin('system_towns b','a.towns_id=b.id')
  202. ->field('a.id,a.code,a.name,b.name as towns_name')
  203. ->where('a.is_del',1)
  204. ->when($name,function($query) use ($name){
  205. $query->whereLike('a.name','%'.$name.'%');
  206. })
  207. ->when($town_name,function($query) use ($town_name){
  208. $query->whereLike('b.name','%'.$town_name.'%');
  209. })
  210. ->count();
  211. $list = Db::name('system_site')->alias('a')
  212. ->leftJoin('system_towns b','a.towns_id=b.id')
  213. ->field('a.id,a.code,a.name,b.name as towns_name')
  214. ->where('a.is_del',1)
  215. ->when($name,function($query) use ($name){
  216. $query->whereLike('a.name','%'.$name.'%');
  217. })
  218. ->when($town_name,function($query) use ($town_name){
  219. $query->whereLike('b.name','%'.$town_name.'%');
  220. })
  221. ->order('a.id asc')
  222. ->page($Nowpage,$limits)
  223. ->select();
  224. $kd = Db::name('system_kd')->field('name')->select();
  225. $kd = array_merge([['name' => '总签收']],$kd);
  226. foreach ($list as &$v){
  227. foreach ($kd as &$a){
  228. $v[$a['name']] = Db::name('system_values')
  229. ->where('site_id',$v['id'])
  230. ->when($date,function($query) use ($date){
  231. $query->where('date',$date);
  232. })
  233. ->where('name',$a['name'])
  234. ->sum('value') ? : 0;
  235. }
  236. }
  237. $this->success('成功',['count'=>$count,'list'=>$list,'kd'=>$kd]);
  238. }
  239. /**
  240. * @title 查询页面数据
  241. * @desc 查询页面数据
  242. * @url /api/Index/SellDate
  243. * @method POST
  244. * @tag 基础
  245. *
  246. * @param name:name type:string require:0 default: desc:站点名称
  247. * @param name:town_name type:string require:0 default: desc:乡镇名称
  248. * @param name:date type:string require:0 default: desc:日期
  249. * @param name:page type:int require:0 default:1 desc:
  250. * @param name:limit type:int require:0 default:10 desc:
  251. */
  252. public function SellDate(){
  253. $name = input('name'); //站点名称
  254. $town_name = input('town_name'); //乡镇名称
  255. $date = input('date'); //日期
  256. $Nowpage = input('page',1);
  257. $limits = input("limit",10);
  258. $count = SiteModel::alias('a')
  259. ->leftJoin('system_towns b','a.towns_id=b.id')
  260. ->when($name,function($query) use ($name){
  261. $query->whereLike('a.name','%'.$name.'%');
  262. })
  263. ->when($town_name,function($query) use ($town_name){
  264. $query->whereLike('b.name','%'.$town_name.'%');
  265. })
  266. ->where('a.is_del',1)
  267. ->where('b.is_del',1)
  268. ->count();
  269. $list = SiteModel::alias('a')
  270. ->leftJoin('system_towns b','a.towns_id=b.id')
  271. ->when($name,function($query) use ($name){
  272. $query->whereLike('a.name','%'.$name.'%');
  273. })
  274. ->when($town_name,function($query) use ($town_name){
  275. $query->whereLike('b.name','%'.$town_name.'%');
  276. })
  277. ->field('a.id,a.code,a.name,b.name as towns_name')
  278. ->with(['kd'=>function($query) use ($date){
  279. $query->when($date,function ($q) use ($date){
  280. $q->where('date',$date);
  281. })
  282. ->group('site_id,name')
  283. ->order('id asc')
  284. ->field('id,site_id,name,sum(value) as value');
  285. }])
  286. ->where('a.is_del',1)
  287. ->where('b.is_del',1)
  288. ->order('a.id asc')
  289. ->page($Nowpage,$limits)
  290. ->select();
  291. $kd = Db::name('system_kd')->field('name')->select();
  292. $kd = array_merge([['name' => '总签收']],$kd);
  293. foreach ($list as &$v) {
  294. $kdarray = array();
  295. foreach ($v['kd'] as &$a){
  296. $kdarray[$a['name']] = $a['value'];
  297. }
  298. foreach ($kd as $key=>$b){
  299. if (empty($kdarray)){
  300. $v[$b['name']] = 0;
  301. }else{
  302. $v[$b['name']] = isset($kdarray[$b['name']]) ? (int)$kdarray[$b['name']] : 0;
  303. }
  304. }
  305. unset($v['kd']);
  306. }
  307. $this->success('成功',['count'=>$count,'list'=>$list,'kd'=>$kd]);
  308. }
  309. }