|
@@ -171,10 +171,10 @@ public class BillGenerationServiceImpl {
|
|
|
}
|
|
|
|
|
|
|
|
|
- public void generateBill(String id, ServletRequestAttributes attributes) {
|
|
|
+ public void generateBill(String id) {
|
|
|
log.info("开始给抄表记录:{},生成账单信息", id);
|
|
|
SwWaterUsageEntryDo swWaterUsageEntryDo = swWaterUsageEntryService.getById(id);
|
|
|
- this.asyncGenerateBill(Collections.singletonList(swWaterUsageEntryDo), attributes);
|
|
|
+ this.generateBill(Collections.singletonList(swWaterUsageEntryDo));
|
|
|
}
|
|
|
|
|
|
|