Index.php 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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. $this->success('成功',$list);
  63. }
  64. /**
  65. * @title 全县快递量
  66. * @desc 全县快递量
  67. * @url /api/Index/CountyExpress
  68. * @method POST
  69. * @tag 基础
  70. */
  71. public function CountyExpress(){
  72. $date = date('Y-m-d');
  73. $list = Db::name('system_values')->where('date','lt',$date)->group('date')->limit(12)->order('date asc')->column('date');
  74. $arr = array();
  75. foreach ($list as &$v){
  76. $array['date'] =$v;
  77. $array['value']= Db::name('system_values')->where('date',$v)->where('name','总签收')->sum('value') ? : 0;
  78. array_push($arr,$array);
  79. }
  80. $this->success('成功',$arr);
  81. }
  82. /**
  83. * @title 截止昨日年度快递总量/昨日快递总量
  84. * @desc 截止昨日年度快递总量/昨日快递总量
  85. * @url /api/Index/YesterDayOrBeforeExpressTotal
  86. * @method POST
  87. * @tag 基础
  88. *
  89. * @param name:type type:int require:0 default:1 desc:1:截止昨日年度快递总量2:昨日快递总量
  90. */
  91. public function YesterDayOrBeforeExpressTotal(){
  92. $type = input('type',1);
  93. if ($type==1){
  94. $start = date('Y-01-01'); //当年开始日期
  95. $end = date("Y-m-d",strtotime("-1 day")); //昨天日期
  96. }else{
  97. $start = date("Y-m-d",strtotime("-1 day")); //昨天日期
  98. $end = date("Y-m-d",strtotime("-1 day")); //昨天日期
  99. }
  100. $kd = Db::name('system_kd')->field('id,name')->select();
  101. foreach ($kd as &$v){
  102. if (in_array($v['name'],['中通','申通'])){
  103. $v['value'] = Db::name('system_values2')
  104. ->whereBetween('date',[$start,$end])
  105. ->where('name',$v['name'])
  106. ->sum('value') ? : 0;
  107. }else{
  108. $value = Db::name('system_values')
  109. ->whereBetween('date',[$start,$end])
  110. ->where('name',$v['name'])
  111. ->sum('value') ? : 0;
  112. $value2 = Db::name('system_values2')
  113. ->whereBetween('date',[$start,$end])
  114. ->where('name',$v['name'])
  115. ->sum('value') ? : 0;
  116. $v['value'] = floatval(bcadd($value,$value2));
  117. }
  118. }
  119. $total = array_sum(array_column($kd,'value'));
  120. $list = arraySort($kd,'value',SORT_DESC);
  121. $this->success('成功',['total'=>$total,'list'=>$list]);
  122. }
  123. /**
  124. * @title 今日数据
  125. * @desc 今日数据
  126. * @url /api/Index/ThisDayData
  127. * @method POST
  128. * @tag 基础
  129. */
  130. public function ThisDayData(){
  131. $total = Db::name('system_day_fake')
  132. ->where('date',date('Y-m-d'))
  133. ->sum('value') ? : 0;
  134. $list = Db::name('system_day_fake')
  135. ->where('date',date('Y-m-d'))
  136. ->field('name,value')
  137. ->order('value desc')
  138. ->select();
  139. $this->success('成功',compact('total','list'));
  140. }
  141. /**
  142. * @title 查询页面数据
  143. * @desc 查询页面数据
  144. * @url /api/Index/SellDate
  145. * @method POST
  146. * @tag 基础
  147. *
  148. * @param name:name type:string require:0 default: desc:站点名称
  149. * @param name:town_name type:string require:0 default: desc:乡镇名称
  150. * @param name:date type:string require:0 default: desc:日期
  151. * @param name:page type:int require:0 default:1 desc:
  152. * @param name:limit type:int require:0 default:10 desc:
  153. */
  154. public function SellDate(){
  155. $name = input('name'); //站点名称
  156. $town_name = input('town_name'); //乡镇名称
  157. $date = input('date'); //日期
  158. $Nowpage = input('page',1);
  159. $limits = input("limit",10);
  160. $count = Db::name('system_site')->alias('a')
  161. ->leftJoin('system_towns b','a.towns_id=b.id')
  162. ->field('a.id,a.code,a.name,b.name as towns_name')
  163. ->where('a.is_del',1)
  164. ->when($name,function($query) use ($name){
  165. $query->whereLike('a.name','%'.$name.'%');
  166. })
  167. ->when($town_name,function($query) use ($town_name){
  168. $query->whereLike('b.name','%'.$town_name.'%');
  169. })
  170. ->count();
  171. $list = Db::name('system_site')->alias('a')
  172. ->leftJoin('system_towns b','a.towns_id=b.id')
  173. ->field('a.id,a.code,a.name,b.name as towns_name')
  174. ->where('a.is_del',1)
  175. ->when($name,function($query) use ($name){
  176. $query->whereLike('a.name','%'.$name.'%');
  177. })
  178. ->when($town_name,function($query) use ($town_name){
  179. $query->whereLike('b.name','%'.$town_name.'%');
  180. })
  181. ->order('a.id asc')
  182. ->page($Nowpage,$limits)
  183. ->select();
  184. $kd = Db::name('system_kd')->field('name')->select();
  185. $kd = array_merge([['name' => '总签收']],$kd);
  186. foreach ($list as &$v){
  187. foreach ($kd as &$a){
  188. $v[$a['name']] = Db::name('system_values')
  189. ->where('site_id',$v['id'])
  190. ->when($date,function($query) use ($date){
  191. $query->where('date',$date);
  192. })
  193. ->where('name',$a['name'])
  194. ->sum('value') ? : 0;
  195. }
  196. }
  197. $this->success('成功',['count'=>$count,'list'=>$list,'kd'=>$kd]);
  198. }
  199. /**
  200. * @title 查询页面数据
  201. * @desc 查询页面数据
  202. * @url /api/Index/SellDate
  203. * @method POST
  204. * @tag 基础
  205. *
  206. * @param name:name type:string require:0 default: desc:站点名称
  207. * @param name:town_name type:string require:0 default: desc:乡镇名称
  208. * @param name:date type:string require:0 default: desc:日期
  209. * @param name:page type:int require:0 default:1 desc:
  210. * @param name:limit type:int require:0 default:10 desc:
  211. */
  212. public function SellDate2(){
  213. $name = input('name'); //站点名称
  214. $town_name = input('town_name'); //乡镇名称
  215. $date = input('date'); //日期
  216. $Nowpage = input('page',1);
  217. $limits = input("limit",10);
  218. $list = SiteModel::alias('a')
  219. ->leftJoin('system_towns b','a.towns_id=b.id')
  220. ->field('a.id,a.code,a.name,b.name as towns_name')
  221. ->with(['kd'=>function($query) use ($date){
  222. $query->group('name')->field('id,site_id,name,value,date');
  223. }])
  224. ->order('a.id asc')
  225. ->page($Nowpage,$limits)
  226. ->select();
  227. dump($list);die;
  228. $kd = Db::name('system_kd')->field('name')->select();
  229. $kd = array_merge([['name' => '总签收']],$kd);
  230. }
  231. }