addClassName('Payment'); } public function getModelClass(): PaymentModel { return new PaymentModel(); } public function getEntityClass(): PaymentEntity { return new PaymentEntity(); } public function getFormFields(): array { return [ "clientinfo_uid", "serviceinfo_uid", "title", "amount", "billing", "billing_at", "pay", "status", ]; } public function getFormFilters(): array { return [ 'clientinfo_uid', 'billing', 'pay', 'status', 'user_uid', ]; } public function getIndexFields(): array { return [ 'clientinfo_uid', 'billing', 'title', 'amount', 'billing_at', 'pay', 'status', 'updated_at', 'countdown', 'user_uid', ]; } public function getBatchjobFields(): array { return ['clientinfo_uid', 'billing', 'pay', 'status']; } public function getBatchjobButtons(): array { return [ 'invoice' => '청구서 발행', ]; } //기본 기능부분 //FieldForm관련용 public function getFormOption(string $field, array $options = []): array { switch ($field) { case 'user_uid': $options = $this->getUserService()->getEntities(); break; case 'clientinfo_uid': $options = $this->getClientService()->getEntities(); break; case 'serviceinfo_uid': $options = $this->getServiceService()->getEntities(); break; default: $options = parent::getFormOption($field, $options); break; } return $options; } //List 검색용 //OrderBy 처리 public function setOrderBy(mixed $field = null, mixed $value = null): void { $this->getModel()->orderBy('billing_at ASC'); parent::setOrderBy($field, $value); } //총 미납건수, 금액 public function getUnPaids(string $group, array $where = []): array { $rows = $this->getModel()->groupBy($group) ->select("COUNT(uid) as cnt, SUM(amount) as amount") ->where(['billing_at <=' => date('Y-m-d')]) ->where(['status' => STATUS['UNPAID']]) ->where($where) ->get()->getResult(); return $rows; } //생성 public function create(array $formDatas): PaymentEntity { // 관리자 UID는 현재 인증된 사용자로 설정 $formDatas['user_uid'] = $this->getMyAuth()->getUIDByAuthInfo(); dd($formDatas); return parent::create($formDatas); } //수정 public function modify(mixed $entity, array $formDatas): PaymentEntity { // 관리자 UID는 현재 인증된 사용자로 설정 $formDatas['user_uid'] = $this->getMyAuth()->getUIDByAuthInfo(); return parent::modify($entity, $formDatas); } }