|
@@ -20,22 +20,23 @@ import com.kingdee.eas.framework.LineResult;
|
|
|
import com.kingdee.eas.framework.exception.EASMultiException;
|
|
|
import com.kingdee.bos.dao.ormapping.ObjectUuidPK;
|
|
|
|
|
|
-import com.kingdee.eas.framework.app.CoreBillBaseControllerBean;
|
|
|
-import com.kingdee.eas.framework.ObjectBaseCollection;
|
|
|
import com.kingdee.bos.dao.IObjectPK;
|
|
|
-import com.kingdee.eas.hr.perf.PerformanProjectPersonInfo;
|
|
|
-import com.kingdee.bos.metadata.entity.EntityViewInfo;
|
|
|
+import com.kingdee.eas.framework.ObjectBaseCollection;
|
|
|
import java.lang.String;
|
|
|
-import com.kingdee.eas.framework.CoreBaseInfo;
|
|
|
-import com.kingdee.eas.framework.CoreBaseCollection;
|
|
|
import com.kingdee.eas.framework.CoreBillBaseCollection;
|
|
|
+import com.kingdee.eas.hr.base.HRBillBaseCollection;
|
|
|
+import com.kingdee.bos.metadata.entity.EntityViewInfo;
|
|
|
+import com.kingdee.eas.hr.perf.PerformanProjectPersonInfo;
|
|
|
+import com.kingdee.eas.hr.base.app.HRBillBaseControllerBean;
|
|
|
+import com.kingdee.eas.framework.CoreBaseCollection;
|
|
|
+import com.kingdee.eas.framework.CoreBaseInfo;
|
|
|
import com.kingdee.eas.hr.perf.PerformanProjectPersonCollection;
|
|
|
import com.kingdee.eas.common.EASBizException;
|
|
|
import com.kingdee.bos.metadata.entity.SelectorItemCollection;
|
|
|
|
|
|
|
|
|
|
|
|
-public abstract class AbstractPerformanProjectPersonControllerBean extends CoreBillBaseControllerBean implements PerformanProjectPersonController
|
|
|
+public abstract class AbstractPerformanProjectPersonControllerBean extends HRBillBaseControllerBean implements PerformanProjectPersonController
|
|
|
{
|
|
|
protected AbstractPerformanProjectPersonControllerBean()
|
|
|
{
|
|
@@ -190,6 +191,18 @@ public abstract class AbstractPerformanProjectPersonControllerBean extends CoreB
|
|
|
return super._getValue(ctx, oql);
|
|
|
}
|
|
|
|
|
|
+ public HRBillBaseCollection getHRBillBaseCollection (Context ctx) throws BOSException
|
|
|
+ {
|
|
|
+ return (HRBillBaseCollection)(getPerformanProjectPersonCollection(ctx).cast(HRBillBaseCollection.class));
|
|
|
+ }
|
|
|
+ public HRBillBaseCollection getHRBillBaseCollection (Context ctx, EntityViewInfo view) throws BOSException
|
|
|
+ {
|
|
|
+ return (HRBillBaseCollection)(getPerformanProjectPersonCollection(ctx, view).cast(HRBillBaseCollection.class));
|
|
|
+ }
|
|
|
+ public HRBillBaseCollection getHRBillBaseCollection (Context ctx, String oql) throws BOSException
|
|
|
+ {
|
|
|
+ return (HRBillBaseCollection)(getPerformanProjectPersonCollection(ctx, oql).cast(HRBillBaseCollection.class));
|
|
|
+ }
|
|
|
public CoreBillBaseCollection getCoreBillBaseCollection (Context ctx) throws BOSException
|
|
|
{
|
|
|
return (CoreBillBaseCollection)(getPerformanProjectPersonCollection(ctx).cast(CoreBillBaseCollection.class));
|