|
|
@@ -28,7 +28,6 @@ import com.sckw.transport.dao.KwtLogisticsOrderUnitMapper;
|
|
|
import com.sckw.transport.model.KwtLogisticsOrder;
|
|
|
import com.sckw.transport.model.KwtLogisticsOrderAddress;
|
|
|
import com.sckw.transport.model.KwtLogisticsOrderUnit;
|
|
|
-import io.seata.spring.annotation.GlobalLock;
|
|
|
import jakarta.annotation.Resource;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.dubbo.config.annotation.DubboReference;
|
|
|
@@ -304,7 +303,7 @@ public class TransportDubboServiceImpl implements TransportDubboService {
|
|
|
return HttpResult.error(HttpStatus.GLOBAL_EXCEPTION_CODE, "绑定状态不能为空");
|
|
|
}
|
|
|
if (!String.valueOf(NumberConstant.ZERO).equals(accountCheckingBindDTO.getStatus()) &&
|
|
|
- String.valueOf(NumberConstant.ONE).equals(accountCheckingBindDTO.getStatus())) {
|
|
|
+ !String.valueOf(NumberConstant.ONE).equals(accountCheckingBindDTO.getStatus())) {
|
|
|
return HttpResult.error(HttpStatus.GLOBAL_EXCEPTION_CODE, "绑定状态类型错误!");
|
|
|
}
|
|
|
accountCheckingBindDTO.getLOrderList().forEach(id -> {
|