|
|
@@ -189,10 +189,12 @@ public class WmsTransferTaskServiceImpl extends SuperCacheServiceImpl<WmsTransfe
|
|
|
String toLocation = null;
|
|
|
|
|
|
Integer status = wmsTransferTask.getStatus();
|
|
|
+
|
|
|
if (Objects.equals(BizWmsConstant.IN_QC, wmsTransferTask.getTaskType())) {
|
|
|
// 优先去三坐标
|
|
|
Storge qcDock = storgeMapper.getAGVStorge(1967459191408820224L);
|
|
|
- if (qcDock != null) {
|
|
|
+ Boolean b = (Boolean) msgUtil.redis_get(CacheKey.PROPERTIES + CacheKey.THREE_FLAG);
|
|
|
+ if (qcDock != null && b) {
|
|
|
taskNo = codeRuleService.getBillCode(CodeRuleModule.CODE_RULE_WMS_IN_QC);
|
|
|
taskType = BizWmsConstant.IN_QC;
|
|
|
toLocation = qcDock.getPointId();
|