|
@@ -295,7 +295,7 @@ public class StoreOrderScrmController extends AppBaseController {
|
|
|
}
|
|
|
|
|
|
FsUserScrm user=userService.selectFsUserById(order.getUserId());
|
|
|
- if(user!=null&& StringUtils.isNotEmpty(user.getMaOpenId())){
|
|
|
+ if(user!=null){
|
|
|
//已改价处理
|
|
|
if(order.getIsEditMoney()!=null&&order.getIsEditMoney()==1){
|
|
|
//改过价不做处理
|
|
@@ -453,7 +453,7 @@ public class StoreOrderScrmController extends AppBaseController {
|
|
|
}
|
|
|
}
|
|
|
FsUserScrm user=userService.selectFsUserById(order.getUserId());
|
|
|
- if(user!=null&& StringUtils.isNotEmpty(user.getMaOpenId())){
|
|
|
+ if(user!=null){
|
|
|
//已改价处理
|
|
|
if(order.getIsEditMoney()!=null&&order.getIsEditMoney()==1){
|
|
|
//改过价不做处理
|
|
@@ -522,7 +522,7 @@ public class StoreOrderScrmController extends AppBaseController {
|
|
|
return R.error("此订单已支付");
|
|
|
}
|
|
|
FsUserScrm user=userService.selectFsUserById(order.getUserId());
|
|
|
- if(user!=null&& StringUtils.isNotEmpty(user.getMaOpenId())){
|
|
|
+ if(user!=null){
|
|
|
String payCode = IdUtil.getSnowflake(0, 0).nextIdStr();
|
|
|
String json = configService.selectConfigByKey(STORE_PAY_CONF);
|
|
|
FsPayConfigScrm fsPayConfig = JSON.parseObject(json, FsPayConfigScrm.class);
|