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
1171ae18
Commit
1171ae18
authored
Dec 01, 2022
by
季圣华
Browse files
优化根据原单号批量查询关联的单据列表的方法
parent
32d2dd45
Changes
1
Show whitespace changes
Inline
Side-by-side
jshERP-boot/src/main/java/com/jsh/erp/service/depotHead/DepotHeadService.java
View file @
1171ae18
...
@@ -835,9 +835,13 @@ public class DepotHeadService {
...
@@ -835,9 +835,13 @@ public class DepotHeadService {
* @throws Exception
* @throws Exception
*/
*/
public
List
<
DepotHead
>
getBillListByLinkNumberList
(
List
<
String
>
linkNumberList
)
throws
Exception
{
public
List
<
DepotHead
>
getBillListByLinkNumberList
(
List
<
String
>
linkNumberList
)
throws
Exception
{
if
(
linkNumberList
!=
null
&&
linkNumberList
.
size
()>
0
)
{
DepotHeadExample
example
=
new
DepotHeadExample
();
DepotHeadExample
example
=
new
DepotHeadExample
();
example
.
createCriteria
().
andLinkNumberIn
(
linkNumberList
).
andDeleteFlagNotEqualTo
(
BusinessConstants
.
DELETE_FLAG_DELETED
);
example
.
createCriteria
().
andLinkNumberIn
(
linkNumberList
).
andDeleteFlagNotEqualTo
(
BusinessConstants
.
DELETE_FLAG_DELETED
);
return
depotHeadMapper
.
selectByExample
(
example
);
return
depotHeadMapper
.
selectByExample
(
example
);
}
else
{
return
new
ArrayList
<>();
}
}
}
/**
/**
...
...
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