|
@@ -827,6 +827,15 @@ public class WmScorePackageSettleNoteServiceImpl extends ServiceImpl<WmScorePack
|
|
|
params.put("channel", "DEFAULT");
|
|
|
params.put("subjectLocation", note.getSubjectLocation());
|
|
|
|
|
|
+ if (SubjectLocation.JIN_YUAN.equals(note.getSubjectLocation())) {
|
|
|
+ params.put("taxMode", "GENERAL");
|
|
|
+ params.put("transactionModel", "SUPERVISE");
|
|
|
+ }
|
|
|
+ // 海南飞亿 和 河南薪泰梓
|
|
|
+ else {
|
|
|
+ params.put("taxMode", "SPECIAL");
|
|
|
+ params.put("transactionModel", "CHANNEL");
|
|
|
+ }
|
|
|
|
|
|
Set<Integer> noteIds = new HashSet<>();
|
|
|
noteIds.add(note.getId());
|
|
@@ -1268,7 +1277,15 @@ public class WmScorePackageSettleNoteServiceImpl extends ServiceImpl<WmScorePack
|
|
|
params.put("subjectType", "ZHENG_QI_ZHI_XING");
|
|
|
params.put("channel", "DEFAULT");
|
|
|
params.put("subjectLocation", note.getSubjectLocation());
|
|
|
-
|
|
|
+ if (SubjectLocation.JIN_YUAN.equals(note.getSubjectLocation())) {
|
|
|
+ params.put("taxMode", "GENERAL");
|
|
|
+ params.put("transactionModel", "SUPERVISE");
|
|
|
+ }
|
|
|
+ // 海南飞亿 和 河南薪泰梓
|
|
|
+ else {
|
|
|
+ params.put("taxMode", "SPECIAL");
|
|
|
+ params.put("transactionModel", "CHANNEL");
|
|
|
+ }
|
|
|
|
|
|
// 发起结算
|
|
|
HttpHeaders headers = new HttpHeaders();
|