searchCriteria QSL Sent/Received Method
这个提交包含在:
父节点
76e9d210ef
当前提交
ff9f925c08
共有 1 个文件被更改,包括 4 次插入 和 4 次删除
|
|
@ -71,15 +71,15 @@ class Logbookadvanced_model extends CI_Model {
|
|||
}
|
||||
|
||||
if ($searchCriteria['qslSentMethod'] !== '') {
|
||||
$condition = "COL_QSL_SENT_VIA like ?";
|
||||
$condition = "COL_QSL_SENT_VIA = ?";
|
||||
$conditions[] = $condition;
|
||||
$binding[] = $searchCriteria['qslSentMethod'].'%';
|
||||
$binding[] = $searchCriteria['qslSentMethod'];
|
||||
}
|
||||
|
||||
if ($searchCriteria['qslReceivedMethod'] !== '') {
|
||||
$condition = "COL_QSL_RECV_VIA like ?";
|
||||
$condition = "COL_QSL_RECV_VIA = ?";
|
||||
$conditions[] = $condition;
|
||||
$binding[] = $searchCriteria['qslReceivedMethod'].'%';
|
||||
$binding[] = $searchCriteria['qslReceivedMethod'];
|
||||
}
|
||||
|
||||
if ($searchCriteria['lotwSent'] !== '') {
|
||||
|
|
|
|||
正在加载…
在新工单中引用