Compare commits

..

No commits in common. "2b4ef2984960e70c536913f210d308c49122bb86" and "61874f6be2e06a220f26e5316ee899d118aea9fb" have entirely different histories.

1 changed files with 0 additions and 36 deletions

View File

@ -1,9 +1,6 @@
package zcgj.zcdev.zcdev.pr.plugin.form;
import kd.bos.form.FormShowParameter;
import kd.bos.form.control.Button;
import kd.bos.form.control.Image;
import kd.bos.form.control.Search;
import kd.ec.basedata.formplugin.ResourceItemListPlugin;
import java.util.EventObject;
@ -61,37 +58,4 @@ public class ResourceFilterExtPlugin extends ResourceItemListPlugin {
}
}
}
@Override
public void registerListener(EventObject e) {
super.registerListener(e);
Image subLabel = (Image)this.getView().getControl("sub");
subLabel.addClickListener(this);
Image labourLabel = (Image)this.getView().getControl("labour");
labourLabel.addClickListener(this);
Image materialLabel = (Image)this.getView().getControl("material");
materialLabel.addClickListener(this);
Image equipmentLabel = (Image)this.getView().getControl("equipment");
equipmentLabel.addClickListener(this);
Image turnoverLabel = (Image)this.getView().getControl("turnover");
turnoverLabel.addClickListener(this);
Image otherLabel = (Image)this.getView().getControl("other");
otherLabel.addClickListener(this);
Image compositeLabel = (Image)this.getView().getControl("composite");
if (compositeLabel != null) {
compositeLabel.addClickListener(this);
}
Search treeSearch = (Search)this.getView().getControl("treesearchap");
treeSearch.addEnterListener(this);
Button callbackuploadbtn = (Button)this.getView().getControl("callbackuploadbtn");
if (callbackuploadbtn != null) {
callbackuploadbtn.addUploadListener(this);
}
Button groupUploadButton = (Button)this.getView().getControl("groupuploadbtn");
if (groupUploadButton != null) {
groupUploadButton.addUploadListener(this);
}
}
}