|
|
@@ -687,14 +687,12 @@ public class PublicInquiryServiceImpl implements PublicInquiryService {
|
|
|
*/
|
|
|
@Override
|
|
|
public void downEnRemindSuccess(String[] idArray, Long vendUU) {
|
|
|
- System.out.println("enUU:" + vendUU);
|
|
|
List<InquiryEnRemind> items = new ArrayList<>();
|
|
|
for (String id : idArray) {
|
|
|
InquiryEnRemind item = inquiryEnRemindDao.findOne(Long.parseLong(id));
|
|
|
if (item != null && vendUU.equals(item.getVendUU())) {
|
|
|
item.setErpDownStatus((short) Status.DOWNLOADED.value());
|
|
|
items.add(item);
|
|
|
- System.out.println("item:" + item.getId() + "," + item.getVendUU());
|
|
|
}
|
|
|
}
|
|
|
if (!CollectionUtils.isEmpty(items)) {
|