init
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -146,7 +146,7 @@ class Work extends CI_Controller | ... | @@ -146,7 +146,7 @@ class Work extends CI_Controller |
| 146 | $recordUrl = $this->config->item('apiBaseUrl') . 'order/orderOperatorRecord/' . $id; | 146 | $recordUrl = $this->config->item('apiBaseUrl') . 'order/orderOperatorRecord/' . $id; |
| 147 | $result2 = file_get_contents($recordUrl); | 147 | $result2 = file_get_contents($recordUrl); |
| 148 | $json2 = json_decode($result2); | 148 | $json2 = json_decode($result2); |
| 149 | $ret2 = $json2->data ? $json2 : array(); | 149 | $ret2 = isset($json2->data) ? $json2 : array(); |
| 150 | 150 | ||
| 151 | $data = array( | 151 | $data = array( |
| 152 | 'clientInfoOutputVO' => $ret->clientInfoOutputVO, | 152 | 'clientInfoOutputVO' => $ret->clientInfoOutputVO, | ... | ... |
-
Please register or sign in to post a comment