This commit is contained in:
parent
bdd9375ab6
commit
c2f67e31d8
@ -2000,6 +2000,10 @@ class PatientOrderService extends BaseService
|
|||||||
|
|
||||||
if (!empty($order_prescription['data'])) {
|
if (!empty($order_prescription['data'])) {
|
||||||
foreach ($order_prescription['data'] as &$item) {
|
foreach ($order_prescription['data'] as &$item) {
|
||||||
|
|
||||||
|
$item['original_doctor'] = null;
|
||||||
|
$item['transfer_order'] = false;
|
||||||
|
|
||||||
//处理抄方情况
|
//处理抄方情况
|
||||||
$params = array();
|
$params = array();
|
||||||
$params['order_inquiry_id'] = $item['order_inquiry_id'];
|
$params['order_inquiry_id'] = $item['order_inquiry_id'];
|
||||||
@ -2014,7 +2018,8 @@ class PatientOrderService extends BaseService
|
|||||||
$TransferDoctor = UserDoctor::getOne($params, $fields);
|
$TransferDoctor = UserDoctor::getOne($params, $fields);
|
||||||
if (!empty($TransferDoctor)) {
|
if (!empty($TransferDoctor)) {
|
||||||
$TransferDoctor->doctor_title = DoctorTitleCode::getMessage($TransferDoctor->doctor_title);
|
$TransferDoctor->doctor_title = DoctorTitleCode::getMessage($TransferDoctor->doctor_title);
|
||||||
$item['TransferDoctor'] = $TransferDoctor;
|
$item['original_doctor'] = $TransferDoctor;
|
||||||
|
$item['transfer_order'] = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user