admin
2018-12-25 4cb15e222cd7d099d533ccbeb7f9a8cd99bf180c
fanli/src/main/java/com/yeshi/fanli/service/impl/user/UserShareGoodsRecordServiceImpl.java
@@ -572,8 +572,6 @@
   @Override
   public JSONObject getGoodsGroupDetail(Long recordId) throws UserShareGoodsRecordException {
      
      List<CommonGoods> listUpadteCommonGoods = new ArrayList<CommonGoods>();
      JSONArray array = new JSONArray();
      
      List<UserShareGoodsGroup> list = userShareGoodsGroupService.listByRecordId(recordId);
@@ -648,20 +646,6 @@
      data.put("title", title);
      data.put("count", list.size());
      data.put("result_list", array);
      if (listUpadteCommonGoods.size() > 0) {
         executor.execute(new Runnable() {
            @Override
            public void run() {
               try {
                  // 更新简版信息
                  commonGoodsService.updateBatchCommonGoods(listUpadteCommonGoods);
               } catch (Exception e) {
                  e.printStackTrace();
               }
            }
         });
      }
      
      return data;
   }