isRole('administrator'); if(!$is_amdin){ $grid->model()->where(['organization_id'=>Admin::user()->org_id,'product_type'=>4]); } $grid->model()->GroupBy('patient_id'); $grid->column('orderPatient.name', __('姓名')); $grid->column('orderUser.nickname', __('监护人')); $grid->column('orderPatient.phone', __('监护人手机号')); $grid->column('orderPatient.birthday', __('出生日期')); $grid->column('patient_id', __('备注'))->display(function ($w){ return PatientRemark::where(['org_id'=>Admin::user()->org_id,'patient_id'=>$w])->value('remark'); }); $grid->filter(function ($flter){ $flter->like('orderPatient.name','请输入用户姓名'); $flter->like('orderUser.nickname','请输入监护人姓名'); $flter->between('orderUser.birthday','生日')->datetime(); }); return $grid; } /** * Make a show builder. * * @param mixed $id * @return Show */ protected function detail($id) { $show = new Show(Order::findOrFail($id)); $show->field('id', __('Id')); $show->field('user_id', __('User id')); $show->field('docter_id', __('Docter id')); $show->field('patient_id', __('Patient id')); $show->field('organization_id', __('Organization id')); $show->field('order_sn', __('Order sn')); $show->field('payment_type', __('Payment type')); $show->field('product_type', __('Product type')); $show->field('order_status', __('Order status')); $show->field('payment_status', __('Payment status')); $show->field('total_amount', __('Total amount')); $show->field('payment_amount', __('Payment amount')); $show->field('discount_amount', __('Discount amount')); $show->field('payment_time', __('Payment time')); $show->field('created_at', __('Created at')); $show->field('updated_at', __('Updated at')); return $show; } /** * Make a form builder. * * @return Form */ protected function form() { $form = new Form(new Order()); $form->number('user_id', __('User id')); $form->number('docter_id', __('Docter id')); $form->number('patient_id', __('Patient id')); $form->number('organization_id', __('Organization id')); $form->text('order_sn', __('Order sn')); $form->switch('payment_type', __('Payment type'))->default(1); $form->switch('product_type', __('Product type'))->default(1); $form->switch('order_status', __('Order status'))->default(1); $form->switch('payment_status', __('Payment status'))->default(1); $form->number('total_amount', __('Total amount')); $form->number('payment_amount', __('Payment amount')); $form->number('discount_amount', __('Discount amount')); $form->number('payment_time', __('Payment time')); return $form; } }