diff --git a/app/adminapi/lists/bid/BidBiddingDecisionLists.php b/app/adminapi/lists/bid/BidBiddingDecisionLists.php index 74d1cf07a..e56cfef0c 100644 --- a/app/adminapi/lists/bid/BidBiddingDecisionLists.php +++ b/app/adminapi/lists/bid/BidBiddingDecisionLists.php @@ -55,7 +55,7 @@ class BidBiddingDecisionLists extends BaseAdminDataLists implements ListsSearchI public function lists(): array { return BidBiddingDecision::where($this->searchWhere) - ->field(['id', 'project_id', 'project_estimation', 'bidding_project_fund_source', 'bidding_time', 'buy_bid_document_date', 'bid_type', 'competitor', 'is_margin', 'margin_amount', 'bid_opening_date', 'margin_amount_return_date', 'is_internal_resources', 'project_assurance']) + ->field(['*']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() diff --git a/app/adminapi/lists/bid/BidBuyBiddingDocumentLists.php b/app/adminapi/lists/bid/BidBuyBiddingDocumentLists.php index 157e691c0..5e2c07484 100644 --- a/app/adminapi/lists/bid/BidBuyBiddingDocumentLists.php +++ b/app/adminapi/lists/bid/BidBuyBiddingDocumentLists.php @@ -55,8 +55,7 @@ class BidBuyBiddingDocumentLists extends BaseAdminDataLists implements ListsSear public function lists(): array { return BidBuyBiddingDocument::where($this->searchWhere) - ->field(['id', 'project_id', 'bid_document_no', 'invite_tenders_company_name', 'bid_company_name', 'buyer', 'amount', 'project_fund_source', 'bid_date', 'buy_date', 'invite_tenders_type', 'bid_address', 'is_margin', 'margin_amount', 'bid_project_overview', 'project_desc', 'annex']) - ->limit($this->limitOffset, $this->limitLength) + ->field(['*'])->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); diff --git a/app/adminapi/lists/bid/BidDocumentExaminationLists.php b/app/adminapi/lists/bid/BidDocumentExaminationLists.php index 673cb6189..245cc31bb 100644 --- a/app/adminapi/lists/bid/BidDocumentExaminationLists.php +++ b/app/adminapi/lists/bid/BidDocumentExaminationLists.php @@ -55,8 +55,7 @@ class BidDocumentExaminationLists extends BaseAdminDataLists implements ListsSea public function lists(): array { return BidDocumentExamination::where($this->searchWhere) - ->field(['id', 'approve_id', 'buy_bidding_document_id', 'is_need_deposit', 'bid_opening_date', 'deposit_refund_time', 'bidding_project_overview', 'project_introduction', 'annex', 'technical_protocol_deviation', 'protocol_deviation_handling_plan', 'technical_review_annex', 'business_review_total_amount', 'tax_rate', 'pay_type', 'pay_rate', 'business_contract_deviation', 'business_contract_deviation_handling_plan', 'business_contract_deviation_annex']) - ->limit($this->limitOffset, $this->limitLength) + ->field(['*'])->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); diff --git a/app/adminapi/lists/bid/BidResultLists.php b/app/adminapi/lists/bid/BidResultLists.php index 4398b5b51..acce65a6a 100644 --- a/app/adminapi/lists/bid/BidResultLists.php +++ b/app/adminapi/lists/bid/BidResultLists.php @@ -55,7 +55,7 @@ class BidResultLists extends BaseAdminDataLists implements ListsSearchInterface public function lists(): array { return BidResult::where($this->searchWhere) - ->field(['id', 'bid_document_examination_id', 'project_id', 'is_successful', 'bidder', 'bidder_amount', 'bidder_amount_daxie']) + ->field(['*']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() diff --git a/app/adminapi/lists/custom/CustomContactsLists.php b/app/adminapi/lists/custom/CustomContactsLists.php index f49f0e0cb..626e17ab9 100644 --- a/app/adminapi/lists/custom/CustomContactsLists.php +++ b/app/adminapi/lists/custom/CustomContactsLists.php @@ -55,7 +55,7 @@ class CustomContactsLists extends BaseAdminDataLists implements ListsSearchInter public function lists(): array { return CustomContacts::where($this->searchWhere) - ->field(['id', 'custom_id', 'name', 'position', 'phone', 'telephone', 'email', 'notes', 'annex']) + ->field(['*']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() diff --git a/app/adminapi/lists/custom_follow/CustomFollowLists.php b/app/adminapi/lists/custom_follow/CustomFollowLists.php index fb275d93b..22872bf3a 100644 --- a/app/adminapi/lists/custom_follow/CustomFollowLists.php +++ b/app/adminapi/lists/custom_follow/CustomFollowLists.php @@ -55,7 +55,7 @@ class CustomFollowLists extends BaseAdminDataLists implements ListsSearchInterfa public function lists(): array { return CustomFollow::where($this->searchWhere) - ->field(['id', 'custom_id', 'contacts', 'date', 'types', 'admin_id', 'description', 'annex', 'coordinate', 'next_follow_date', 'status']) + ->field(['*']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() diff --git a/app/adminapi/lists/custom_service/CustomServiceLists.php b/app/adminapi/lists/custom_service/CustomServiceLists.php index f8c7e830a..13b815c1d 100644 --- a/app/adminapi/lists/custom_service/CustomServiceLists.php +++ b/app/adminapi/lists/custom_service/CustomServiceLists.php @@ -55,8 +55,7 @@ class CustomServiceLists extends BaseAdminDataLists implements ListsSearchInterf public function lists(): array { return CustomService::where($this->searchWhere) - ->field(['id', 'project_id', 'custom_id', 'approve_id', 'contacts', 'phone', 'date', 'classification', 'urgency', 'receiver', 'processed_admin_id', 'name', 'description', 'notes', 'annex']) - ->limit($this->limitOffset, $this->limitLength) + ->field(['*'])->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray();