update logbook Model edit function
这个提交包含在:
父节点
2dad61ac35
当前提交
cb2e5c19be
共有 1 个文件被更改,包括 5 次插入 和 5 次删除
|
|
@ -933,11 +933,11 @@ class Logbook_model extends CI_Model {
|
||||||
$srx_string = null;
|
$srx_string = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (stristr($this->input->post('usa_county') ?? '', ',')) {
|
if ($this->input->post('usa_county') && $this->input->post('usa_state')) {
|
||||||
$uscounty = $this->input->post('usa_county');
|
$uscounty = trim($this->input->post('usa_state') . "," . $this->input->post('usa_county'));
|
||||||
} else {
|
} else {
|
||||||
$uscounty = $this->input->post('usa_state') .",".$this->input->post('usa_county');
|
$uscounty = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->input->post('qsl_sent')) {
|
if ($this->input->post('qsl_sent')) {
|
||||||
$qsl_sent = $this->input->post('qsl_sent');
|
$qsl_sent = $this->input->post('qsl_sent');
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用