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

dev
anthonywj 2 years ago
parent 2e9905f111
commit 375900052a

@ -231,7 +231,16 @@ public class SpsSyncExportStatusController {
@PostMapping("/spssync/basic/schedule/updateLastTime") @PostMapping("/spssync/basic/schedule/updateLastTime")
@Log(title = "定时任务", businessType = BusinessType.UPDATE) @Log(title = "定时任务", businessType = BusinessType.UPDATE)
public BaseResponse updateLastTime(@RequestBody BasicExportStatusTimeEntity basicExportStatusTimeEntity) { 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); boolean b = basicExportTimeService.insertExportStatus(basicExportStatusTimeEntity);
if (b) if (b)
return ResultVOUtils.success("更新成功!"); return ResultVOUtils.success("更新成功!");

@ -23,4 +23,6 @@ public interface BasicExportDao extends BaseMapper<BasicExportStatusEntity> {
boolean updateExportStatus(BasicExportStatusEntity warehouseEntity); boolean updateExportStatus(BasicExportStatusEntity warehouseEntity);
void deleteByDate(@Param("date") String date); 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 deleteByTime();
boolean updateExportStatus(BasicExportStatusEntity warehouseEntity); 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) { public boolean updateExportStatus(BasicExportStatusEntity basicExportStatusEntity) {
return basicExportDao.updateExportStatus(basicExportStatusEntity); return basicExportDao.updateExportStatus(basicExportStatusEntity);
} }
@Override
public BasicExportStatusEntity findLast(String idDatas) {
return null;
}
} }

@ -32,16 +32,13 @@
</where> </where>
<choose> <choose>
<when test="(orderBy!=null ) and (sort=='desc' or sort=='asc')"> <when test="(orderBy != null) and (sort == 'desc' or sort == 'asc')">
order by ${orderBy} ${sort} order by ${orderBy} ${sort}
</when> </when>
<otherwise> <otherwise>
ORDER BY updateTime DESC ORDER BY updateTime DESC
</otherwise> </otherwise>
</choose> </choose>
</select> </select>
@ -51,23 +48,23 @@
INTO basic_export_status(id, idDatas, status, `type`, updateTime, scheduleType, startTime, endTime, INTO basic_export_status(id, idDatas, status, `type`, updateTime, scheduleType, startTime, endTime,
remark, receiveStatus remark, receiveStatus
<if test="cacheFilePath!=null and cacheFilePath!= ''"> <if test="cacheFilePath != null and cacheFilePath != ''">
,cacheFilePath , cacheFilePath
</if> </if>
) )
values (#{id}, values (#{id},
#{idDatas}, #{idDatas},
#{status}, #{status},
#{type}, #{type},
#{updateTime}, #{updateTime},
#{scheduleType}, #{scheduleType},
#{startTime}, #{startTime},
#{endTime}, #{endTime},
#{remark}, #{remark},
#{receiveStatus} #{receiveStatus}
<if test="cacheFilePath!=null and cacheFilePath!= ''"> <if test="cacheFilePath != null and cacheFilePath != ''">
,#{cacheFilePath} , #{cacheFilePath}
</if> </if>
) )
</insert> </insert>
@ -120,6 +117,16 @@
</delete> </delete>
<delete id="deleteByDate"> <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> </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> </mapper>

Loading…
Cancel
Save