fix 立库取消指令时重复调用立库取消接口

This commit is contained in:
USER-20220102CG\noblelift
2023-04-19 10:56:59 +08:00
parent 5f3acc4ddc
commit 86e0057445
2 changed files with 2 additions and 2 deletions

View File

@@ -102,7 +102,7 @@ public class LiKuToAcsServiceImpl implements LiKuToAcsService {
// 5 取消指令 // 5 取消指令
} else if(StrUtil.equals(status,"5")) { } else if(StrUtil.equals(status,"5")) {
instructionService.cancel(inst.getInstruction_id()); instructionService.forceCancel(inst.getInstruction_id());
} }
InStoreReportResponse inStoreReportResponse = new InStoreReportResponse(); InStoreReportResponse inStoreReportResponse = new InStoreReportResponse();
inStoreReportResponse.setOrderId(inst_code); inStoreReportResponse.setOrderId(inst_code);

View File

@@ -178,7 +178,7 @@ public interface InstructionService {
void cancel(String id) throws Exception; void cancel(String id) throws Exception;
/** /**
* 取消指令 * 强制取消指令
* *
* @param id * @param id
*/ */