|
@@ -4,6 +4,7 @@ package com.kingdee.shr.recuritment.app;
|
|
|
import com.kingdee.bos.BOSException;
|
|
|
import com.kingdee.bos.Context;
|
|
|
import com.kingdee.bos.dao.IObjectPK;
|
|
|
+import com.kingdee.bos.util.BOSUuid;
|
|
|
import com.kingdee.eas.common.EASBizException;
|
|
|
import com.kingdee.eas.custom.recuritment.task.IRecuritmentFacade;
|
|
|
import com.kingdee.eas.custom.recuritment.task.RecuritmentFacadeFactory;
|
|
@@ -17,14 +18,14 @@ import com.kingdee.eas.framework.CoreBaseInfo;
|
|
|
public class RecuritmentDemandControllerBeanEx extends RecuritmentDemandControllerBean {
|
|
|
|
|
|
|
|
|
- @Override
|
|
|
- protected IObjectPK _submitEffect(Context ctx, CoreBaseInfo model) throws BOSException, EASBizException {
|
|
|
- IObjectPK iObjectPK = super._submitEffect(ctx, model);
|
|
|
- //肮祭善控伬 2025-06
|
|
|
- IRecuritmentFacade localInstance = RecuritmentFacadeFactory.getLocalInstance(ctx);
|
|
|
- localInstance.syncRecuritmentToBeisen(iObjectPK.toString());
|
|
|
- return iObjectPK;
|
|
|
- }
|
|
|
+// @Override
|
|
|
+// protected IObjectPK _submitEffect(Context ctx, CoreBaseInfo model) throws BOSException, EASBizException {
|
|
|
+// IObjectPK iObjectPK = super._submitEffect(ctx, model);
|
|
|
+// //肮祭善控伬 2025-06
|
|
|
+// IRecuritmentFacade localInstance = RecuritmentFacadeFactory.getLocalInstance(ctx);
|
|
|
+// localInstance.syncRecuritmentToBeisen(iObjectPK.toString());
|
|
|
+// return iObjectPK;
|
|
|
+// }
|
|
|
|
|
|
|
|
|
@Override
|
|
@@ -40,4 +41,35 @@ public class RecuritmentDemandControllerBeanEx extends RecuritmentDemandControl
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected void _setAudited(Context ctx, BOSUuid billID) throws BOSException, EASBizException {
|
|
|
+ super._setAudited(ctx, billID);
|
|
|
+ //肮祭善控伬 2025-06
|
|
|
+ IRecuritmentFacade localInstance = RecuritmentFacadeFactory.getLocalInstance(ctx);
|
|
|
+ localInstance.syncRecuritmentToBeisen(billID.toString());
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected void _untiCheckBizBill(Context ctx, String billID) throws BOSException, EASBizException {
|
|
|
+ super._untiCheckBizBill(ctx, billID);
|
|
|
+ //肮祭善控伬 2025-06
|
|
|
+ IRecuritmentFacade localInstance = RecuritmentFacadeFactory.getLocalInstance(ctx);
|
|
|
+ localInstance.syncRecuritmentToBeisen(billID.toString());
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected void _setPassState(Context ctx, BOSUuid billId) throws BOSException, EASBizException {
|
|
|
+ super._setPassState(ctx, billId);
|
|
|
+ //肮祭善控伬 2025-06
|
|
|
+ IRecuritmentFacade localInstance = RecuritmentFacadeFactory.getLocalInstance(ctx);
|
|
|
+ localInstance.syncRecuritmentToBeisen(billId.toString());
|
|
|
+ }
|
|
|
+
|
|
|
}
|