Commit 1ddb0d86db454a686dcb1b99ebc628ce4b87e7db

Authored by liquanyu
1 parent f648748583

孕妇学校

Showing 1 changed file with 2 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/CourseFacade.java View file @ 1ddb0d8
... ... @@ -529,6 +529,7 @@
529 529 tableItem.put("courseTypeName", "合计");
530 530 tableItem.put("courseName",courseModelList.size());
531 531 tableItem.put("orders", orderAll);
  532 + tableItem.put("sends", sendAll);
532 533 tableItem.put("ordersRate", sendAll == 0 ? "0.00" : df.format((double) orderAll / sendAll * 100) + "%");
533 534 tableItem.put("signs",signsAll);
534 535 tableItem.put("signsRate",orderAll == 0 ? "0.00" : df.format((double) signsAll / orderAll * 100) + "%");
... ... @@ -536,7 +537,7 @@
536 537  
537 538 chartData.put("titles",titles);
538 539 chartData.put("sends",sends);
539   - chartData.put("orders",orders);
  540 + chartData.put("orders", orders);
540 541 chartData.put("signs",signs);
541 542 }
542 543