Merge branch 'long-0507'

This commit is contained in:
2026-05-08 16:27:41 +08:00
8 changed files with 394 additions and 4 deletions
@@ -105,6 +105,17 @@ class PrescriptionOrderController extends BaseAdminController
return $this->success('保存成功', $result);
}
public function updateAmount()
{
$params = (new PrescriptionOrderValidate())->post()->goCheck('updateAmount');
$result = PrescriptionOrderLogic::updateAmount($params, $this->adminId, $this->adminInfo);
if ($result === false) {
return $this->fail(PrescriptionOrderLogic::getError());
}
return $this->success('修改成功');
}
/**
* 修改关联处方的患者姓名与手机号(订单详情场景)
*/