|
@@ -25,10 +25,12 @@ public class MDO0021Service extends MDO0021BaseModel implements ExecProcessFlow
|
|
|
*/
|
|
|
public void transExecute() throws Exception {
|
|
|
String pid =this.getA_mdo0021().getPid();
|
|
|
+ Integer type =this.getA_mdo0021().getType();
|
|
|
MdoProComvalMapper comvalDao = UtilTools.getBean(MdoProComvalMapper.class);
|
|
|
MdoProComvalSQLBuilder sb =new MdoProComvalSQLBuilder();
|
|
|
MdoProComvalSQLBuilder.Criteria sc = sb.createCriteria();
|
|
|
sc.andPidEqualTo(pid);
|
|
|
+ sc.andTypeEqualTo(type);
|
|
|
List<MdoProComval> comvals =comvalDao.selectByExample(sb);
|
|
|
List<D_MDO0021_ROWS_RECODE> rows =new ArrayList<>();
|
|
|
for (MdoProComval comval:comvals) {
|