Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
孙克
/
ACSingleStore
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 0e1429fb
由
刘韬
编写于
2025-02-27 11:50:47 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
完成出库任务时清空队列中同名任务
1 个父辈
8df519a3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
14 行增加
和
1 行删除
source/ACSingleStore/Properties/AssemblyInfo.cs
source/DeviceLibrary/acSingleStore/AC_SA_BoxBean_Partial.cs
source/LoadCVSLibrary/LoadCSVLibrary.csproj
source/ACSingleStore/Properties/AssemblyInfo.cs
查看文件 @
0e1429f
...
...
@@ -9,7 +9,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("SO951-HC-ACSingleStore
9d8c3922bd46e1f1f4a849ae9b7c4946bc7c9e4d
")]
[assembly: AssemblyProduct("SO951-HC-ACSingleStore
8df519a3f541e9b5045e30ff7459067dc3f30f8a
")]
[assembly: AssemblyCopyright("Copyright ? 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
...
...
source/DeviceLibrary/acSingleStore/AC_SA_BoxBean_Partial.cs
查看文件 @
0e1429f
...
...
@@ -983,6 +983,7 @@ namespace OnlineStore.DeviceLibrary
string
warecode
=
StoreMove
.
MoveParam
!=
null
?
StoreMove
.
MoveParam
.
WareNumber
:
""
;
storeStatus
=
StoreStatus
.
StoreOnline
;
LogUtil
.
info
(
LOGGER
,
StoreName
+
" 【"
+
posId
+
"】出库结束["
+
FormUtil
.
GetSpanStr
(
span
)
+
"]"
,
storeMoveColor
);
DelWaitOutInfo
(
posId
);
StoreMove
.
EndMove
();
storeRunStatus
=
StoreRunStatus
.
Runing
;
InOutEndProcess
(
StoreMoveType
.
OutStore
,
warecode
,
posId
);
...
...
@@ -1058,6 +1059,15 @@ namespace OnlineStore.DeviceLibrary
waitOutStoreList
.
Add
(
code
);
}
}
public
void
DelWaitOutInfo
(
string
PosId
)
{
lock
(
waitOutListLock
)
{
// 移除所有匹配 PosId 的 FixtureCodeInfo 对象
int
removedCount
=
waitOutStoreList
.
RemoveAll
(
fx
=>
fx
.
PosId
==
PosId
);
Console
.
WriteLine
(
$
"Deleted {removedCount} items with PosId: {PosId}"
);
}
}
/// <summary>
/// PosId, InOut,isSuccess
/// </summary>
...
...
source/LoadCVSLibrary/LoadCSVLibrary.csproj
查看文件 @
0e1429f
...
...
@@ -32,6 +32,9 @@
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net">
<HintPath>..\ACSingleStore\bin\Debug\log4net.dll</HintPath>
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论