| | |
| | | import com.dsh.course.feignClient.activity.PointMercharsClient; |
| | | import com.dsh.course.feignClient.activity.model.*; |
| | | import com.dsh.course.feignClient.course.CourseClient; |
| | | import com.dsh.course.feignClient.course.CoursePackageClient; |
| | | import com.dsh.course.feignClient.course.model.CoursePackagePaymentConfig; |
| | | import com.dsh.course.feignClient.course.model.TCoursePackage; |
| | | import com.dsh.guns.config.UserExt; |
| | | import com.dsh.guns.core.base.controller.BaseController; |
| | | import com.dsh.guns.core.base.tips.ErrorTip; |
| | |
| | | |
| | | @Autowired |
| | | private CourseClient courseClient; |
| | | @Autowired |
| | | private CoursePackageClient coursePackageClient; |
| | | |
| | | @Resource |
| | | private PointMercharsClient pointMercharsClient; |
| | |
| | | } |
| | | @RequestMapping("/audit") |
| | | public String audit(Model model) { |
| | | |
| | | return PREFIX1 + "TGoodsAudit.html"; |
| | | } |
| | | |
| | |
| | | Integer coursePackageId = pointMercharsVo.getCoursePackageId(); |
| | | List<String> name = courseClient.queryPackageById(coursePackageId); |
| | | Integer coursePackageId1 = pointMercharsVo.getCoursePackageId(); |
| | | String classHours = courseClient.getHours(coursePackageId1); |
| | | List<CoursePackagePaymentConfig> hoursByPackageId = courseClient.getHoursByPackageId(coursePackageId1); |
| | | model.addAttribute("typeName",name.get(0)); |
| | | model.addAttribute("pageName",name.get(1)); |
| | | model.addAttribute("classHours",classHours); |
| | | model.addAttribute("classHours",hoursByPackageId); |
| | | String productImages = pointMercharsVo.getProductImages(); |
| | | ArrayList<String> strings = new ArrayList<>(); |
| | | for (String s : productImages.split(",")) { |
| | |
| | | stringObjectHashMap.put("cover",cover); |
| | | stringObjectHashMap.put("productImages",productImages); |
| | | stringObjectHashMap.put("sort",sort); |
| | | stringObjectHashMap.put("type",UserExt.getUser().getObjectType()); |
| | | System.out.println(stringObjectHashMap); |
| | | pointMercharsClient.updateGoodsDetail(stringObjectHashMap); |
| | | return new SuccessTip<>(); |
| | |
| | | Double price,Integer type,Integer integral,Double cash,String cover,String imgOne,Integer userPopulation,Integer quantityIssued,Integer pickUpQuantity, |
| | | String startTime,String text,Integer sort,String name,Integer useScope,String cityIds,String storeIds,Integer cardType |
| | | ) throws ParseException { |
| | | // 判断当前选择的课包 是不是假期课 然后判断选择的有效期是否在假期课有效期内 |
| | | if (coursePackageId!=null){ |
| | | TCoursePackage tCoursePackage = coursePackageClient.queryById(coursePackageId); |
| | | if (tCoursePackage.getType()==2){ |
| | | // 如果是假期课 获取到当前课包的开始时间和结束时间 |
| | | Date endTime = tCoursePackage.getEndTime(); |
| | | Date startTime1 = tCoursePackage.getStartTime(); |
| | | SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); |
| | | Date s = format.parse(startTime.split(" - ")[0]); |
| | | Date e = format.parse(startTime.split(" - ")[1]); |
| | | if (s.before(startTime1)){ |
| | | // 有效期开始时间小于假期课开始时间 |
| | | return 5009; |
| | | } |
| | | if (e.after(endTime)){ |
| | | // 有效期结束时间大于假期课结束时间 |
| | | return 5008; |
| | | } |
| | | } |
| | | } |
| | | PointsMerchandise pointsMerchandise = new PointsMerchandise(); |
| | | pointsMerchandise.setType(typeAll); |
| | | pointsMerchandise.setName(name); |
| | |
| | | pointsMerchandise.setState(1); |
| | | pointsMerchandise.setInsertTime(new Date()); |
| | | pointsMerchandise.setCoursePackageConfigId(coursePackageConfigId); |
| | | if(UserExt.getUser().getObjectType()!=1){ |
| | | pointsMerchandise.setStatus(2); |
| | | } |
| | | // 代替storeId |
| | | pointsMerchandise.setShelves(1); |
| | | if(typeAll!=2){ |
| | |
| | | }else if(useScope==1){ |
| | | Integer id = pointMercharsClient.add(pointsMerchandise); |
| | | } |
| | | |
| | | |
| | | |
| | | }else { |
| | | // ? |
| | | pointsMerchandise.setShelves(storeId); |
| | | pointsMerchandise.setUseScope(3); |
| | | |
| | | Integer id = pointMercharsClient.add(pointsMerchandise); |
| | | } |
| | | return new SuccessTip<>(); |
| | |
| | | public String payOfDetails(@PathVariable(value = "id") Integer id,Model model) { |
| | | System.out.println(id); |
| | | model.addAttribute("id",id); |
| | | PointsMerchandise byId = pointMercharsClient.getById(id); |
| | | model.addAttribute("type",byId.getType()); |
| | | return PREFIX + "TGoods_pay.html"; |
| | | } |
| | | /** |