|
|
|
|
@ -194,6 +194,7 @@ public class EnsBatchExtractService extends AbstractService implements
|
|
|
|
|
* @param stsErrMsg String
|
|
|
|
|
* </pre>
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
@Transactional(propagation = Propagation.REQUIRES_NEW)
|
|
|
|
|
public void updateSndngMstFailStatus(final String mstId, final SndngSeCode seCode, final String errCode, final String errMsg, final String stsErrMsg) {
|
|
|
|
|
|
|
|
|
|
@ -236,6 +237,8 @@ public class EnsBatchExtractService extends AbstractService implements
|
|
|
|
|
* @param stsErrMsg 발송 연계 마스터의 발송상태 변경값 조회가 불가한 경우 에러 메세지
|
|
|
|
|
* </pre>
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
@Transactional(propagation = Propagation.REQUIRES_NEW)
|
|
|
|
|
public void updateSendSndngMstStatus(final String mstId, final String unitySndMstId, final SndngSeCode seCode, final String stsErrMsg) {
|
|
|
|
|
SndngMssageParam dto = mapper.selectSndProcessStatus(mstId)
|
|
|
|
|
.orElseThrow(() -> BizRuntimeException.create(stsErrMsg));
|
|
|
|
|
@ -254,7 +257,8 @@ public class EnsBatchExtractService extends AbstractService implements
|
|
|
|
|
* @param dto EnsDTO.SndngMssageParam
|
|
|
|
|
* @see TaskCmmUtils#taskEnsBatchServiceUpdateErrorLog
|
|
|
|
|
*/
|
|
|
|
|
@Transactional
|
|
|
|
|
@Override
|
|
|
|
|
@Transactional(propagation = Propagation.REQUIRES_NEW)
|
|
|
|
|
public void updateErrorLog(final SndngMssageParam dto) {
|
|
|
|
|
final String status = dto.getNewSndngProcessSttus();
|
|
|
|
|
|
|
|
|
|
|