parent
d68bebb440
commit
8ca6fac971
|
@ -14,6 +14,8 @@ import kd.bos.entity.datamodel.FmtField;
|
|||
import kd.bos.entity.report.*;
|
||||
import kd.bos.form.control.Toolbar;
|
||||
import kd.bos.form.control.events.ItemClickEvent;
|
||||
import kd.bos.logging.Log;
|
||||
import kd.bos.logging.LogFactory;
|
||||
import kd.bos.report.ReportList;
|
||||
import kd.bos.report.plugin.AbstractReportFormPlugin;
|
||||
import kd.bos.report.proxy.ReportListProxy;
|
||||
|
@ -33,6 +35,8 @@ import java.util.stream.Collectors;
|
|||
|
||||
public class AccountbankReportFormPlugin extends AbstractReportFormPlugin {
|
||||
|
||||
private static final Log logger = LogFactory.getLog(AccountbankReportFormPlugin.class);
|
||||
|
||||
@Override
|
||||
public void registerListener(EventObject e) {
|
||||
super.registerListener(e);
|
||||
|
@ -135,6 +139,7 @@ public class AccountbankReportFormPlugin extends AbstractReportFormPlugin {
|
|||
}
|
||||
|
||||
String disString="";//展示的文本
|
||||
try {
|
||||
//获取配置
|
||||
Map<String, Object> stringObjectMap = type.get(key);
|
||||
System.out.println(stringObjectMap);
|
||||
|
@ -175,6 +180,12 @@ public class AccountbankReportFormPlugin extends AbstractReportFormPlugin {
|
|||
disString="";
|
||||
break;
|
||||
}
|
||||
} catch (Exception e) {
|
||||
logger.info("value:"+value);
|
||||
logger.info("type:"+type);
|
||||
logger.info("key:"+key);
|
||||
logger.info("错误");
|
||||
}
|
||||
|
||||
return disString;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue