封装获取服务包当前月时间区间方法,增加获取患者服务包订单服务权益详情返回字段

This commit is contained in:
2024-04-16 14:56:14 +08:00
parent 70ef1ae117
commit bd5c1a1cd3
2 changed files with 37 additions and 0 deletions
+5
View File
@@ -2893,6 +2893,11 @@ class PatientOrderService extends BaseService
// 获取药品剩余数量
}
// 处理当月时间
$current_month_date = $OrderServicePackageService->getCurrentMonthDate($order_service_package['start_time']);
$result['order_service_package']['current_month_start_date'] = $current_month_date['current_month_start_date'];
$result['order_service_package']['current_month_finish_date'] = $current_month_date['current_month_finish_date'];
return success($result);
}