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
e0406573
Commit
e0406573
authored
Oct 29, 2022
by
季圣华
Browse files
解决初始化的时候出库明细报表报错的bug
parent
20e2c141
Changes
1
Hide whitespace changes
Inline
Side-by-side
jshERP-boot/src/main/java/com/jsh/erp/service/depotHead/DepotHeadService.java
View file @
e0406573
...
...
@@ -234,7 +234,7 @@ public class DepotHeadService {
||
BusinessConstants
.
SUB_TYPE_SALES_RETURN
.
equals
(
subType
)
)
{
//采购订单里面选择销售订单的时候不要过滤
if
(
StringUtil
.
isEmpty
(
purchaseStatus
))
{
if
(
null
!=
supplierList
)
{
if
(
null
!=
supplierList
&&
supplierList
.
size
()
>
0
)
{
boolean
customerFlag
=
systemConfigService
.
getCustomerFlag
();
List
<
String
>
organList
=
new
ArrayList
<>();
for
(
Supplier
supplier
:
supplierList
)
{
...
...
@@ -243,7 +243,9 @@ public class DepotHeadService {
organList
.
add
(
supplier
.
getId
().
toString
());
}
}
organArray
=
StringUtil
.
listToStringArray
(
organList
);
if
(
organList
.
size
()
>
0
)
{
organArray
=
StringUtil
.
listToStringArray
(
organList
);
}
}
}
}
...
...
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