更新合同管理

This commit is contained in:
yaooo 2023-12-12 11:56:06 +08:00
parent 812ac918af
commit 8ab08b3ac0
7 changed files with 7 additions and 10 deletions

View File

@ -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()

View File

@ -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();

View File

@ -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();

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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();