bugfix:对账排除住院订单
This commit is contained in:
@@ -71,6 +71,8 @@ public interface TransactionDetailService {
|
||||
*/
|
||||
void deleteHisAndThirdJoinDataByParamAndNotUnique(HashMap<Object, Object> map) throws Exception;
|
||||
|
||||
void deleteThirdUnilateralByIddh(HashMap<Object, Object> map) throws Exception;
|
||||
|
||||
/**
|
||||
* @description: 添加处理后的非唯一记录回数据
|
||||
* @author thuang
|
||||
|
||||
@@ -36,4 +36,9 @@ public interface UnilateralService {
|
||||
* 根据ID删除单边账记录
|
||||
*/
|
||||
void deleteUnilateralById(HashMap<Object, Object> map) throws Exception;
|
||||
|
||||
/**
|
||||
* 根据订单号删除银行单边账
|
||||
*/
|
||||
void deleteBankUnilateralByI_DDH(HashMap<Object, Object> map) throws Exception;
|
||||
}
|
||||
|
||||
@@ -159,6 +159,11 @@ public class TransactionDetailServiceImpl implements TransactionDetailService {
|
||||
transactionDetailMapper.deleteHisAndThirdJoinDataByParamAndNotUnique(map);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteThirdUnilateralByIddh(HashMap<Object, Object> map) throws Exception {
|
||||
transactionDetailMapper.deleteThirdUnilateralByIddh(map);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addNotUniqueData(List<HashMap<Object, Object>> list) throws Exception {
|
||||
transactionDetailMapper.addNotUniqueData(list);
|
||||
|
||||
@@ -86,4 +86,9 @@ public class UnilateralServiceImpl implements UnilateralService {
|
||||
public void deleteUnilateralById(HashMap<Object, Object> map) throws Exception {
|
||||
unilateralMapper.deleteUnilateralById(map);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteBankUnilateralByI_DDH(HashMap<Object, Object> map) throws Exception {
|
||||
unilateralMapper.deleteBankUnilateralByI_DDH(map);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user