Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
孙克
/
RC1250-ACPackingStore
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 5621c002
由
LN
编写于
2020-03-10 10:51:49 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
出库未结束时,去掉:检测到料架自动入库功能
1 个父辈
b331ffd9
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
20 行增加
和
3 行删除
source/ACPackingStore/FrmStore.cs
source/ACPackingStore/记录.txt
source/DeviceLibrary/ACPackingStore/AC_BOX_Bean_Partial.cs
source/ACPackingStore/FrmStore.cs
查看文件 @
5621c00
...
@@ -398,6 +398,10 @@ namespace OnlineStore.ACPackingStore
...
@@ -398,6 +398,10 @@ namespace OnlineStore.ACPackingStore
{
{
chbAGV
.
Checked
=
AgvClient
.
CurrCancelState
;
chbAGV
.
Checked
=
AgvClient
.
CurrCancelState
;
}
}
if
(!
chbAutoShelfInstore
.
Checked
.
Equals
(
store
.
AutoShelfInstore
))
{
chbAutoShelfInstore
.
Checked
=
store
.
AutoShelfInstore
;
}
lblWarnMsg
.
Text
=
msg
;
lblWarnMsg
.
Text
=
msg
;
LogM
();
LogM
();
}
}
...
@@ -555,6 +559,10 @@ namespace OnlineStore.ACPackingStore
...
@@ -555,6 +559,10 @@ namespace OnlineStore.ACPackingStore
{
{
return
;
return
;
}
}
if
(
chbAutoShelfInstore
.
Checked
.
Equals
(
store
.
AutoShelfInstore
))
{
return
;
}
if
(
chbAutoShelfInstore
.
Checked
)
if
(
chbAutoShelfInstore
.
Checked
)
{
{
store
.
AutoShelfInstore
=
true
;
store
.
AutoShelfInstore
=
true
;
...
@@ -596,14 +604,14 @@ namespace OnlineStore.ACPackingStore
...
@@ -596,14 +604,14 @@ namespace OnlineStore.ACPackingStore
}
}
if
(
chbDoorCanMove
.
Checked
)
if
(
chbDoorCanMove
.
Checked
)
{
{
store
.
AutoShelfInstore
=
true
;
//
store.AutoShelfInstore = true;
ConfigAppSettings
.
SaveValue
(
Setting_Init
.
UseDoor
,
1
);
ConfigAppSettings
.
SaveValue
(
Setting_Init
.
UseDoor
,
1
);
LogUtil
.
info
(
"勾选:启用入料口移门"
);
LogUtil
.
info
(
"勾选:启用入料口移门"
);
}
}
else
else
{
{
store
.
AutoShelfInstore
=
false
;
//
store.AutoShelfInstore = false;
ConfigAppSettings
.
SaveValue
(
Setting_Init
.
UseDoor
,
0
);
ConfigAppSettings
.
SaveValue
(
Setting_Init
.
UseDoor
,
0
);
LogUtil
.
info
(
"去掉:启用入料口移门"
);
LogUtil
.
info
(
"去掉:启用入料口移门"
);
}
}
...
...
source/ACPackingStore/记录.txt
查看文件 @
5621c00
...
@@ -91,6 +91,7 @@ shelfLoc问题修改。
...
@@ -91,6 +91,7 @@ shelfLoc问题修改。
20200308
20200308
扫码问题优化。
扫码问题优化。
出库未结束时,去掉:检测到料架自动入库功能。
...
...
source/DeviceLibrary/ACPackingStore/AC_BOX_Bean_Partial.cs
查看文件 @
5621c00
...
@@ -1015,9 +1015,17 @@ namespace OnlineStore.DeviceLibrary
...
@@ -1015,9 +1015,17 @@ namespace OnlineStore.DeviceLibrary
string
posId
=
MoveInfo
.
MoveParam
!=
null
?
MoveInfo
.
MoveParam
.
PosID
:
""
;
string
posId
=
MoveInfo
.
MoveParam
!=
null
?
MoveInfo
.
MoveParam
.
PosID
:
""
;
storeStatus
=
StoreStatus
.
StoreOnline
;
storeStatus
=
StoreStatus
.
StoreOnline
;
LogInfo
(
" 【"
+
posId
+
"】 整个出库流程结束,耗时【"
+
FormUtil
.
GetSpanStr
(
span
)
+
"】!"
);
LogInfo
(
" 【"
+
posId
+
"】 整个出库流程结束,耗时【"
+
FormUtil
.
GetSpanStr
(
span
)
+
"】!"
);
MoveEndToRuningStatus
();
MoveEndToRuningStatus
();
AutoInout
.
InOutEndProcess
(
this
,
StoreMoveType
.
OutStore
);
AutoInout
.
InOutEndProcess
(
this
,
StoreMoveType
.
OutStore
);
if
(!
String
.
IsNullOrEmpty
(
MoveInfo
.
MoveParam
.
rfid
))
{
if
(
StoreManager
.
Store
.
AutoShelfInstore
)
{
LogInfo
(
" 料架【"
+
CurrShelfID
+
"】还有出库任务,设置 AutoShelfInstore = false"
);
ConfigAppSettings
.
SaveValue
(
Setting_Init
.
AutoShelfInstore
,
0
);
StoreManager
.
Store
.
AutoShelfInstore
=
false
;
}
}
}
}
}
}
#
endregion
#
endregion
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论