2025-10-30 07:47:33 +00:00
|
|
|
package tqq9.lc123.cloud.app.plugin.operate.conm;
|
|
|
|
|
|
|
|
|
|
import kd.bos.entity.plugin.AbstractOperationServicePlugIn;
|
|
|
|
|
import kd.bos.entity.plugin.args.AfterOperationArgs;
|
|
|
|
|
import kd.bos.logging.Log;
|
|
|
|
|
import kd.bos.logging.LogFactory;
|
|
|
|
|
import kd.sdk.plugin.Plugin;
|
|
|
|
|
|
|
|
|
|
/**
|
2025-11-03 03:32:25 +00:00
|
|
|
* 单据操作插件(暂时不用)
|
2025-10-30 07:47:33 +00:00
|
|
|
*/
|
|
|
|
|
public class RebateRuleAuditToFlOp extends AbstractOperationServicePlugIn implements Plugin {
|
|
|
|
|
private final static Log logger = LogFactory.getLog(RebateRuleAuditToFlOp.class);
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void afterExecuteOperationTransaction(AfterOperationArgs e) {
|
|
|
|
|
super.afterExecuteOperationTransaction(e);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|