新增api通知处方生成功能
This commit is contained in:
@@ -58,7 +58,6 @@ class PrescriptionController extends BaseAppController
|
||||
{
|
||||
// public $optional = ['process-rule-list', 'process-note-list'];
|
||||
|
||||
public $optional = ['notify-order-generation'];
|
||||
public function beforeAction($action){
|
||||
$ret = parent::beforeAction($action);
|
||||
|
||||
@@ -699,41 +698,6 @@ class PrescriptionController extends BaseAppController
|
||||
}
|
||||
}
|
||||
|
||||
public function actionNotifyOrderGeneration()
|
||||
{
|
||||
$param = \Yii::$app->request->post();
|
||||
$this->requestValidate($param, [
|
||||
['prescription', 'required'],
|
||||
['product_order', 'required'],
|
||||
]);
|
||||
$prescription = $param['prescription'];
|
||||
$productOrder = $param['product_order'];
|
||||
//触发处方自动失效事件
|
||||
$prescriptionEvent = new PrescriptionEvent();
|
||||
$prescriptionEvent->prescription = $prescription;
|
||||
$prescriptionEvent->sender = $this;
|
||||
\Yii::$app->trigger(Prescription::AUTO_EXPIRE, $prescriptionEvent);
|
||||
|
||||
|
||||
//触发订单创建事件
|
||||
$event = new ProductOrderEvent();
|
||||
$event->order = $productOrder;
|
||||
$event->sender = $this;
|
||||
\Yii::$app->trigger(ProductOrder::EVENT_CREATED, $event);
|
||||
|
||||
//处方开具待支付订阅消息通知
|
||||
\Yii::$app->queue->push(new PrescriptionCreated([
|
||||
'orderId' => $prescription['id'],
|
||||
]));
|
||||
|
||||
|
||||
//处方生成短信通知药师审方
|
||||
\Yii::$app->queue->push(new WaitApprovalMessageJob([
|
||||
'orderId' => $prescription['id'],
|
||||
]));
|
||||
return ['ok'];
|
||||
}
|
||||
|
||||
/**
|
||||
* 中药剂数列表
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user