修复打印模板列表不显示
This commit is contained in:
parent
99274b95ec
commit
4601d5ec81
|
|
@ -209,8 +209,8 @@ public class SettingServiceImpl extends Service implements SettingService {
|
||||||
pos = pos.stream()
|
pos = pos.stream()
|
||||||
.filter(po -> {
|
.filter(po -> {
|
||||||
if (po.getSharedType() == 1) {
|
if (po.getSharedType() == 1) {
|
||||||
List<Long> limitIds = po.getLimitIds();
|
List limitIds = po.getLimitIds();
|
||||||
List collect = new ArrayList<>();
|
List<String> collect = new ArrayList<>();
|
||||||
for (int i = 0; i < limitIds.size(); i++) {
|
for (int i = 0; i < limitIds.size(); i++) {
|
||||||
collect.add(limitIds.get(i).toString());
|
collect.add(limitIds.get(i).toString());
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue