新增地址

This commit is contained in:
2023-04-13 18:06:01 +08:00
parent ddb5ce764f
commit 66dd47c3b3
3 changed files with 67 additions and 0 deletions
+11
View File
@@ -175,6 +175,17 @@ class PatientOrderController extends AbstractController
return $this->response->json($data);
}
/**
* 获取药品订单物流数据
* @return ResponseInterface
*/
public function getPatientProductOrderLogistics(): ResponseInterface
{
$PatientOrderService = new PatientOrderService();
$data = $PatientOrderService->getPatientProductOrderLogistics();
return $this->response->json($data);
}
/**
* 获取处方订单列表
* @return ResponseInterface