委托验收问题

version1
anthonyywj2 3 years ago
parent e0f1355950
commit 0748ab9dce

@ -17,5 +17,7 @@ public class EntrustReceEntity {
private Date updateTime; private Date updateTime;
private String remark; private String remark;
private boolean finishRece; private boolean finishRece;
private String entrustSubInv;
private String invWarehouseCode;
} }

@ -10,4 +10,5 @@ public class BasicExportStatusRequest extends ListPageRequest {
private Integer type; private Integer type;
private Integer scheduleType; private Integer scheduleType;
private String idDatas; private String idDatas;
private String taskId;
} }

@ -242,7 +242,8 @@ public class DlAllDataService {
if (syncOrderResponse != null && if (syncOrderResponse != null &&
(CollUtil.isNotEmpty(syncOrderResponse.getBussinessTypeEntities()) (CollUtil.isNotEmpty(syncOrderResponse.getBussinessTypeEntities())
|| CollUtil.isNotEmpty(syncOrderResponse.getBussinessOriginTypeEntities()) || CollUtil.isNotEmpty(syncOrderResponse.getBussinessOriginTypeEntities())
|| CollUtil.isNotEmpty(syncOrderResponse.getBussinessLocalTypeEntities())) || CollUtil.isNotEmpty(syncOrderResponse.getBussinessLocalTypeEntities())
|| CollUtil.isNotEmpty(syncOrderResponse.getEntrustReceEntities()))
) { ) {
String key = gennerOrderUtils.getBusType(); String key = gennerOrderUtils.getBusType();
BasicExportStatusEntity myEntity = new BasicExportStatusEntity(); BasicExportStatusEntity myEntity = new BasicExportStatusEntity();

@ -19,6 +19,10 @@
<if test="scheduleType != '' and scheduleType!=null"> <if test="scheduleType != '' and scheduleType!=null">
and scheduleType = #{scheduleType} and scheduleType = #{scheduleType}
</if> </if>
<if test="taskId != '' and taskId!=null">
and taskId = #{taskId}
</if>
</where> </where>
order by updateTime desc order by updateTime desc
</select> </select>

Loading…
Cancel
Save