18 lines
440 B
Java
18 lines
440 B
Java
package com.tenwa.reckon.copydata;
|
|
|
|
import com.amarsoft.are.jbo.BizObject;
|
|
import com.tenwa.comm.util.jboutil.BizObjectCompare;
|
|
|
|
public class CalcRentCompare implements BizObjectCompare{
|
|
|
|
@Override
|
|
public boolean ObjectCompare(BizObject cObject, BizObject toObject)
|
|
throws Exception {
|
|
if(cObject.getAttribute("plan_list").getString().equals(toObject.getAttribute("plan_list").getString())){
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
}
|