|
@@ -7,12 +7,10 @@ import com.ym.mec.biz.dal.dto.GoodsSellDto;
|
|
|
import com.ym.mec.biz.dal.dto.StudentGoodsSellDto;
|
|
|
import com.ym.mec.biz.dal.dto.StudentPaymentOrderDto;
|
|
|
import com.ym.mec.biz.dal.dto.SysCouponCodeDto;
|
|
|
-import com.ym.mec.biz.dal.entity.Goods;
|
|
|
-import com.ym.mec.biz.dal.entity.StudentGoodsSell;
|
|
|
-import com.ym.mec.biz.dal.entity.StudentInstrument;
|
|
|
-import com.ym.mec.biz.dal.entity.StudentPaymentOrder;
|
|
|
+import com.ym.mec.biz.dal.entity.*;
|
|
|
import com.ym.mec.biz.dal.page.GoodsSellQueryInfo;
|
|
|
import com.ym.mec.biz.service.StudentGoodsSellService;
|
|
|
+import com.ym.mec.biz.service.SysConfigService;
|
|
|
import com.ym.mec.common.dal.BaseDAO;
|
|
|
import com.ym.mec.common.exception.BizException;
|
|
|
import com.ym.mec.common.page.PageInfo;
|
|
@@ -35,6 +33,10 @@ public class StudentGoodsSellServiceImpl extends BaseServiceImpl<Integer, Studen
|
|
|
@Autowired
|
|
|
private SysConfigDao sysConfigDao;
|
|
|
@Autowired
|
|
|
+ private SysTenantConfigDao sysTenantConfigDao;
|
|
|
+ @Autowired
|
|
|
+ private TenantInfoDao tenantInfoDao;
|
|
|
+ @Autowired
|
|
|
private GoodsDao goodsDao;
|
|
|
@Autowired
|
|
|
private StudentInstrumentDao studentInstrumentDao;
|
|
@@ -76,15 +78,29 @@ public class StudentGoodsSellServiceImpl extends BaseServiceImpl<Integer, Studen
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public void affirmReceive(String orderNo) {
|
|
|
String str = "MANUAL_RECEIVE";
|
|
|
- //如果订单编号为空,那么自动确认
|
|
|
- if (StringUtils.isEmpty(orderNo)) {
|
|
|
- String autoAffirmReceiveTime = sysConfigDao.findConfigValue("auto_affirm_receive_time");
|
|
|
- //获取到期的订单编号
|
|
|
- orderNo = studentGoodsSellDao.queryNoAffirmOrderNo(autoAffirmReceiveTime);
|
|
|
- str = "AUTO_RECEIVE";
|
|
|
- }
|
|
|
if (StringUtils.isNotEmpty(orderNo)) {
|
|
|
studentGoodsSellDao.autoAffirmReceive(orderNo, str);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ //如果订单编号为空,那么自动确认
|
|
|
+ StringBuffer sb = new StringBuffer();
|
|
|
+ str = "AUTO_RECEIVE";
|
|
|
+ Map<String,Object> param = new HashMap<>(1);
|
|
|
+ param.put("state",1);
|
|
|
+ List<TenantInfo> tenantInfos = tenantInfoDao.queryList(param);
|
|
|
+ if(tenantInfos != null && tenantInfos.size() > 0){
|
|
|
+ for (int i = 0; i < tenantInfos.size(); i++) {
|
|
|
+ TenantInfo tenantInfo = tenantInfos.get(i);
|
|
|
+ String autoAffirmReceiveTime = sysTenantConfigDao.getConfigValue(SysConfigService.AUTO_AFFIRM_RECEIVE_TIME,tenantInfo.getId());
|
|
|
+ //获取到期的订单编号
|
|
|
+ String s = studentGoodsSellDao.queryNoAffirmOrderNo(autoAffirmReceiveTime);
|
|
|
+ if(StringUtils.isNotEmpty(s)){
|
|
|
+ sb.append(s).append(",");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (sb.length() > 0) {
|
|
|
+ studentGoodsSellDao.autoAffirmReceive(sb.substring(0,sb.length() - 1), str);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|