更新细节

This commit is contained in:
yaooo 2023-12-18 11:17:14 +08:00
parent 1614bb084a
commit 1f3f881d2c

View File

@ -59,7 +59,7 @@ class ContractLists extends BaseAdminDataLists implements ListsSearchInterface
->leftJoin('bid_buy_bidding_document bbbd','bbbd.id = c.buy_bidding_document_id')
->leftJoin('project p','p.id = bbbd.project_id')
->leftJoin('custom ct','ct.id = c.customer_id')
->field('c.*, bbbd.project_id, p.name as project_name, ct.name as customer_name')
->field('c.*, bbbd.project_id, p.name as project_name, p.project_code, ct.name as customer_name')
->limit($this->limitOffset, $this->limitLength)
->order(['c.id' => 'desc'])
->select()->each(function($item, $key){