| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- namespace app\common\repositories\system\serve;
- use app\common\dao\system\serve\ServeMealDao;
- use app\common\repositories\BaseRepository;
- use FormBuilder\Factory\Elm;
- use think\exception\ValidateException;
- use think\facade\Route;
- class ServeMealRepository extends BaseRepository
- {
- protected $dao;
- public function __construct(ServeMealDao $dao)
- {
- $this->dao = $dao;
- }
- public function getList(array $where, int $page, int $limit)
- {
- $where['is_del'] = 0;
- $query = $this->dao->getSearch($where)->order('create_time DESC');
- $count = $query->count();
- $list = $query->page($page, $limit)->select();
- return compact('count','list');
- }
- public function updateForm($id)
- {
- $data = $this->dao->get($id);
- if(!$data) throw new ValidateException('数据不存在');
- $data = $data->toArray();
- return $this->form($id,$data);
- }
- public function form($id = null, array $formData = [])
- {
- $isCreate = is_null($id);
- $action = Route::buildUrl($isCreate ? 'systemServeMealCreate' : 'systemServeMealUpdate', $isCreate ? [] : compact('id'))->build();
- return Elm::createForm($action, [
- Elm::input('name', '套餐名称')->required(),
- Elm::radio('type', '套餐类型 ',1)->options([
- ['value' => 1, 'label' => '一号通商品采集'],
- ['value' => 2, 'label' => '一号通电子面单'],
- ]),
- Elm::number('price', '价格')->required(),
- Elm::number('num', '数量')->required(),
- Elm::radio('status', '状态', 1)->options([
- ['label' => '开启', 'value' => 1],
- ['label' => '关闭', 'value' => 0]
- ]),
- Elm::number('sort', '排序')->required(),
- ])->setTitle($isCreate ? '添加套餐' : '编辑套餐')->formData($formData);
- }
- public function delete($id)
- {
- $data = $this->dao->get($id);
- if(!$data) throw new ValidateException('数据不存在');
- $data->is_del = 1;
- $data->save();
- }
- public function QrCode(int $merId, array $data)
- {
- $ret = $this->dao->get($data['meal_id']);
- if(!$data) throw new ValidateException('数据不存在');
- $param = [
- 'status' => 0,
- 'is_del' => 0,
- 'mer_id' => $merId,
- 'type' => $data['type'],
- 'meal_id'=> $ret['meal_id'],
- ];
- $this->dao->getSearch($param)->finid();
- }
- public function setOrderSn()
- {
- list($msec, $sec) = explode(' ', microtime());
- $msectime = number_format((floatval($msec) + floatval($sec)) * 1000, 0, '', '');
- $orderId = 'cs' . $msectime . mt_rand(10000, max(intval($msec * 10000) + 10000, 98369));
- return $orderId;
- }
- }
|