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

dev
anthonywj 2 years ago
parent 2e9905f111
commit 375900052a

@ -231,6 +231,15 @@ public class SpsSyncExportStatusController {
@PostMapping("/spssync/basic/schedule/updateLastTime")
@Log(title = "定时任务", businessType = BusinessType.UPDATE)
public BaseResponse updateLastTime(@RequestBody BasicExportStatusTimeEntity basicExportStatusTimeEntity) {
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)

@ -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;
}
}

@ -39,9 +39,6 @@
ORDER BY updateTime DESC
</otherwise>
</choose>
</select>
@ -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