更新员工报餐统计接口,加入明天手工报餐记录的统计。

This commit is contained in:
ryoeiken 2021-01-27 16:41:52 +08:00
parent 89534b1bdc
commit 95d131d80d
2 changed files with 2 additions and 1 deletions

View File

@ -547,6 +547,7 @@ public class ClientController extends BaseController {
result.put("reports", orderDaoService.getStatisticsReportMealsOfTomorrow());
result.put("staffs", orderDaoService.getStatisticsStaffOfTomorrow());
result.put("stops", orderDaoService.getStopOrderOfTomorrow());
result.put("order",orderDaoService.statisGetOrderOfDate(DateUtil.offsetDay(new Date(), 1), 1, 100) );
return result;
}

View File

@ -91,7 +91,7 @@ import {
getStatisGetOrderOfWeek,
listOrder,
updateOrder
} from "@/api/fantang/order";
} from "../../../api/fantang/order";
export default {
name: "Order",