|
@@ -1,9 +1,49 @@
|
|
|
package com.kingdee.eas.custom.synctask;
|
|
|
|
|
|
+import com.kingdee.bos.BOSException;
|
|
|
+import com.kingdee.bos.Context;
|
|
|
import org.apache.log4j.Logger;
|
|
|
|
|
|
-public class SyncTranForOAFacadeControllerBean extends AbstractSyncTranForOAFacadeControllerBean
|
|
|
-{
|
|
|
+public class SyncTranForOAFacadeControllerBean extends AbstractSyncTranForOAFacadeControllerBean {
|
|
|
private static Logger logger =
|
|
|
- Logger.getLogger(SyncTranForOAFacadeControllerBean.class);
|
|
|
-}
|
|
|
+ Logger.getLogger(SyncTranForOAFacadeControllerBean.class);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 同步组织上
|
|
|
+ *
|
|
|
+ * @param ctx
|
|
|
+ * @param billds
|
|
|
+ * @param action
|
|
|
+ * @throws BOSException
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ protected void _syncOrgUnitToOA(Context ctx, String billds, actionTypeEnum action) throws BOSException {
|
|
|
+ super._syncOrgUnitToOA(ctx, billds, action);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 同步职位信息
|
|
|
+ *
|
|
|
+ * @param ctx
|
|
|
+ * @param billds
|
|
|
+ * @param action
|
|
|
+ * @throws BOSException
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ protected void _syncPositionToOA(Context ctx, String billds, actionTypeEnum action) throws BOSException {
|
|
|
+ super._syncPositionToOA(ctx, billds, action);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 同步员工信息
|
|
|
+ *
|
|
|
+ * @param ctx
|
|
|
+ * @param billds
|
|
|
+ * @param action
|
|
|
+ * @throws BOSException
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ protected void _syncPersonToOA(Context ctx, String billds, actionTypeEnum action) throws BOSException {
|
|
|
+ super._syncPersonToOA(ctx, billds, action);
|
|
|
+ }
|
|
|
+}
|