|
@@ -862,6 +862,23 @@ public class PrjAnnualbudgetController extends BaseController {
|
862
|
862
|
}
|
863
|
863
|
}
|
864
|
864
|
|
|
865
|
+ @ResponseBody
|
|
866
|
+ @RequestMapping(value = "/getshr",method = RequestMethod.GET)
|
|
867
|
+ public BaseResult getshr(@RequestParam Integer xmid,
|
|
868
|
+ @RequestParam String spzt){
|
|
869
|
+
|
|
870
|
+ Map<String, Object> paraMap1 = new HashMap<>();
|
|
871
|
+ paraMap1.put("xmid", xmid);
|
|
872
|
+ paraMap1.put("zt", spzt);
|
|
873
|
+ paraMap1.put("wc", "0");
|
|
874
|
+ List<PrjApproverecord> approveList = prjApproverecordService.getApproveByXmId(paraMap1);
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+ return BaseResult.failure("你不是当前项目审核人");
|
|
878
|
+ }
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
|
865
|
882
|
@ResponseBody
|
866
|
883
|
@RequestMapping(value = "/bathUpdate/{xmid}", method = RequestMethod.GET)
|
867
|
884
|
public Map<Object, Object> bathUpdate(Model model, @PathVariable Integer xmid, @RequestParam String spzt) {
|