|
|
@@ -0,0 +1,23 @@
|
|
|
+package uzi9.uzi9q.opmcepaq.epaq.plugin.form.zd;
|
|
|
+
|
|
|
+import kd.bos.list.plugin.AbstractListPlugin;
|
|
|
+import kd.sdk.plugin.Plugin;
|
|
|
+
|
|
|
+import java.util.EventObject;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 评估对象标准单据列表插件
|
|
|
+ */
|
|
|
+public class EvaluationObjectListPlugin extends AbstractListPlugin implements Plugin {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void afterBindData(EventObject e) {
|
|
|
+ super.afterBindData(e);
|
|
|
+ Object activityId = this.getView().getFormShowParameter().getCustomParam("ActivityId");
|
|
|
+ if (activityId == null) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ String string = activityId.toString();
|
|
|
+ System.out.println(string);
|
|
|
+ }
|
|
|
+}
|