| | |
| | | public List<ViewStayTimeBean> getViewStayTimeAll(ViewStayTimeBean viewStayTime); |
| | | |
| | | // // 库位Map |
| | | @Select("select distinct row1 from asr_loc_mast order by row1 asc") |
| | | @Select("select distinct row1 from \"SOURCE\".\"asr_loc_mast\" order by row1 asc") |
| | | List<Integer> getViewLocRowTotal(); |
| | | |
| | | // 库位Map |
| | | @Select("select distinct bay1 from asr_loc_mast where row1=#{row1} order by bay1") |
| | | @Select("select distinct bay1 from \"SOURCE\".\"asr_loc_mast\" where row1=#{row1} order by bay1") |
| | | public List<String> getViewLocBayCount(@Param("row1") int row1); |
| | | |
| | | @Select("select distinct lev1 from asr_loc_mast where row1=#{row1} order by lev1 desc") |
| | | @Select("select distinct lev1 from \"SOURCE\".\"asr_loc_mast\" where row1=#{row1} order by lev1 desc") |
| | | public List<String> getViewLocLevCount(@Param("row1") int row1); |
| | | |
| | | @Select("select loc_no as locNo, bay1,loc_sts as locSts from asr_loc_mast where row1=#{row1} and lev1=#{lev1} order by bay1") |
| | | @Select("select loc_no as locNo, bay1,loc_sts as locSts from \"SOURCE\".\"asr_loc_mast\" where row1=#{row1} and lev1=#{lev1} order by bay1") |
| | | public List<ViewLocMapDto> getViewLocBays(@Param("row1") int row1, @Param("lev1") int lev1); |
| | | |
| | | //分页查询站点入出库次数统计 |
| | |
| | | @Select("select \n" + |
| | | "Min(wm.io_time) as node,\n" + |
| | | "isnull(count(1), 0) as val\n" + |
| | | "from asr_wrk_mast_log wm\n" + |
| | | "from \"SOURCE\".\"asr_wrk_mast_log\" wm\n" + |
| | | "where wm.wrk_sts = 5 \n" + |
| | | "and (wm.io_type = 1 OR wm.io_type = 54)\n" + |
| | | "and datediff(d, wm.io_time, getdate())<=7 \n" + |
| | |
| | | @Select("select\n" + |
| | | "Min(wm.io_time) as node,\n" + |
| | | "isnull(count(1), 0) as val\n" + |
| | | "from asr_wrk_mast_log wm\n" + |
| | | "from \"SOURCE\".\"asr_wrk_mast_log\" wm\n" + |
| | | "where 1=1\n" + |
| | | "and ((wm.wrk_sts = 15 AND wm.io_type = 101) OR (wm.wrk_sts = 14 AND wm.io_type = 103))\n" + |
| | | "and datediff(d, wm.io_time, getdate())<=7\n" + |
| | |
| | | List<Map<String, Object>> queryPakOutRep(); |
| | | |
| | | //曲线图 |
| | | @Select("select ymd,SUM(sto_qty) inqty,SUM(ret_qty) outqty from asr_sta_inout_view " |
| | | @Select("select ymd,SUM(sto_qty) inqty,SUM(ret_qty) outqty from \"SOURCE\".\"asr_sta_inout_view\" " |
| | | + "where ymd>CONVERT(char(10), DATEADD(DAY,-12,GETDATE()), 120) group by ymd order by ymd") |
| | | public List<WorkChartAxis> getChartAxis(); |
| | | |
| | | @Select("select * from asr_loc_use_view") |
| | | @Select("select * from \"SOURCE\".\"asr_loc_use_view\" ") |
| | | LocChartPie getLocUseRate(); |
| | | |
| | | @Select("select count(1) as totalWrk from asr_wrk_mast_log where crn_no = #{crnNo}") |
| | | @Select("select count(1) as totalWrk from \"SOURCE\".\"asr_wrk_mast_log\" where crn_no = #{crnNo}") |
| | | Integer getTotalWrkByCrnId(Integer crnNo); |
| | | |
| | | @Select("select count(1) as totalLoc from asr_loc_mast") |
| | | @Select("select count(1) as totalLoc from \"SOURCE\".\"asr_loc_mast\"") |
| | | Integer getTotalLocByCrnId(); |
| | | |
| | | } |