This commit is contained in:
linfso 2024-08-04 11:40:15 +08:00
parent 3d71545c13
commit d468fc73f9
3 changed files with 12 additions and 2 deletions

View File

@ -118,9 +118,18 @@ public class EmisWaybillProblemInfoServiceImpl extends EmisBaseService implement
if("1".equals(emisWaybillProblemInfo.getBlReversion())){
throw new EmisBizError(EmisBizErrorType.FAIL,"问题件已回复,不允许删除");
}
// 删除该问题件的扫描轨迹
emisTmsScanRecordMapper.deleteEmisTmsScanRecordById();
emisWaybillProblemInfoMapper.deleteEmisWaybillProblemInfoById(id);
}
return emisWaybillProblemInfoMapper.deleteEmisWaybillProblemInfoByIds(ids);
// return emisWaybillProblemInfoMapper.deleteEmisWaybillProblemInfoByIds(ids);
}
/**

View File

@ -92,6 +92,7 @@ public class EmisWaybillTransferServiceImpl implements IEmisWaybillTransferServ
@Override
public int deleteEmisWaybillTransferByIds(Long[] ids)
{
return emisWaybillTransferMapper.deleteEmisWaybillTransferByIds(ids);
}

View File

@ -400,7 +400,7 @@
</foreach>
,
</if>
scan_date asc
scan_date desc
</select>