|
|
@ -120,7 +120,8 @@ public class CoreSaveInvoiceInfoServiceImpl extends MpBaseServiceImpl<TDxRecordI |
|
|
|
// invoiceStatistics.setTaxRate(queryInvoiceResult.getBigDecimal("taxRate"));
|
|
|
|
// invoiceStatistics.setTaxRate(queryInvoiceResult.getBigDecimal("taxRate"));
|
|
|
|
// invoiceStatistics.setTaxAmount(queryInvoiceResult.getBigDecimal("taxAmount"));
|
|
|
|
// invoiceStatistics.setTaxAmount(queryInvoiceResult.getBigDecimal("taxAmount"));
|
|
|
|
String taxRate = queryInvoiceResult.getString("taxRate"); |
|
|
|
String taxRate = queryInvoiceResult.getString("taxRate"); |
|
|
|
if(taxRate != null) { |
|
|
|
log.info("taxRate={}",taxRate); |
|
|
|
|
|
|
|
if(taxRate != null && StringUtils.isNoneBlank(taxRate)) { |
|
|
|
if (taxRate.contains("%")) { |
|
|
|
if (taxRate.contains("%")) { |
|
|
|
taxRate = taxRate.replace("%", ""); |
|
|
|
taxRate = taxRate.replace("%", ""); |
|
|
|
} |
|
|
|
} |
|
|
|