2 changed files with 24 additions and 1 deletions
@ -0,0 +1,23 @@ |
|||||||
|
package apelet.association.plugin; |
||||||
|
|
||||||
|
import apelet.common.core.object.ObjectValue; |
||||||
|
import apelet.common.online.abstractplugin.ExecutePluginParent; |
||||||
|
|
||||||
|
/** |
||||||
|
* @ClassName: UnitNameChangeFormPlugin |
||||||
|
* @Author: huangdehua |
||||||
|
* @Date: 2026/4/30 10:40 |
||||||
|
* @Description: 入会申请与审核界面初始化 |
||||||
|
*/ |
||||||
|
public class UnitNameChangeFormPlugin extends ExecutePluginParent { |
||||||
|
|
||||||
|
/** |
||||||
|
* 界面初始化事件 |
||||||
|
* 将单据状态 billStatus 赋值为 "A" |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public void formCreated(String str, ObjectValue objectValue) { |
||||||
|
super.formCreated(str, objectValue); |
||||||
|
objectValue.setString("billStatus", "A"); |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue