ariesy 补充主表税率字段 v2

release
yefei 2 years ago
parent 2681d6b7c0
commit 23978a490f
  1. 10
      dxhy-erp/src/main/java/com/dxhy/erp/service/SNPushCheckRecordService.java

@ -311,11 +311,13 @@ public class SNPushCheckRecordService extends AbstractServiceAdapter {
} }
} }
log.info("获取的数据明细taxRate为={}",taxRate); log.info("获取的数据明细taxRate为={}",taxRate);
Map<String, String> updateParam = new HashMap<>(); if(StringUtils.isNotEmpty(taxRate)) {
updateParam.put("taxRate",taxRate); Map<String, String> updateParam = new HashMap<>();
updateParam.put("uuid",uuid); updateParam.put("taxRate", taxRate);
updateParam.put("uuid", uuid);
tdxRecordInvoiceDao.updateTaxRate(updateParam); tdxRecordInvoiceDao.updateTaxRate(updateParam);
}
} }
return "ok"; return "ok";
} }

Loading…
Cancel
Save