gaodd %!s(int64=2) %!d(string=hai) anos
pai
achega
26c7aa4f2f

+ 2 - 2
src/main/java/com/chinaitop/depot/business/controller/ReceiveNoticeController.java

@@ -123,14 +123,14 @@ public class ReceiveNoticeController {
123 123
 	 * 未进行审核完成的【性质转变单】,该仓再下一次申请入库验收的时候,
124 124
 	 * 会提示,需要将上一次的粮食性质转变单审核完成,才能进行提交
125 125
 	 */
126
-	@RequestMapping(value="/getList",produces = MediaType.APPLICATION_JSON_VALUE, method=RequestMethod.GET)
126
+	@RequestMapping(value="/getNoticeNoAuditList",produces = MediaType.APPLICATION_JSON_VALUE, method=RequestMethod.GET)
127 127
     @ApiOperation(value="入库验收申请时查询上一次性质转变单是否审批完成", notes = "入库验收申请时查询上一次性质转变单是否审批完成")
128 128
     @ApiImplicitParams({
129 129
             @ApiImplicitParam(name = "xybh", value = "协议编号", paramType = "query"),
130 130
             @ApiImplicitParam(name = "sptDataId", value = "和市平台对接的货位编码", paramType = "query"),
131 131
             @ApiImplicitParam(name = "flag", value = "是油罐还是仓房", paramType = "query")
132 132
     })
133
-    public int getList(String xybh,String sptDataId,Integer flag) throws Exception {
133
+    public int getNoticeNoAuditList(String xybh,String sptDataId,Integer flag) throws Exception {
134 134
         return receiveNoticeService.queryIsOrAudit(xybh,sptDataId,flag);
135 135
     }
136 136