|
@@ -68,6 +68,7 @@ public class TsbBatchService {
|
|
|
@Transactional("shopTxnManager")
|
|
@Transactional("shopTxnManager")
|
|
|
public void updateBatchLog(Integer batchLogSq, String batchId) {
|
|
public void updateBatchLog(Integer batchLogSq, String batchId) {
|
|
|
BatchLog batchLog = new BatchLog();
|
|
BatchLog batchLog = new BatchLog();
|
|
|
|
|
+ batchLog.setRegNo(TsbConstants.REG_NO);
|
|
|
batchLog.setBatchLogSq(batchLogSq);
|
|
batchLog.setBatchLogSq(batchLogSq);
|
|
|
batchLog.setBatchStat("F");
|
|
batchLog.setBatchStat("F");
|
|
|
batchDao.updateBatchLog(batchLog);
|
|
batchDao.updateBatchLog(batchLog);
|
|
@@ -90,6 +91,7 @@ public class TsbBatchService {
|
|
|
@Transactional("shopTxnManager")
|
|
@Transactional("shopTxnManager")
|
|
|
public void updateBatchLog(Integer batchLogSq, String batchId, String errorMsg) {
|
|
public void updateBatchLog(Integer batchLogSq, String batchId, String errorMsg) {
|
|
|
BatchLog batchLog = new BatchLog();
|
|
BatchLog batchLog = new BatchLog();
|
|
|
|
|
+ batchLog.setRegNo(TsbConstants.REG_NO);
|
|
|
batchLog.setBatchLogSq(batchLogSq);
|
|
batchLog.setBatchLogSq(batchLogSq);
|
|
|
batchLog.setBatchStat("E");
|
|
batchLog.setBatchStat("E");
|
|
|
batchLog.setErrorMsg(errorMsg);
|
|
batchLog.setErrorMsg(errorMsg);
|