import com.groupstp.rtneo.entity.*
import com.haulmont.cuba.core.global.*
import com.groupstp.rtneo.service.*
import java.text.SimpleDateFormat;
CalculationService service = AppBeans.get(CalculationService.NAME)
SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");
def res = service.getActs('3812113363', format.parse('20190101'), format.parse('20191201'))
res.each({_(it)})
public _(def o){
log.debug(o)
}