private function getNewBookingId($patientUserName = '******', $doctorName = 'malijuanmlj')
    {/*{{{*/
        $userId = $this->getPatient($patientUserName)->user->id;
        $doctorId = $this->getDoctor($doctorName)->id;
        $schedule = '2013-11-19,上午';//nf
        $disease = '疾病描述';
        $bookingGoal = 3;
        $hospital = '就诊医院';
        $userCategory = BookingOrder::USER_CATEGORY_OLD;
        $description = '详情描述:按时;付了款;是来得快积分;拉会计师的;浪费空间;了思考及地方;阿贾克斯的f';
        $attachmentIds = '';
        $deviceType = 'ios';
        $patientId = $this->getPatient($patientUserName)->id;

        $databucket = new DataBucket();
        $databucket->newBookingOrder($userId, $doctorId, $schedule, $disease, $bookingGoal, 
            $hospital, $userCategory, $description, $attachmentIds, $deviceType, $patientId);
        $res = $databucket->content;
        return $res['orderId'];
    }/*}}}*/