获取我的账户月账单明细数据
This commit is contained in:
parent
73a23b8edb
commit
ae71b4cb28
@ -217,6 +217,17 @@ class DoctorAccountService extends BaseService
|
||||
return fail();
|
||||
}
|
||||
|
||||
// 计算本次问诊服务包问诊金额
|
||||
if ($result['order_type'] == 4){
|
||||
$result['estimate_income'] = bcmul(
|
||||
(string)$order_service_package_detail['single_inquiry_price'],
|
||||
(string)$order_service_package_detail['service_count'],
|
||||
2
|
||||
);
|
||||
}else{
|
||||
$result['estimate_income'] = (string)$order_service_package_detail['service_price'];
|
||||
}
|
||||
|
||||
// 处理入账金额
|
||||
$result['estimate_income'] = bcmul((string)$order_service_package_detail['service_price'],"0.75",2);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user