Commit 9260453c by 宋祥

1.增加工序下拉框

parent 7c8c4b97
...@@ -188,4 +188,22 @@ public class ServiceHGSJ001 extends ServiceEPBase { ...@@ -188,4 +188,22 @@ public class ServiceHGSJ001 extends ServiceEPBase {
} }
return strList; return strList;
} }
/**
* 下拉框
*
* @param inInfo
* @return
*/
@OperationLogAnnotation(operModul = "仓库档案", operType = "查询", operDesc = "下拉框")
public EiInfo queryComboBox(EiInfo inInfo) {
try {
List<DdynamicEnum> list = new ArrayList<>();
list.add(DdynamicEnum.PROCESS_CODE_BLOCK_ID);
CommonMethod.initBlock(inInfo, list, EiInfoUtils.getFirstRow(inInfo), false);
} catch (Exception e) {
LogUtils.setDetailMsg(inInfo, e, "查询工序失败");
}
return inInfo;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment