Compare commits

..

No commits in common. "03b685da7956a4aa8940823e6e5a1ae401961648" and "0a9727920a1849b879e7c659a54886e9b161a9f8" have entirely different histories.

1 changed files with 0 additions and 31 deletions

View File

@ -1,31 +0,0 @@
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
package zcgj.zcdev.zcdev.pr.plugin.form;
import kd.bos.entity.plugin.AbstractOperationServicePlugIn;
import kd.bos.entity.plugin.AddValidatorsEventArgs;
import kd.bos.entity.plugin.PreparePropertysEventArgs;
import kd.ec.material.opplugin.validator.IdCardValidator;
import kd.ec.material.opplugin.validator.LabourValidator;
/**
* 二开系统标准插件劳务班组提交操作插件
*/
public class LabourOpExt extends AbstractOperationServicePlugIn {
public LabourOpExt() {
}
public void onPreparePropertys(PreparePropertysEventArgs e) {
super.onPreparePropertys(e);
e.getFieldKeys().add("entryentity.idcard");
}
public void onAddValidators(AddValidatorsEventArgs e) {
super.onAddValidators(e);
e.addValidator(new LabourValidator());
// e.addValidator(new IdCardValidator());//去除系统标准身份证校验逻辑
}
}