Commit d4e9d638 authored by hujun's avatar hujun

a.

parent c6b7e3a0
......@@ -122,17 +122,17 @@ class Cost extends Basic
//申请提交时间
if (isset($param['create_time_start'])) {
$where['create_time'] = ['>=', $param['create_time_start']];
$where['a.create_time'] = ['>=', $param['create_time_start']];
}
//申请提交时间
if (isset($param['create_time_end'])) {
$where['create_time'] = ['<=', $param['create_time_end']];
$where['a.create_time'] = ['<=', $param['create_time_end']];
}
//申请提交时间
if (isset($param['create_time_start']) && isset($param['create_time_end'])) {
$where['create_time'] = ['between', [$param['create_time_start']. ' 00:00:00', $param['create_time_end'].' 23:59:59']];
$where['a.create_time'] = ['between', [$param['create_time_start']. ' 00:00:00', $param['create_time_end'].' 23:59:59']];
}
//财务三审通过时间
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment