Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
11beb880
Commit
11beb880
authored
Apr 22, 2019
by
季圣华
Browse files
解决单据不能按照时间查询的bug
parent
42835c94
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/resources/mapper_xml/DepotHeadMapperEx.xml
View file @
11beb880
...
...
@@ -63,10 +63,10 @@
and dh.Id in (${dhIds})
</if>
<if
test=
"beginTime != null"
>
and dh.OperTime >=
(
${beginTime}
)
and dh.OperTime >=
'
${beginTime}
'
</if>
<if
test=
"endTime != null"
>
and dh.OperTime
<
=
(
${endTime}
)
and dh.OperTime
<
=
'
${endTime}
'
</if>
and ifnull(dh.delete_Flag,'0') !='1'
order by dh.Id desc
...
...
@@ -92,10 +92,10 @@
and Id in (${dhIds})
</if>
<if
test=
"beginTime != null"
>
and OperTime >=
(
${beginTime}
)
and OperTime >=
'
${beginTime}
'
</if>
<if
test=
"endTime != null"
>
and OperTime
<
=
(
${endTime}
)
and OperTime
<
=
'
${endTime}
'
</if>
and ifnull(delete_Flag,'0') !='1'
</select>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment