searchCriteria QSL Sent/Received Method

这个提交包含在:
HB9HIL 2023-10-04 13:40:43 +02:00 提交者 GitHub
父节点 76e9d210ef
当前提交 ff9f925c08
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -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'] !== '') {