|
|
@ -279,7 +279,7 @@ public class SNPushCheckRecordService extends AbstractServiceAdapter { |
|
|
|
return queryInvoiceResult; |
|
|
|
return queryInvoiceResult; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public String getRecords(Map<String, String> pramsMap) { |
|
|
|
public String getRecords(Map<String, Object> pramsMap) { |
|
|
|
DynamicContextHolder.push("business" + DbConstant.BUSINESS_WRITE); |
|
|
|
DynamicContextHolder.push("business" + DbConstant.BUSINESS_WRITE); |
|
|
|
QueryWrapper<TdxRecordInvoice> recordWrapper = new QueryWrapper<>(); |
|
|
|
QueryWrapper<TdxRecordInvoice> recordWrapper = new QueryWrapper<>(); |
|
|
|
List<String> uuids = tdxRecordInvoiceDao.selectRecords(pramsMap); |
|
|
|
List<String> uuids = tdxRecordInvoiceDao.selectRecords(pramsMap); |
|
|
@ -310,12 +310,12 @@ public class SNPushCheckRecordService extends AbstractServiceAdapter { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
log.info("taxRate={}",taxRate); |
|
|
|
log.info("获取的数据明细taxRate为={}",taxRate); |
|
|
|
|
|
|
|
Map<String, String> updateParam = new HashMap<>(); |
|
|
|
|
|
|
|
updateParam.put("taxRate",taxRate); |
|
|
|
|
|
|
|
updateParam.put("uuid",uuid); |
|
|
|
|
|
|
|
|
|
|
|
pramsMap.put("taxRate",taxRate); |
|
|
|
tdxRecordInvoiceDao.updateTaxRate(updateParam); |
|
|
|
pramsMap.put("uuid",uuid); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tdxRecordInvoiceDao.updateTaxRate(pramsMap); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
return "ok"; |
|
|
|
return "ok"; |
|
|
|
} |
|
|
|
} |
|
|
|