|
@@ -94,16 +94,17 @@ class Patient extends ZskkApiController
|
|
|
*/
|
|
|
public function postExamReport(PatientServies $servies): void
|
|
|
{
|
|
|
- try {
|
|
|
+// try {
|
|
|
$params = $this->request->post();
|
|
|
+ var_dump($params);die;
|
|
|
$params = $this->getDecryptData($params['data']);
|
|
|
$params = $servies->makeMappingData($params,'0','postExamReport');
|
|
|
$data = $servies->postExamReport($params);
|
|
|
$this->success($data,'');
|
|
|
- }catch (\Exception $e)
|
|
|
- {
|
|
|
- $this->error($e->getMessage());
|
|
|
- }
|
|
|
+// }catch (\Exception $e)
|
|
|
+// {
|
|
|
+// $this->error($e->getMessage());
|
|
|
+// }
|
|
|
}
|
|
|
|
|
|
/**
|