337 lines
13 KiB
PHP
337 lines
13 KiB
PHP
<?php
|
||
|
||
namespace App\Services;
|
||
|
||
use App\Constants\HttpEnumCode;
|
||
use App\Exception\BusinessException;
|
||
use App\Model\DoctorPharmacistCert;
|
||
use App\Model\HospitalDepartmentCustom;
|
||
use App\Model\OrderInquiryCase;
|
||
use App\Model\OrderPrescription;
|
||
use App\Model\OrderPrescriptionIcd;
|
||
use App\Model\OrderPrescriptionProduct;
|
||
use App\Model\OrderProductItem;
|
||
use App\Model\User;
|
||
use App\Model\UserDoctor;
|
||
use Extend\Alibaba\Oss;
|
||
use Extend\Ca\Ca;
|
||
use Hyperf\Contract\LengthAwarePaginatorInterface;
|
||
use Intervention\Image\ImageManager;
|
||
use TCPDF;
|
||
|
||
class OrderPrescriptionService extends BaseService
|
||
{
|
||
/**
|
||
* 获取医生是否存在被驳回处方
|
||
* @param string $doctor_id 医生id
|
||
* @return bool
|
||
*/
|
||
public function getDoctorExistsAuditFail(string $doctor_id): bool
|
||
{
|
||
$params = array();
|
||
$params['doctor_id'] = $doctor_id;
|
||
$params['pharmacist_audit_status'] = 2;// 处方审核状态(0:审核中 1:审核成功 2:审核驳回)
|
||
$params['platform_audit_status'] = 1;// 处方平台审核状态(0:审核中 1:审核成功 2:审核驳回)
|
||
$params['is_delete'] = 0;// 是否删除(0:否 1:是)
|
||
return OrderPrescription::getExists($params);
|
||
}
|
||
|
||
/**
|
||
* 获取药师待审核处方-分页
|
||
* @param string $pharmacist_id 药师id
|
||
* @param int $pharmacist_audit_status 药师审核状态(0:审核中 1:审核成功 2:审核驳回)
|
||
* @param int $platform_audit_status
|
||
* @param string|int $page
|
||
* @param string|int $per_page
|
||
* @return array
|
||
*/
|
||
public function getPharmacistWaitAuditPage(string $pharmacist_id, int $pharmacist_audit_status, int $platform_audit_status, string|int $page = 1, string|int $per_page = 10): array
|
||
{
|
||
$params = array();
|
||
$params['pharmacist_id'] = $pharmacist_id;
|
||
$params['pharmacist_audit_status'] = $pharmacist_audit_status; // 药师审核状态(0:审核中 1:审核成功 2:审核驳回)
|
||
$params['platform_audit_status'] = $platform_audit_status; // 处方平台审核状态(0:审核中 1:审核成功 2:审核驳回)
|
||
|
||
return OrderPrescription::getPage($params, ['*'], $page, $per_page);
|
||
}
|
||
|
||
/**
|
||
* 获取处方中开方药品
|
||
* @param string|int $order_prescription_id
|
||
* @return array
|
||
*/
|
||
public function getproductList(string|int $order_prescription_id): array
|
||
{
|
||
$params = array();
|
||
$params['order_prescription_id'] = $order_prescription_id;
|
||
$order_prescription_products = OrderPrescriptionProduct::getLimit($params);
|
||
if (empty($order_prescription_products)) {
|
||
return [];
|
||
}
|
||
|
||
$result = [];
|
||
|
||
foreach ($order_prescription_products as $order_prescription_product) {
|
||
$data = array();
|
||
$data['product_id'] = $order_prescription_product['product_id'];
|
||
$data['prescription_product_num'] = $order_prescription_product['prescription_product_num'];
|
||
$data['product_name'] = $order_prescription_product['product_name'] ?? "";
|
||
$data['product_spec'] = $order_prescription_product['product_spec'] ?? "";
|
||
$data['single_unit'] = $order_prescription_product['single_unit'] ?? "";
|
||
$data['single_use'] = $order_prescription_product['single_use'] ?? "";
|
||
$data['packaging_unit'] = $order_prescription_product['packaging_unit'] ?? "";
|
||
$data['frequency_use'] = $order_prescription_product['frequency_use'] ?? "";
|
||
$data['available_days'] = $order_prescription_product['available_days'] ?? 0;
|
||
|
||
$result[] = $data;
|
||
}
|
||
|
||
unset($order_product_items);
|
||
|
||
return $result;
|
||
}
|
||
|
||
/**
|
||
* 获取患者某一状态下的处方数量
|
||
* @param string $patient_id 患者id
|
||
* @param int $prescription_status 处方状态(1:待审核 2:待使用 3:已失效 4:已使用)
|
||
* @return int
|
||
*/
|
||
public function getPatientPrescriptionWithStatus(string $patient_id, int $prescription_status): int
|
||
{
|
||
$params = array();
|
||
$params['patient_id'] = $patient_id;
|
||
$params['prescription_status'] = $prescription_status;
|
||
$params['pharmacist_audit_status'] = 1;
|
||
return OrderPrescription::getCount($params);
|
||
}
|
||
|
||
// 医生开具处方
|
||
public function doctorOpenPrescription(string $order_prescription_id,string $user_type)
|
||
{
|
||
try {
|
||
// 获取处方数据
|
||
$params = array();
|
||
$params['order_prescription_id'] = $order_prescription_id;
|
||
$order_prescription = OrderPrescription::getOne($params);
|
||
if (empty($order_prescription)){
|
||
throw new BusinessException("处方数据错误");
|
||
}
|
||
|
||
if (empty($order_prescription['doctor_created_time'])){
|
||
throw new BusinessException("医生开方日期错误");
|
||
}
|
||
|
||
// 获取处方关联疾病数据
|
||
$params = array();
|
||
$params['order_prescription_id'] = $order_prescription_id;
|
||
$order_prescription_icd = OrderPrescriptionIcd::getOne($params);
|
||
if (empty($order_prescription_icd)){
|
||
throw new BusinessException("处方疾病数据错误");
|
||
}
|
||
|
||
// 获取处方关联商品数据
|
||
$params = array();
|
||
$params['order_prescription_id'] = $order_prescription_id;
|
||
$order_prescription_product = OrderPrescriptionProduct::getList($params);
|
||
if (empty($order_prescription_product)){
|
||
throw new BusinessException("处方药品数据错误");
|
||
}
|
||
|
||
// 获取医生数据
|
||
$params = array();
|
||
$params['doctor_id'] = $order_prescription['doctor_id'];
|
||
$user_doctor = UserDoctor::getOne($params);
|
||
if (empty($user_doctor)){
|
||
throw new BusinessException("医生数据错误");
|
||
}
|
||
|
||
// 获取医生自定义科室数据
|
||
$params = array();
|
||
$params['department_custom_id'] = $user_doctor['department_custom_id'];
|
||
$hospital_department_custom = HospitalDepartmentCustom::getOne($params);
|
||
if (empty($hospital_department_custom)){
|
||
throw new BusinessException("医生自定义数据错误");
|
||
}
|
||
|
||
// 获取处方关联病例数据
|
||
$params = array();
|
||
$params['order_inquiry_id'] = $order_prescription['order_inquiry_id'];
|
||
$order_inquiry_case = OrderInquiryCase::getOne($params);
|
||
if (empty($order_inquiry_case)){
|
||
throw new BusinessException("处方病例数据错误");
|
||
}
|
||
|
||
// 处理疾病数据
|
||
$icd_name = array_column($order_prescription_icd->toArray(),'icd_name');
|
||
if (!empty($icd_name)){
|
||
$icd_name = implode(';',$icd_name);
|
||
}else{
|
||
$icd_name = "";
|
||
}
|
||
|
||
// $ca = new Ca();
|
||
//
|
||
// // 获取云证书签名
|
||
// $data = array();
|
||
// $data['created_at'] = $order_prescription['doctor_created_time'];
|
||
// $data['department_custom_name'] = $hospital_department_custom['department_name'] ?: "";
|
||
// $data['user_name'] = $order_prescription['patient_name'];
|
||
// $data['sex'] = sexToStringSex($order_prescription['patient_sex']);
|
||
// $data['age'] = $order_prescription['patient_age'];
|
||
// $data['allergy_history'] = $order_inquiry_case['allergy_history'] ?: "无";
|
||
// $data['icd_name'] = $icd_name;
|
||
// $data['doctor_advice'] = $order_prescription['doctor_advice'] ?: "无";
|
||
//
|
||
// // 商品数据
|
||
// $data['product'] = array();
|
||
// foreach ($order_prescription_product as $item){
|
||
// $product = array();
|
||
// $product['product_name'] = $item['product_name'] . "(" . $item['product_spec'] . ")"; // 商品名称+商品规格
|
||
// $product['single_unit'] = $item['single_unit'] ?: ""; // 单次剂量(例:1次1包)
|
||
// $product['frequency_use'] = $item['frequency_use'] ?: ""; // 使用频率(例:1天3次)
|
||
// $product['single_use'] = $item['single_use'] ?: ""; // 单次用法(例:口服)
|
||
// $product['prescription_product_num'] = $item['prescription_product_num'] . $item['packaging_unit']; // 商品数量 + 基本包装单位(例:盒/瓶)
|
||
// $data['product'][] = $product;
|
||
// }
|
||
//
|
||
// $cert_sign_result = $ca->getCertSign("491925054435950592", "491925054435950592", $data);
|
||
//
|
||
// // 验证云证书签名-验证无需处理,只要不返回错误即可
|
||
// $ca->verifyPkcs7($cert_sign_result['signP7'],$data);
|
||
|
||
// 生成处方pdf图片
|
||
$oss = new Oss();
|
||
|
||
$filename = "basic/file/prescription.jpg";
|
||
$sign_image = $oss->getObjectToRAM($filename);
|
||
$manager = new ImageManager();
|
||
|
||
$image = $manager->make($sign_image);
|
||
|
||
$fontPath = './runtime/ZiYuYongSongTi-2.ttf';
|
||
|
||
// 处方号
|
||
$image->text($order_prescription['prescription_code'], 1480, 540, function ($font) use($fontPath) {
|
||
$font->file($fontPath);
|
||
$font->size(60);
|
||
$font->align('left');
|
||
});
|
||
|
||
// 日期
|
||
$image->text(date('Y-m-d',strtotime($order_prescription['doctor_created_time'])), 354, 675, function ($font) use($fontPath) {
|
||
$font->file($fontPath);
|
||
$font->size(60);
|
||
$font->align('left');
|
||
});
|
||
|
||
// 科室
|
||
$image->text($hospital_department_custom['department_name'] ?: "", 1385, 675, function ($font) use($fontPath) {
|
||
$font->file($fontPath);
|
||
$font->size(60);
|
||
$font->align('left');
|
||
});
|
||
|
||
// 姓名
|
||
$image->text($order_prescription['patient_name'], 354, 795, function ($font) use($fontPath) {
|
||
$font->file($fontPath);
|
||
$font->size(60);
|
||
$font->align('left');
|
||
});
|
||
|
||
// 性别
|
||
$image->text(sexToStringSex($order_prescription['patient_sex']), 1385, 790, function ($font) use($fontPath) {
|
||
$font->file($fontPath);
|
||
$font->size(60);
|
||
$font->align('left');
|
||
});
|
||
|
||
// 年龄
|
||
$image->text($order_prescription['patient_age'], 354, 900, function ($font) use($fontPath) {
|
||
$font->file($fontPath);
|
||
$font->size(60);
|
||
$font->align('left');
|
||
});
|
||
|
||
// 过敏史
|
||
$image->text($order_inquiry_case['allergy_history'] ?: "无", 405, 1030, function ($font) use($fontPath) {
|
||
$font->file($fontPath);
|
||
$font->size(60);
|
||
$font->align('left');
|
||
});
|
||
|
||
// 初步诊断
|
||
$image->text($icd_name, 445, 1145, function ($font) use($fontPath) {
|
||
$font->file($fontPath);
|
||
$font->size(60);
|
||
$font->align('left');
|
||
});
|
||
|
||
// 医生建议
|
||
$image->text($order_prescription['doctor_advice'] ?: "无", 445, 1252, function ($font) use($fontPath) {
|
||
$font->file($fontPath);
|
||
$font->size(60);
|
||
$font->align('left');
|
||
});
|
||
|
||
// 商品数据
|
||
foreach ($order_prescription_product as $key => $item){
|
||
if ($key <= 2){
|
||
$x_axis = 229;
|
||
$y_axis = 1600 + $key * 350;
|
||
}else{
|
||
$x_axis = 1240;
|
||
$y_axis = 1600 + ($key - 3) * 350;
|
||
}
|
||
|
||
// 商品名称
|
||
$image->text($item['product_name'], $x_axis, $y_axis, function ($font) use($fontPath) {
|
||
$font->file($fontPath);
|
||
$font->size(50);
|
||
$font->align('left');
|
||
});
|
||
|
||
// 用量
|
||
$image->text("用量:" . $item['single_unit'] . " " . $item['frequency_use'], $x_axis, $y_axis+90, function ($font) use($fontPath) {
|
||
$font->file($fontPath);
|
||
$font->size(50);
|
||
$font->align('left');
|
||
});
|
||
|
||
// 用法
|
||
$image->text("用法:" . $item['single_use'], $x_axis, $y_axis+180, function ($font) use($fontPath) {
|
||
$font->file($fontPath);
|
||
$font->size(50);
|
||
$font->align('left');
|
||
});
|
||
}
|
||
|
||
// 生成图片
|
||
$img_result = (string) $image->encode('png', 75);
|
||
|
||
// 图片生成pdf
|
||
$pdf = new TCPDF('P', 'mm', 'A4', true, 'UTF-8', false);
|
||
|
||
$pdf->AddPage();
|
||
$pdf->Image('@' . $img_result, 10, 10, 0, 0, '', '', '', false, 300, '', false, false, 0, false, false, false);
|
||
|
||
// 生成本地文件
|
||
$pdf->Output(dirname(__DIR__, 2) . "/prescription_img.pdf","F");
|
||
|
||
// 生成文件流
|
||
$pdf_result = $pdf->Output("","S");
|
||
|
||
// 上传oss
|
||
$filename = "applet/prescription/" . $order_prescription['order_prescription_id'] . '.' . 'pdf';
|
||
|
||
$prescription_pdf_url = $oss->putObject($filename, $pdf_result);
|
||
|
||
|
||
|
||
|
||
|
||
} catch (\Exception $e) {
|
||
dump($e->getMessage());
|
||
}
|
||
}
|
||
} |