更新细节
This commit is contained in:
parent
f549dbb194
commit
63aed90d9a
@ -56,6 +56,7 @@ class ExpenseReimbursementLists extends BaseAdminDataLists implements ListsSearc
|
||||
{
|
||||
return Db::name('ExpenseReimbursement')->alias('er')
|
||||
->where($this->searchWhere)
|
||||
->whereNull('er.delete_time')
|
||||
->leftJoin('orgs o','o.id = er.org_id')
|
||||
->leftJoin('dept d','d.id = er.dept_id')
|
||||
->leftJoin('custom ct','ct.id = er.customer_id')
|
||||
@ -81,7 +82,12 @@ class ExpenseReimbursementLists extends BaseAdminDataLists implements ListsSearc
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return ExpenseReimbursement::where($this->searchWhere)->count();
|
||||
return Db::name('ExpenseReimbursement')->alias('er')
|
||||
->where($this->searchWhere)
|
||||
->whereNull('er.delete_time')
|
||||
->leftJoin('orgs o','o.id = er.org_id')
|
||||
->leftJoin('dept d','d.id = er.dept_id')
|
||||
->leftJoin('custom ct','ct.id = er.customer_id')->count();
|
||||
}
|
||||
|
||||
}
|
@ -57,6 +57,7 @@ class FinancePaymentApplyLists extends BaseAdminDataLists implements ListsSearch
|
||||
{
|
||||
return Db::name('FinancePaymentApply')->alias('fpa')
|
||||
->where($this->searchWhere)
|
||||
->whereNull('fpa.delete_time')
|
||||
->leftJoin('procurement_contract pc','pc.id = fpa.contract_id')
|
||||
->leftJoin('project p','p.id = pc.project_id')
|
||||
->field('fpa.*, p.id as project_id, p.name as project_name, p.project_code, pc.contract_no')
|
||||
@ -85,6 +86,7 @@ class FinancePaymentApplyLists extends BaseAdminDataLists implements ListsSearch
|
||||
{
|
||||
return Db::name('FinancePaymentApply')->alias('fpa')
|
||||
->where($this->searchWhere)
|
||||
->whereNull('fpa.delete_time')
|
||||
->leftJoin('procurement_contract pc','pc.id = fpa.contract_id')
|
||||
->leftJoin('project p','p.id = pc.project_id')->count();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user