This commit is contained in:
xiang2lin 2024-07-02 13:46:23 +08:00
parent 5f748a699c
commit a4875f3392
1 changed files with 1 additions and 10 deletions

View File

@ -36,10 +36,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value; import org.springframework.beans.factory.annotation.Value;
import java.io.File; import java.io.File;
import java.util.ArrayList; import java.util.*;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors; import java.util.stream.Collectors;
/** /**
@ -100,12 +97,6 @@ public class CbsPluginServiceImpl implements ICbsPluginService {
paymentService.updatePayState(pay); paymentService.updatePayState(pay);
//5记录操作日志到OA底表 //5记录操作日志到OA底表
savePayLog(pay,payResponseDTO); savePayLog(pay,payResponseDTO);
//6记录系统日志
IntegrationTaskLivingDetailsEntity logTask = new IntegrationTaskLivingDetailsEntity();
logTask.setRootAppPk(pay.getFormsonId());
logTask.setRootAppBill(pay.getReferenceNum());
//logTask.setNewTransmitInfo();
//saveTaskLog();
} }
} }
} }