修复错误

This commit is contained in:
shengchanzhe 2023-12-28 21:24:34 +08:00
parent a65f837ad4
commit 39d147ed7f

View File

@ -64,7 +64,7 @@ class TransferBillLists extends BaseAdminDataLists implements ListsSearchInterfa
->leftJoin('acceptance_bill ab','ab.id = tb.acceptance_bill_id')
->leftJoin('bank_account ba','ba.id = ab.bank_account_id')
->leftJoin('supplier s','s.id = tb.supplier_id')
->field('tb.*, d.name as dept_name, o.name as org_name, p.name as project_name, pc.contract_no, pc.contract_name, ab.receipt_date, ab.bill_sn, ab.bill_type, ab.draft_acceptance_bank, ab.bill_due_date, ba.deposit_bank, ba.account_name, ba.account, tb.supplier_code, tb.supplier_name')
->field('tb.*, d.name as dept_name, o.name as org_name, p.name as project_name, pc.contract_no, pc.contract_name, ab.receipt_date, ab.bill_sn, ab.bill_type, ab.draft_acceptance_bank, ab.bill_due_date, ba.deposit_bank, ba.account_name, ba.account, s.supplier_code, s.supplier_name')
->limit($this->limitOffset, $this->limitLength)
->order(['tb.id' => 'desc'])
->select()->each(function($item, $key){