|
|
|
@ -24,7 +24,7 @@ class InvoiceIssuance extends Base |
|
|
|
$where = []; |
|
|
|
|
|
|
|
if (isset($param['pucode']) && !empty($param['pucode'])) { |
|
|
|
$where[] = ['pucode', '=', $param['pucode']]; |
|
|
|
$where[] = ['pucode', 'like', "%{$param['pucode']}%"]; |
|
|
|
} |
|
|
|
|
|
|
|
if (isset($param['project_id']) && !empty($param['project_id'])) { |
|
|
|
@ -32,7 +32,7 @@ class InvoiceIssuance extends Base |
|
|
|
} |
|
|
|
|
|
|
|
if (isset($param['mobile']) && !empty($param['mobile'])) { |
|
|
|
$where[] = ['mobile', '=', $param['mobile']]; |
|
|
|
$where[] = ['mobile', 'like', "%{$param['mobile']}%"]; |
|
|
|
} |
|
|
|
|
|
|
|
if (isset($param['merge']) && !empty($param['merge'])) { |
|
|
|
|