fix(pu): 修正过滤失败的配置键名
- 将 "filterFailed" 键名更正为 "filterFail6ed",以匹配正确的配置项 - 此修改解决了过滤失败功能不工作的问题,提高了批处理转账的成功率
This commit is contained in:
		
							parent
							
								
									39b17b94cf
								
							
						
					
					
						commit
						c44c5ddf74
					
				|  | @ -41,7 +41,7 @@ public class BatchTransferToPurchaseOrder implements IBackgroundWorkPlugin { | |||
|         // 限制数量 每次查询的数量 | ||||
|         String limitNum = (String) bgWorkingContext.getKeyMap().get("limitNum"); | ||||
|         // 是否过滤失败 配置true的时候 过滤 过滤条件为 vdef31 != N 配置 false时 不过滤 查询全部数据 | ||||
|         String filterFailed = (String) bgWorkingContext.getKeyMap().get("filterFailed"); | ||||
|         String filterFailed = (String) bgWorkingContext.getKeyMap().get("filterFail6ed"); | ||||
|         String failed = filterFailed.equals("Y") ? "N" : ""; | ||||
|         PreAlertObject retObj = new PreAlertObject(); | ||||
|         retObj.setReturnType(PreAlertReturnType.RETURNNOTHING); | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue