Commit 119dc222 authored by congzhao's avatar congzhao

电子签约-试运行店铺修改以及电子签约报表查询修改

(cherry picked from commit d113e828)
parent f6203af0
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
ee.user_id ee.user_id
from EXP_EMPLOYEE_ASSIGNS_V ee from EXP_EMPLOYEE_ASSIGNS_V ee
where ee.enabled_flag = 'Y' where ee.enabled_flag = 'Y'
and ee.unit_code in ('401', '361', '421') and ee.pilot_run_flag = 'Y'
union all union all
select 'Y' pilot_run_flag, select 'Y' pilot_run_flag,
su.user_id su.user_id
......
var override_queryfields = [ var override_queryfields = [
{ {
name : 'lease_start_date_from', name : 'lease_start_date_from',
queryexpression : "t1.lease_start_date >= ${@lease_start_date_from}" queryexpression : "t1.lease_start_date >= to_date(${@lease_start_date_from},'yyyy-mm-dd')"
}, },
{ {
name : 'lease_start_date_to', name : 'lease_start_date_to',
queryexpression : "t1.lease_start_date <=${@lease_start_date_to}" queryexpression : "t1.lease_start_date <= to_date(${@lease_start_date_to},'yyyy-mm-dd')"
}, },
{ {
name : 'contract_creation_date_from', name : 'contract_creation_date_from',
queryexpression : "t1.contract_creation_date >= trunc(to_date(${@contract_creation_date_from},'yyyy-mm-dd') )" queryexpression : "trunc(t1.contract_creation_date) >= trunc(to_date(${@contract_creation_date_from},'yyyy-mm-dd') )"
}, },
{ {
name : 'contract_creation_date_to', name : 'contract_creation_date_to',
......
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