Commit 7d6ec610bc09adce13b30cc95135e17bf89c805a
1 parent
e12399e3
班次车辆人员月报表
Showing
4 changed files
with
5 additions
and
5 deletions
src/main/java/com/bsth/controller/forms/ExportController.java
| ... | ... | @@ -152,8 +152,8 @@ public class ExportController { |
| 152 | 152 | mouldurl="mould/shiftuehiclemanth.xls"; |
| 153 | 153 | }else if(map.get("empnames").equals("售票员")){ |
| 154 | 154 | mouldurl="mould/shiftuehiclemanthspy.xls"; |
| 155 | - }else if(map.get("empnames").equals("路牌")){ | |
| 156 | - mouldurl="mould/shiftuehiclemanthlp.xls"; | |
| 155 | + }else if(map.get("empnames").equals("车辆自编号")){ | |
| 156 | + mouldurl="mould/shiftuehiclemanthclzbh.xls"; | |
| 157 | 157 | } |
| 158 | 158 | listI.add(resList.iterator()); |
| 159 | 159 | String path = this.getClass().getResource("/").getPath() + "static/pages/forms/"; | ... | ... |
src/main/java/com/bsth/service/forms/impl/FormsServiceImpl.java
| ... | ... | @@ -191,8 +191,8 @@ public class FormsServiceImpl implements FormsService { |
| 191 | 191 | shif.setjName(arg0.getString("j_name")); |
| 192 | 192 | }else if(empnames.equals("售票员")){ |
| 193 | 193 | shif.setjName(arg0.getString("s_name")==null ? "":arg0.getString("s_name")); |
| 194 | - }else if(empnames.equals("路牌")){ | |
| 195 | - shif.setjName(arg0.getString("lp_name")); | |
| 194 | + }else if(empnames.equals("车辆自编号")){ | |
| 195 | + shif.setjName(arg0.getString("cl_zbh")); | |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | 198 | shif.setJgh(arg0.getString("j_gh")); | ... | ... |
src/main/resources/static/pages/forms/mould/shiftuehiclemanthlp.xls renamed to src/main/resources/static/pages/forms/mould/shiftuehiclemanthclzbh.xls
No preview for this file type
src/main/resources/static/pages/mforms/shiftuehiclemanths/shiftuehiclemanth.html
| ... | ... | @@ -56,7 +56,7 @@ |
| 56 | 56 | <select class="form-control" style="width: 136px;" id='empnames'> |
| 57 | 57 | <option value="驾驶员">驾驶员</option> |
| 58 | 58 | <option value="售票员">售票员</option> |
| 59 | - <option value="路牌">路牌</option> | |
| 59 | + <option value="车辆自编号">车辆自编号</option> | |
| 60 | 60 | </select> |
| 61 | 61 | </div> |
| 62 | 62 | <div class="form-group"> | ... | ... |