StoreClerk::class ] ]); } //门店中心 public function actionStaffCenter() { $form = new StoreClerkForm(); $form->store_id = $this->store_id; $form->store_clerk_id = $this->store_clerk_id; return $this->asJson($form->staffCenter()); } //订单列表 public function actionOfflineOrder() { $form = new StoreClerkForm(); $form->attributes = get_params(); $form->store_id = $this->store_id; $form->store_clerk_id = $this->store_clerk_id; return $this->asJson($form->offlineOrder()); } //订单详情 public function actionOrderDetail() { $form = new StoreClerkForm(); $form->attributes = all_params(); $form->store_id = $this->store_id; $form->store_clerk_id = $this->store_clerk_id; return $this->asJson($form->orderDetail()); } //订单发货 public function actionSendOrder() { $form = new StoreClerkForm(); $form->attributes = all_params(); $form->store_id = $this->store_id; $form->store_clerk_id = $this->store_clerk_id; return $this->asJson($form->sendOrder()); } //订单核销 public function actionClerkOrder() { $form = new StoreClerkForm(); $form->attributes = all_params(); $form->store_id = $this->store_id; $form->store_clerk_id = $this->store_clerk_id; return $this->asJson($form->clerkOrder()); } //订单核销详情 public function actionClerk() { $form = new StoreClerkForm(); $form->attributes = get_params(); $form->store_id = $this->store_id; $form->store_clerk_id = $this->store_clerk_id; return $this->asJson($form->clerkInfo()); } //到货通知 public function actionNotice() { $form = new StoreClerkForm(); $form->attributes = all_params(); $form->store_id = $this->store_id; $form->store_clerk_id = $this->store_clerk_id; $form->order_id = post_params('order_ids'); return $this->asJson($form->notice()); } public function actionSetOrderWords() { $form = new StoreClerkForm(); $form->attributes = all_params(); $form->store_id = $this->store_id; $form->store_clerk_id = $this->store_clerk_id; return $this->asJson($form->setOrderWords()); } public function actionOrderCancel() { $form = new StoreClerkForm(); $form->attributes = all_params(); $form->store_id = $this->store_id; $form->store_clerk_id = $this->store_clerk_id; return $this->asJson($form->orderCancel()); } public function actionApplyOrderDelete() { $form = new StoreClerkForm(); $form->attributes = all_params(); $form->store_id = $this->store_id; $form->store_clerk_id = $this->store_clerk_id; return $this->asJson($form->applyOrderDelete()); } public function actionHandleRefund() { $form = new StoreClerkForm(); $form->attributes = all_params(); $form->store_id = $this->store_id; $form->store_clerk_id = $this->store_clerk_id; return $this->asJson($form->handleRefund()); } /** * 订单确认收货 */ public function actionConfirm() { $form = new StoreClerkForm(); $form->attributes = all_params(); $form->store_id = $this->store_id; $form->store_clerk_id = $this->store_clerk_id; return $this->asJson($form->confirm()); } }