单据同步修改对应同步时间差

dev
anthonywj 2 years ago
parent 2e9905f111
commit 375900052a

@ -231,7 +231,16 @@ public class SpsSyncExportStatusController {
@PostMapping("/spssync/basic/schedule/updateLastTime")
@Log(title = "定时任务", businessType = BusinessType.UPDATE)
public BaseResponse updateLastTime(@RequestBody BasicExportStatusTimeEntity basicExportStatusTimeEntity) {
basicExportStatusTimeEntity.setLastUpdateTime(DateUtil.formatDateTime(new Date()));
if (basicExportStatusTimeEntity.getKey().equals("AutoDownloadOrder")) {
BasicExportStatusEntity basicExportStatusEntity = basicExportService.findLast("AutoUploadOrder");
if (basicExportStatusEntity != null) {
basicExportStatusTimeEntity.setLastUpdateTime(DateUtil.formatDateTime(basicExportStatusEntity.getStartTime()));
} else {
basicExportStatusTimeEntity.setLastUpdateTime(DateUtil.formatDateTime(new Date()));
}
} else
basicExportStatusTimeEntity.setLastUpdateTime(DateUtil.formatDateTime(new Date()));
boolean b = basicExportTimeService.insertExportStatus(basicExportStatusTimeEntity);
if (b)
return ResultVOUtils.success("更新成功!");

@ -23,4 +23,6 @@ public interface BasicExportDao extends BaseMapper<BasicExportStatusEntity> {
boolean updateExportStatus(BasicExportStatusEntity warehouseEntity);
void deleteByDate(@Param("date") String date);
BasicExportStatusEntity findLast(@Param("idDatas") String idDatas);
}

@ -22,4 +22,12 @@ public interface BasicExportService extends IService<BasicExportStatusEntity> {
boolean deleteByTime();
boolean updateExportStatus(BasicExportStatusEntity warehouseEntity);
/**
*
*
* @param idDatas
* @return
*/
BasicExportStatusEntity findLast(String idDatas);
}

@ -64,4 +64,9 @@ public class BasicExportServiceImpl extends ServiceImpl<BasicExportDao,BasicExpo
public boolean updateExportStatus(BasicExportStatusEntity basicExportStatusEntity) {
return basicExportDao.updateExportStatus(basicExportStatusEntity);
}
@Override
public BasicExportStatusEntity findLast(String idDatas) {
return null;
}
}

@ -32,16 +32,13 @@
</where>
<choose>
<when test="(orderBy!=null ) and (sort=='desc' or sort=='asc')">
order by ${orderBy} ${sort}
<when test="(orderBy != null) and (sort == 'desc' or sort == 'asc')">
order by ${orderBy} ${sort}
</when>
<otherwise>
ORDER BY updateTime DESC
</otherwise>
</choose>
</select>
@ -51,23 +48,23 @@
INTO basic_export_status(id, idDatas, status, `type`, updateTime, scheduleType, startTime, endTime,
remark, receiveStatus
<if test="cacheFilePath!=null and cacheFilePath!= ''">
,cacheFilePath
<if test="cacheFilePath != null and cacheFilePath != ''">
, cacheFilePath
</if>
)
values (#{id},
#{idDatas},
#{status},
#{type},
#{updateTime},
#{scheduleType},
#{startTime},
#{endTime},
#{remark},
#{receiveStatus}
<if test="cacheFilePath!=null and cacheFilePath!= ''">
,#{cacheFilePath}
values (#{id},
#{idDatas},
#{status},
#{type},
#{updateTime},
#{scheduleType},
#{startTime},
#{endTime},
#{remark},
#{receiveStatus}
<if test="cacheFilePath != null and cacheFilePath != ''">
, #{cacheFilePath}
</if>
)
</insert>
@ -120,6 +117,16 @@
</delete>
<delete id="deleteByDate">
delete from basic_export_status where date_format(#{date}, '%Y-%m-%d') >= date_format(startTime, '%Y-%m-%d')
delete
from basic_export_status
where date_format(#{date}, '%Y-%m-%d') >= date_format(startTime, '%Y-%m-%d')
</delete>
<select id="findLast"
resultType="com.glxp.api.entity.sync.BasicExportStatusEntity">
select *
from basic_export_status
where idDatas = #{idDatas}
order by updateTime desc
limit 1
</select>
</mapper>

Loading…
Cancel
Save