_model = new BillingModel(); $this->_viewDatas['className'] = 'Billing'; $this->_viewPath .= strtolower($this->_viewDatas['className']); $this->_viewDatas['title'] = lang($this->_viewDatas['className'] . '.title'); $this->_viewDatas['class_icon'] = CLASS_ICONS[strtoupper($this->_viewDatas['className'])]; helper($this->_viewDatas['className']); //Default 회원정보 Category $this->_category = DEFAULTS['CATEGORY_BILLING']; $this->isRole('index'); //사용자정보 $this->_viewDatas['user'] = $this->getUserModel()->getEntity([$this->getUserModel()->getPrimaryKey() => $this->_viewDatas['auth'][AUTH_FIELDS['ID']]]); } final protected function getUserModel(): UserModel { return $this->_userModel = $this->_userModel ?: new UserModel(); } final protected function getOrderModel(): OrderModel { return $this->_orderModel = $this->_orderModel ?: new OrderModel(); } final protected function getOrderBillingModel(): OrderBillingModel { return $this->_orderBillingModel = $this->_orderBillingModel ?: new OrderBillingModel(); } public function getFields(string $action = ""): array { switch ($action) { case "insert": return ["price"]; break; case "index": case "excel": return ["title", "price", "email", "phone", "type", "status", "created_at"]; break; case "view": return ["title", "price", "email", "phone", "type", "status", "updated_at", "created_at", 'response']; break; default: return []; break; } } public function getFieldFilters(): array { return ["status"]; } public function getFieldBatchFilters(): array { return ["status"]; } final protected function getOrdersByBillingEntity(BillingEntity $entity): array { //청구서 연결 주문정보 가져오기 $orderBillings = $this->getOrderBillingModel()->getEntitys(['billing_uid' => $entity->getPrimaryKey()]); $orders = array(); foreach ($orderBillings as $orderBilling) { array_push( $orders, $this->getOrderModel()->getEntity( [$this->getOrderModel()->getPrimaryKey() => $orderBilling->order_uid] ) ); } return $orders; } //Insert관련 (결제처리용) protected function insert_form_process() { parent::insert_form_process(); } //Insert관련 private function linkOrderBilling(BillingEntity $entity, array $orders) { foreach ($orders as $order) { $this->getOrderBillingModel()->create([ "billing_uid" => $entity->getPrimaryKey(), 'order_uid' => $order->getPrimaryKey() ]); $this->getOrderModel()->modify($order, ['status' => DEFAULTS['STATUS']]); } } protected function insert_process() { //title지정하기 $this->_viewDatas['fieldDatas']['title'] = date("Y년m월") . " 청구서입니다."; //사용자정보 $this->_viewDatas['fieldDatas']['email'] = $this->_viewDatas['user']->email; $this->_viewDatas['fieldDatas']['phone'] = $this->_viewDatas['user']->phone; return parent::insert_process(); } final public function insert() { $msg = ""; try { $this->_viewDatas = $this->init(__FUNCTION__); $this->insert_validate(); //주문정보 가져오기 $order_uids = $this->request->getVar('order_uids') ?: throw new \Exception("주문정보가 지정되지 않았습니다."); $orders = array(); foreach ($order_uids as $order_uid) { array_push($orders, $this->getOrderModel()->getEntity([$this->getOrderModel()->getPrimaryKey() => $order_uid])); } //Transaction 시작 $this->_model->transStart(); //Billing 생성 $entity = $this->insert_process(); //DB연결용 $this->linkOrderBilling($entity, $orders); //Transaction Commit $this->_model->transComplete(); $msg = "{$this->_viewDatas['title']}에서 {$entity->getTitle()}의 " . __FUNCTION__ . " 완료하였습니다."; //기존 return_url 무시 $this->_session->getFlashdata(SESSION_NAMES['RETURN_URL']); return redirect()->to(URLS['Billing']); } catch (\Exception $e) { //Transaction Rollback $this->_model->transRollback(); $msg = "{$this->_viewDatas['title']}에서 " . __FUNCTION__ . " 실패하였습니다.\n" . $e->getMessage(); log_message("error", $e->getMessage()); $this->_session->keepFlashdata(SESSION_NAMES['RETURN_URL']); return redirect()->back()->withInput(); } finally { $this->_session->setFlashdata("return_message", $msg); } } //Update관련 final public function update_form($uid) { try { $this->_viewDatas = $this->init(__FUNCTION__); //청구서정보 가져오기 $this->_viewDatas['entity'] = $entity = $this->_model->getEntity([$this->_model->getPrimaryKey() => $uid]); //청구서 연결 주문정보 가져오기 $this->_viewDatas['orders'] = $this->getOrdersByBillingEntity($entity); if (!count($this->_viewDatas['orders'])) { throw new \Exception("해당하는 주문정보가 없습니다."); } $this->update_form_process($entity); helper(['form']); $this->_session->keepFlashdata(SESSION_NAMES['RETURN_URL']); return view($this->_viewPath . '/update', ['viewDatas' => $this->_viewDatas]); } catch (\Exception $e) { log_message("error", $e->getMessage()); return redirect()->to($this->_session->getFlashdata(SESSION_NAMES['RETURN_URL']) ?: "/")->with('return_message', $e->getMessage()); } } //View 관련 protected function view_process($entity) { $entity = parent::view_process($entity); //청구서 연결 주문정보 가져오기 $this->_viewDatas['orders'] = $this->getOrdersByBillingEntity($entity); if (!count($this->_viewDatas['orders'])) { throw new \Exception("해당하는 주문정보가 없습니다."); } return $entity; } //Index관련 protected function index_setCondition() { //사용자정보(user_uid)에 맞는 Biiling정보 가져오기 $this->_model->where('user_uid', $this->_session->get(SESSION_NAMES['AUTH'])[AUTH_FIELDS['ID']]); parent::index_setCondition(); } //추가기능 //메일발송 final protected function sendMail(BillingEntity $entity): bool { $this->_viewDatas = $this->init(__FUNCTION__); $this->_viewDatas['entity'] = $entity; $this->_viewDatas['orders'] = $this->getOrdersByBillingEntity($entity); $mail = \Config\Services::email(); $mail->setFrom(MALLS['support'], MALLS['title'], MALLS['master']); $mail->setTo($entity->email); $mail->setCC(MALLS['master']); $mail->setSubject($entity->getTitle()); $mail->setMessage(view( $this->_viewPath . '/billing', ['viewDatas' => $this->_viewDatas] )); return $mail->send(); } }